-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path4_responsiveTable.styl
59 lines (59 loc) · 1.17 KB
/
4_responsiveTable.styl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
@require "./2_variables"
// Responsive Table
+screenOnlyAnd($medium-and-down)
table.responsive-table
width: 100%
border-collapse: collapse
border-spacing: 0
display: block
position: relative
td:empty:before
content: '\00a0'
th,
td
margin: 0
vertical-align: top
th
text-align: left
thead
display: block
float: left
tr
display: block
padding: 0 10px 0 0
th::before
content: "\00a0"
tbody
display: block
width: auto
position: relative
overflow-x: auto
white-space: nowrap
tr
display: inline-block
vertical-align: top
th
display: block
text-align: right
td
display: block
min-height: 1.25em
text-align: left
tr
padding: 0 10px
/* sort out borders */
thead
border: 0
border-right: 1px solid $table-border-color
&.bordered
th
border-bottom: 0
border-left: 0
td
border-left: 0
border-right: 0
border-bottom: 0
tr
border: 0
tbody tr
border-right: 1px solid $table-border-color