Skip to content

Commit

Permalink
Fixed #15473
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
brandonkelly committed Aug 4, 2024
1 parent 64f8f95 commit 4241f09
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Fixed a PHP error. ([#14635](https://github.com/craftcms/cms/issues/14635))
- Fixed a PHP error that could occur when running Codeception tests. ([#15445](https://github.com/craftcms/cms/issues/15445))
- Fixed a bug where `deleteAsset`, `deleteCategory`, `deleteEntry`, and `deleteTag` GraphQL mutations were returning `null` rather than `true` or `false`. ([#15465](https://github.com/craftcms/cms/issues/15465))
- Fixed a styling issue. ([#15473](https://github.com/craftcms/cms/issues/15473))

## 4.10.7 - 2024-07-29

Expand Down
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.

18 changes: 11 additions & 7 deletions src/web/assets/cp/src/css/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4363,19 +4363,19 @@ ul.tree,
resize: none;
}

& > .field .heading,
& > fieldset > legend {
margin: 0 0 var(--s);
}

& > .field > .heading > label,
& > fieldset > legend {
margin-top: 0;
font-weight: normal;
color: var(--gray-600);
}

& > fieldset {
margin: 0 0 var(--spacing);

& > legend {
margin-bottom: 5px;
}
& > .field > .heading > label {
margin: 0;
}

& > .field {
Expand All @@ -4395,6 +4395,10 @@ ul.tree,
}
}

& > fieldset {
margin: 0 0 var(--spacing);
}

& > .text {
border-radius: var(--large-border-radius);
margin-bottom: var(--spacing);
Expand Down

0 comments on commit 4241f09

Please sign in to comment.