Skip to content

Commit

Permalink
Merge branch '4' into 5
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed May 31, 2024
2 parents 428113a + 334b6ab commit 0a93cea
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/update-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Update JS

on:
workflow_dispatch:
# Run on a schedule of once per quarter
# At 10:50 AM UTC, on day 1 of the month, only in March and September
schedule:
- cron: '50 10 1 */3 *'
- cron: '50 10 1 3,9 *'

permissions: {}

Expand Down
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 0a93cea

Please sign in to comment.