forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.css
More file actions
39 lines (39 loc) · 811 Bytes
/
Copy pathvariables.css
File metadata and controls
39 lines (39 loc) · 811 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
37
38
39
: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: 5px;
}
#vp_varDetailTable table th {
background-color: lightgray;
}
#vp_varRefresh{
margin-left: 7px;
}
#vp_varRefresh:hover {
cursor: pointer;
}
#vp_var_variableBox {
width: 100%;
height: 150px;
overflow: hidden;
}
#vp_varDetailTable:empty::after {
content: '(Select variables to preview the data.)';
color: var(--highlight-color);
font-style: italic;
}
#vp_varDetailTable {
width: 100%;
height: 300px;
overflow: auto;
}