Skip to content

Commit

Permalink
Showing 4 changed files with 17 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@
## Unreleased

- `craft\helpers\UrlHelper::actionUrl()` now returns URLs based on the primary site’s base URL (if it has one), for console requests if the `@web` alias wasn’t explicitly defined.
- Fixed a bug where it wasn’t possible to expand/collapse descendants of disabled table rows within element select modals. ([#15337](https://github.com/craftcms/cms/issues/15337))

## 4.10.5 - 2024-07-11

2 changes: 1 addition & 1 deletion src/web/assets/cp/dist/css/cp.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/web/assets/cp/dist/css/cp.css.map

Large diffs are not rendered by default.

14 changes: 14 additions & 0 deletions src/web/assets/cp/src/css/_main.scss
Original file line number Diff line number Diff line change
@@ -3227,6 +3227,20 @@ $checkboxPadding: $checkboxSize + 4;
.enabled-label {
margin-left: var(--xs);
}

tr.disabled {
opacity: 1;

& > th > *,
& > td {
opacity: 0.25;
}

& > th > button.toggle {
opacity: 1;
pointer-events: all;
}
}
}

// thumbs views

0 comments on commit 7a6481e

Please sign in to comment.