-
Notifications
You must be signed in to change notification settings - Fork 0
/
tables.less
61 lines (51 loc) · 890 Bytes
/
tables.less
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
60
61
//
// TEF components - tables
//
.tc-table {
width: 100%;
max-width: 100%;
margin-bottom: 20px;
border-collapse: collapse;
background-color: #f6f6f6;
color: #333;
font-size: 14px;
line-height: 16px;
box-sizing: border-box;
text-align: left;
thead {
background-color: #fffdeb;
border: 1px solid #ccc;
border-left: none;
th {
border-left: 1px solid #ccc;
}
[icon],
[data-icon] {
color: @significant;
padding-left: 10px;
}
}
th {
padding: 7px 10px;
font-weight: normal;
}
tbody {
tr {
border: 1px solid #ccc;
&:hover,
&:focus,
&:active,
&.active {
background-color: #fef9e5;
border: 1px solid #e7d28a;
td, th {
border-top: 1px solid #e7d28a;
}
}
}
}
td {
padding: 7px 10px;
}
a { color: #333; }
}