-
Notifications
You must be signed in to change notification settings - Fork 21
/
stable.css
206 lines (175 loc) · 4.15 KB
/
stable.css
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
:root {
--border-color-dark: #333;
--border-color-light: #181818;
--background-dark: #2a2a2a;
--background-darker: #222;
--background-light: #343434;
--text-color: #ccc;
--text-color-light: #999;
--highlight-color: #009ddd;
--font-family: 'Open Sans', sans-serif;
--text-shadow-color: #000;
--meter-bg-color: #1e824c;
--selected-text-shadow: 0 0 4px var(--text-shadow-color);
--selected-background: #343434;
--selected-text-color: var(--highlight-color);
}
/* Stable Table Styling */
.stable {
border: 1px solid;
border-color: var(--border-color-dark) var(--border-color-light) var(--border-color-light) var(--border-color-dark);
}
.stable td {
padding: 2px;
}
/* Table Head Styling */
.stable-head {
background: var(--background-dark);
border: none;
color: var(--text-color-light);
font-family: inherit;
text-shadow: none;
}
.stable-head td div {
padding: 4px 16px 4px 6px !important;
}
div#tdcont .stable-head,
div#tdcont .stable {
border: none;
}
.stable-head table tr {
background: none;
border: none;
}
.stable-head table tr td {
border-color: #222;
border-style: none solid solid none;
border-width: 0 1px 1px 0;
font-family: var(--font-family);
font-size: 12px;
font-weight: 600;
line-height: 16px;
text-transform: uppercase;
white-space: nowrap;
}
.stable-head div.resz {
border: 1px solid red;
background: transparent url(images/s.gif) no-repeat scroll left center;
}
/* Table Body Styling */
.stable-body {
background: var(--background-darker);
text-shadow: none;
color: var(--text-color);
}
.stable-body td {
border-bottom: 1px solid var(--background-dark);
vertical-align: middle;
}
.stable-body td div {
font-family: var(--font-family) !important;
font-size: 11px;
height: 21px !important;
line-height: 21px;
}
.stable-body tr {
height: 22px;
}
.stable-body tr.odd td {
background: var(--background-darker);
}
.stable-body tr.odd:hover td,
.stable-body tr.even:hover td {
background: #333;
}
.stable-body tr.even td {
background: var(--background-dark);
}
.stable-body tr.selected td {
background: var(--selected-background);
color: var(--selected-text-color);
text-shadow: var(--selected-text-shadow);
}
/* Table Body Rows with nth-child */
div.stable-body table tbody tr.even td,
div.stable-body table tbody tr.even:nth-child(2n+1) td {
background: var(--background-dark);
}
div.stable-body table tbody tr.even:hover td,
div.stable-body table tbody tr.even:hover:nth-child(2n+1) td {
background: #333;
}
div.stable-body table tbody tr.even td:nth-child(2n+1) {
color: #aaa;
}
/* Header Move Styling */
.stable-move-header {
background: transparent url(images/header_move.gif) repeat-x scroll center top rgba(128, 128, 128, 0.7);
border: 1px solid #09f;
opacity: 0.7;
}
/* Gecko, IE, WebKit-Specific Styling */
.gecko .stable-move-header,
.ie .stable-move-header,
.webkit .stable-move-header {
background: rgba(128, 128, 128, 0.7);
}
.stable-active-header {
border-color: threedface !important;
}
.stable-separator-header {
background: var(--border-color-light);
}
/* Scroll Position Styling */
.stable-scrollpos {
background: var(--border-color-light) url(images/headers.png) repeat-x 0 -37px;
height: 17px;
line-height: 17px;
border-bottom: 1px solid var(--border-color-dark);
}
.stable-scrollpos:nth-child(2n+1) {
background: var(--border-color-light) url(images/headers.png) repeat-x 0 -64px;
}
/* Meter Value and Text Styling */
.meter-value {
float: left;
border: 0 inset #1b1b1b;
background: var(--meter-bg-color);
border-radius: 12px;
height: 14px;
}
.stable-body tr.selected span.meter-value {
color: var(--text-color);
}
.meter-text {
color: var(--text-color);
float: left;
font-family: var(--font-family);
font-size: 11px;
font-weight: 400;
left: 40%;
line-height: 21px;
overflow: visible;
position: relative;
text-align: left;
text-shadow: var(--selected-text-shadow);
z-index: 1;
}
/* Icon Styling */
.stable-icon {
float: left;
height: 16px;
margin: 3px 5px 0 5px;
padding: 0 !important;
width: 18px;
}
/* Column Styling */
.stable-List-col-3 div {
height: 18px !important;
text-align: left;
}
.stable-List-col-6 div {
font-weight: 400;
text-align: center;
text-shadow: var(--selected-text-shadow);
}