-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathdataSelector.css
More file actions
102 lines (102 loc) · 2.2 KB
/
dataSelector.css
File metadata and controls
102 lines (102 loc) · 2.2 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* DataSelector target*/
.vp-ds-box {
display: inline-flex;
}
.vp-ds-filter {
position: relative;
right: 20px;
cursor: pointer;
background: center / contain no-repeat url(../../img/filter.svg);
width: 12px;
height: 12px;
top: 9px;
}
.vp-ds-box input.vp-ds-target {
padding-right: 23px;
}
.vp-ds-box input.vp-ds-target:disabled {
background: var(--vp-light-gray-color) !important;
cursor: not-allowed;
}
.vp-ds-box input.vp-ds-target:disabled + .vp-ds-filter {
cursor: not-allowed;
}
/* DataSelector popup */
.vp-dataselector-base {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1305;
background-color: rgba(0,0,0,.4);
}
/* CHROME: prevent default box-sizing */
.vp-dataselector-base * {
box-sizing: border-box;
}
.vp-dataselector {
position: absolute;
top: calc(50% - 290px);
left: calc(50% - 325px);
width: 650px;
height: 580px;
background: var(--vp-background-color);
border: 1px solid var(--vp-border-gray-color);
z-index: 1300;
/* font */
font-family: AppleSDGothicNeo;
font-size: 14px;
color: var(--vp-font-primary);
}
.vp-ds-data-box {
width: 100%;
height: 130px;
align-content: baseline;
align-items: center;
}
.vp-ds-type-box,
.vp-ds-variable-box {
border: 0.25px solid var(--vp-border-gray-color);
height: 130px;
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(--vp-border-gray-color);
}
.vp-ds-type-item:hover,
.vp-ds-var-item:hover {
background: var(--vp-light-gray-color);
color: var(--vp-font-highlight);
cursor: pointer;
}
.vp-ds-type-item.selected,
.vp-ds-var-item.selected {
background: var(--vp-light-gray-color);
color: var(--vp-font-highlight);
font-weight: bold;
}
.vp-ds-option-box {
height: calc(100% - 200px);
margin-top: 10px;
}
.vp-ds-option-inner-box {
height: calc(100% - 80px);
}
.vp-ds-df-option-box {
height: 100%;
}
.vp-ds-df-multiselector,
.vp-ds-df-index-box {
height: calc(100% - 25px);
}
.vp-nd-row-box,
.vp-nd-col-box {
height: 160px;
}