8000 fix(table): reduce border radius to match radii of other components · Pelican-Elegant/elegant@7eaaa96 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Commit 7eaaa96

Browse files
committed
fix(table): reduce border radius to match radii of other components
1 parent de08d20 commit 7eaaa96

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

static/css/elegant.css

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -622,9 +622,9 @@ table {
622622
border-collapse: separate;
623623
*border-collapse: collapse;
624624
border-left: 0;
625-
-webkit-border-radius: 6px;
626-
-moz-border-radius: 6px;
627-
border-radius: 6px;
625+
-webkit-border-radius: 4px;
626+
-moz-border-radius: 4px;
627+
border-radius: 4px;
628628
}
629629

630630
table th,
@@ -639,26 +639,26 @@ table thead:first-child tr:first-child th {
639639
}
640640

641641
table thead:first-child tr:first-child > th:first-child {
642-
-webkit-border-top-left-radius: 6px;
643-
border-top-left-radius: 6px;
642+
-webkit-border-top-left-radius: 4px;
643+
border-top-left-radius: 4px;
644644
-moz-border-radius-topleft: 6px;
645645
}
646646

647647
table thead:first-child tr:first-child > th:last-child {
648-
-webkit-border-top-right-radius: 6px;
649-
border-top-right-radius: 6px;
648+
-webkit-border-top-right-radius: 4px;
649+
border-top-right-radius: 4px;
650650
-moz-border-radius-topright: 6px;
651651
}
652652

653653
table tbody:last-child tr:last-child > td:first-child {
654-
-webkit-border-bottom-left-radius: 6px;
655-
border-bottom-left-radius: 6px;
654+
-webkit-border-bottom-left-radius: 4px;
655+
border-bottom-left-radius: 4px;
656656
-moz-border-radius-bottomleft: 6px;
657657
}
658658

659659
table tbody:last-child tr:last-child > td:last-child {
660-
-webkit-border-bottom-right-radius: 6px;
661-
border-bottom-right-radius: 6px;
660+
-webkit-border-bottom-right-radius: 4px;
661+
border-bottom-right-radius: 4px;
662662
-moz-border-radius-bottomright: 6px;
663663
}
664664

0 commit comments

Comments
 (0)
0