forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdataSelector.css
More file actions
85 lines (85 loc) · 1.81 KB
/
Copy pathdataSelector.css
File metadata and controls
85 lines (85 loc) · 1.81 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
/* DataSelector target*/
.vp-ds-box {
display: inline-block;
}
.vp-ds-filter {
position: relative;
width: 20px;
height: 20px;
right: 25px;
cursor: pointer;
}
.vp-ds-box input.vp-ds-target {
padding-right: 23px;
}
.vp-ds-box input.vp-ds-target:disabled {
background: var(--light-gray-color) !important;
cursor: not-allowed;
}
.vp-ds-box input.vp-ds-target:disabled + .vp-ds-filter {
cursor: not-allowed;
}
.vp-ds-item:hover {
background: var(--light-gray-color);
color: var(--font-highlight);
cursor: pointer;
}
/* DataSelector popup */
.vp-dataselector {
display: none;
position: absolute;
top: calc(50% - 225px);
left: calc(50% - 300px);
width: 600px;
height: 450px;
background: white;
border: 1px solid var(--border-gray-color);
z-index: 999;
/* font */
font-family: AppleSDGothicNeo;
font-size: 14px;
color: var(--font-primary);
}
.vp-ds-data-box {
width: 100%;
height: 100px;
align-content: baseline;
align-items: center;
}
.vp-ds-type-box,
.vp-ds-variable-box {
border: 0.25px solid var(--border-gray-color);
height: 100px;
grid-row-gap: 0px;
align-content: baseline;
}
.vp-ds-type-item,
.vp-ds-var-item {
padding-left: 5px;
height: 25px;
line-height: 25px;
border-bottom: 1px solid var(--border-gray-color);
}
.vp-ds-type-item:hover,
.vp-ds-var-item:hover {
background: var(--light-gray-color);
color: var(--font-highlight);
cursor: pointer;
}
.vp-ds-type-item.selected,
.vp-ds-var-item.selected {
background: var(--light-gray-color);
color: var(--font-highlight);
font-weight: bold;
}
.vp-ds-option-box {
height: calc(100% - 140px);
margin-top: 10px;
}
.vp-ds-option-inner-box {
height: calc(100% - 30px);
}
.vp-nd-row-box,
.vp-nd-col-box {
height: 160px;
}