Skip to content

Commit dab732d

Browse files
authored
Merge pull request #17104 from craftcms/bugfix/17098-matrixblock-and-overflow
don't hide the overflow for `.matrixblock`
2 parents b684f70 + 76bc4a3 commit dab732d

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
- Fixed a SQL error that could occur when executing an element query, if the `orderBy` param contained unexpected syntax.
66
- Fixed a bug where nested element cards could be missing their action menus if their “Max” setting had been reached. ([#17103](https://github.com/craftcms/cms/issues/17103))
7-
- Fixed a styling issue. ([#17100](https://github.com/craftcms/cms/pull/17100))
7+
- Fixed styling issues. ([#17100](https://github.com/craftcms/cms/pull/17100), [#17098](https://github.com/craftcms/cms/issues/17098))
88

99
## 5.7.0 - 2025-04-15
1010

src/web/assets/cp/dist/css/cp.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/web/assets/cp/dist/css/cp.css.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/web/assets/cp/src/css/_main.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3444,7 +3444,6 @@ table {
34443444
position: relative;
34453445
border-radius: var(--large-border-radius);
34463446
color: var(--custom-text-color, var(--text-color));
3447-
overflow: hidden; // needed for status indicators
34483447

34493448
--custom-border-color: initial;
34503449
--custom-titlebar-bg-color: initial;
@@ -3471,6 +3470,8 @@ table {
34713470

34723471
.chip,
34733472
.card {
3473+
overflow: hidden; // needed for status indicators
3474+
34743475
&.sel,
34753476
tr.sel &,
34763477
li.sel &,

0 commit comments

Comments
 (0)