Skip to content

Commit

Permalink
FIX No more floating checkboxes (#286)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli committed May 29, 2024
1 parent f6b96e7 commit e6b27ac
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/dist/styles/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions client/src/styles/manager.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
}
}

.bulkSelectAll__container {
position: relative;
}

.cms table.grid-field__table
{
tr.bulkManagerOptions
Expand Down Expand Up @@ -118,6 +122,7 @@
{
.col-bulkSelect
{
position: relative;
width: 25px;
text-align: center;
}
Expand Down
7 changes: 3 additions & 4 deletions templates/Colymba/BulkManager/BulkManagerButtons.ss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<tr class="bulkManagerOptions form--no-dividers">
<th colspan="$Colspan">

$Menu

<a data-url="$Button.DataURL"
Expand All @@ -11,15 +11,14 @@
</a>

<div class="message notice"></div>

</th>
<th>
<th class="bulkSelectAll__container">
<label class="form-check-label">
<input class="no-change-track bulkSelectAll form-check-input"
type="checkbox"
title="<% _t('GRIDFIELD_BULK_MANAGER.SELECT_ALL_LABEL', '$Select.Label') %>"
name="toggleSelectAll" />

</label>
</th>
</tr>

0 comments on commit e6b27ac

Please sign in to comment.