We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60847fe commit 8795ff1Copy full SHA for 8795ff1
1 file changed
src/table.css
@@ -31,18 +31,22 @@
31
}
32
33
.ui-table-column .ui-table-item:first-child{
34
- border-left: 1px solid #ccc;
+ border-left-width: 1px;
35
36
.ui-table-column .ui-table-side .ui-table-item:last-child{
37
- border-right: 0 none;
+ border-right-width: 0;
38
39
.ui-table-head .ui-table-item{
40
- border-top: 1px solid #ccc;
+ border-top-width: 1px;
41
42
43
.ui-table-item{
44
- border-right: 1px solid #ccc;
45
- border-bottom: 1px solid #ccc;
+ border-color: #ccc;
+ border-style: solid;
46
+ border-right-width: 1px;
47
+ border-bottom-width: 1px;
48
+ border-top-width: 0;
49
+ border-left-width: 0;
50
-webkit-box-sizing: border-box;
51
-moz-box-sizing: border-box;
52
box-sizing: border-box;
0 commit comments