Skip to content

Commit

Permalink
css: Apply box-sizing:border-box to all <details> children
Browse files Browse the repository at this point in the history
We have this everywhere else, so it should not be different here.
  • Loading branch information
nilmerg committed Jul 26, 2022
1 parent 7cbbcd4 commit 0198900
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions public/css/icinga/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,10 @@
html {
box-sizing: border-box;
}
details > * {
// children somehow default to content-box no matter the inheritance
box-sizing: border-box;
}
*,
*:before,
*:after {
Expand Down

0 comments on commit 0198900

Please sign in to comment.