-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathvariables.css
More file actions
36 lines (34 loc) · 692 Bytes
/
variables.css
File metadata and controls
36 lines (34 loc) · 692 Bytes
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
:root {
--color: #525252;
}
#vp_var_variableBox table tr:not(:first-child):hover,
#vp_var_variableBox table tr.selected {
color: var(--font-hightlight);
background-color: #F5F5F5;
}
#vp_var_variableBox table tr td:first-child:hover {
cursor: pointer;
}
#vp_varDetailTable table th,
#vp_varDetailTable table td {
padding: 3px;
}
#vp_varDetailTable table th {
background-color: lightgray;
}
#vp_varRefresh:hover {
cursor: pointer;
}
#vp_var_variableBox {
width: 95%;
height: 150px;
overflow: hidden;
}
#vp_varDetailTable:empty::after {
content: '(Nothing Selected)';
}
#vp_varDetailTable {
width: 95%;
height: 300px;
overflow: auto;
}