-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathteinte.sortable.css
More file actions
165 lines (134 loc) · 3.26 KB
/
teinte.sortable.css
File metadata and controls
165 lines (134 loc) · 3.26 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
table.sortable {
font-family: sans-serif;
line-height: 1.3em;
border: 1px solid;
border-color: #CCCCCC;
margin-top: 1rem;
margin-bottom: 2em;
border-spacing: 0;
}
table.sortable > caption {
padding: 7px 1ex 5px 1ex;
font-size: 16px;
border-top: #FFFFFF 1px solid;
border-left: #FFFFFF 1px solid;
border-right: #FFFFFF 1px solid;
color: #666;
font-weight: bold;
line-height: 1.2em;
}
table.sortable thead {
position: sticky;
top: 0;
background-color: #FFF;
}
table.sortable td {
vertical-align: top;
border-left: #BBD 1px solid;
border-right: #BBD 1px solid;
padding: 1px 1ex 1px 1ex;
color: #333;
}
table.sortable b {
color: black;
}
table.sortable td.string {
text-align: left;
}
table.sortable th {
text-align: center;
vertical-align: middle;
text-align: left;
padding: 5px 1ex 5px 1ex;
background-color: #FFFFFF;
border-top: 2px solid #CCCCCC;
border-bottom: 1px solid #666;
box-shadow: 0 4px 2px -2px #BBB;
}
table.sortable thead th {
border-left: #BBD 1px solid;
}
table.sortable .sorting {
cursor: pointer;
padding-left: 1.2em;
background-repeat: no-repeat;
background-position: 2px center;
background-image: url(data:image/gif;base64,R0lGODlhCwALAJEAAAAAAP///xUVFf///yH5BAEAAAMALAAAAAALAAsAAAIUnC2nKLnT4or00PvyrQwrPzUZshQAOw==);
}
table.sortable .sorting.desc {
background-image: url(data:image/gif;base64,R0lGODlhCwALAJEAAAAAAP///xUVFf///yH5BAEAAAMALAAAAAALAAsAAAIRnC2nKLnT4or00Puy3rx7VQAAOw==);
}
table.sortable .sorting.asc {
background-image: url(data:image/gif;base64,R0lGODlhCwALAJEAAAAAAP///xUVFf///yH5BAEAAAMALAAAAAALAAsAAAIPnI+py+0/hJzz0IruwjsVADs=);
}
table.sortable .sorting:hover {
background-color: #FFFFFF;
}
table.sortable tr.even th,
table.sortable tr.odd th {
text-align: right;
}
table.sortable tr td {
border-bottom: solid 1px transparent;
border-top: solid 1px transparent;
border-right: 1px #CCC solid;
border-left: none;
}
table.sortable tr.mod1 td,
table.sortable tr.mod4 td,
table.sortable tr.mod6 td,
table.sortable tr.mod9 td {
border-bottom-color: #FFF;
}
table.sortable tr.mod5 td {
border-bottom: solid 1px rgba(171, 170, 164, 0.6);
}
table.sortable tr.mod3,
table.sortable tr.mod8 {
background: #FFFFFF;
}
table.sortable tr.mod0 td {
border-bottom: solid 2px rgba(171, 170, 164, 0.6);
box-shadow: 0 2px 2px -2px rgba(171, 170, 164, 0.8);
}
table.sortable tbody tr:hover {
background: #FFFFFF;
}
table.sortable tbody tr:hover td {
border-bottom-color: #000;
border-top: solid 1px #000;
color: black;
border-left-color: transparent;
border-right-color: transparent;
}
table.sortable tbody tr:hover a {
color: black;
}
table.sortable a {
text-decoration: none;
}
table.sortable th a {
display: block;
}
table.sortable a:hover {
background: #FFFFFF;
box-shadow: 0px 0px 20px #AAAAAA;
}
table.sortable th a:hover {
background-color: #FFFFFF;
border: none
}
table.sortable th.num {
text-align: right;
font-weight: 100;
font-size: 85%;
padding: 0 1px;
}
table.sortheader {
cursor: pointer;
}
/* .sortheader b {-webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } */
table.sortable td.num,
table.sortable td.no {
text-align: right;
}