-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathvariable.css
More file actions
59 lines (58 loc) · 1.31 KB
/
variable.css
File metadata and controls
59 lines (58 loc) · 1.31 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
#vp_var_variableBox table {
width: 100%;
}
#vp_var_variableBox table tbody tr:hover,
#vp_var_variableBox table tbody tr.vp-selected {
color: var(--vp-font-highlight);
background-color: #F5F5F5;
}
#vp_var_variableBox table tbody tr td:hover {
cursor: pointer;
}
#vp_var_variableBox table tbody:empty::after {
content: '(No variables available.)';
color: var(--vp-highlight-color);
font-style: italic;
}
#vp_var_variableBox table thead {
position: sticky;
top: 0;
background: var(--vp-background-color);
}
#vp_var_variableBox table td {
vertical-align: middle;
text-align: left;
line-height: 30px;
height: 30px;
padding: 2px 5px;
}
#vp_varDetailTable table th,
#vp_varDetailTable table td {
padding: 5px;
}
#vp_varDetailTable table th {
background-color: lightgray;
}
#vp_varRefresh{
margin-left: 7px;
/* LAB: img to background-image */
background: top / contain no-repeat url(../../img/refresh.svg);
height: 100%;
}
#vp_varRefresh:hover {
cursor: pointer;
}
#vp_var_variableBox {
width: 100%;
height: 150px;
}
#vp_varDetailTable:empty::after {
content: '(Select variables to preview the data.)';
color: var(--vp-highlight-color);
font-style: italic;
}
#vp_varDetailTable {
width: 100%;
height: 300px;
overflow: auto;
}