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.

(cherry picked from commit 3c2c79b)
  • Loading branch information
nilmerg committed Nov 4, 2022
1 parent 80c35f8 commit 74b4974
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 74b4974

Please sign in to comment.