Skip to content

Commit aa7eb05

Browse files
authored
[6.x] Fix nav section border radius (#14409)
* A section node followed by another section node should always have a rounded border * Fix logical property
1 parent a8cd8c2 commit aa7eb05

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

resources/css/components/page-tree.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,12 @@
3838
.tree-node:has(.is-section) + .tree-node .page-tree-branch,
3939
/* 3rd level down */
4040
.tree-node:has(.page-tree-branch--has-children):has(.is-open) + .tree-node .page-tree-branch {
41-
border-top-left-radius: 0;
41+
border-start-start-radius: 0;
42+
}
43+
44+
/* A section node followed by another section node should always have a rounded border. E.g. Tools + Settings */
45+
.tree-node:has(.is-section) + .tree-node:has(.is-section) .page-tree-branch {
46+
@apply rounded-xl;
4247
}
4348
}
4449

0 commit comments

Comments
 (0)