Skip to content

Commit 9454750

Browse files
committed
gui: Fixed box-sizing for gui-tabs
1 parent e333f9b commit 9454750

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/client/stylesheets/gui.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,20 +522,23 @@ gui-expander {
522522
gui-tabs {
523523
display : block;
524524
position : relative;
525+
box-sizing : border-box;
525526
}
526527
gui-tabs > ul {
527528
display : block;
528529
list-style-type : none;
529530
margin : 0;
530531
padding : 0;
531532
white-space: nowrap;
533+
box-sizing : border-box;
532534
}
533535
gui-tabs > ul > li {
534536
position : relative;
535537
display : inline-block;
536538
margin : 0;
537539
padding : 0;
538540
height : 100%;
541+
box-sizing : border-box;
539542
}
540543
/*gui-tabs > ul > li.gui-active {
541544
}*/
@@ -551,6 +554,7 @@ gui-tabs {
551554
overflow : hidden;
552555
display : none;
553556
position : relative;
557+
box-sizing : border-box;
554558
}
555559
gui-tab-container.gui-active {
556560
display : block;

0 commit comments

Comments
 (0)