-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathlibraryComponent.css
More file actions
106 lines (99 loc) · 2.58 KB
/
libraryComponent.css
File metadata and controls
106 lines (99 loc) · 2.58 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
103
104
105
106
.vp-popup-frame .vp-option-page table.vp-option-table {
width: 100%;
}
.vp-popup-frame .vp-option-page .vp-option-table select.var-multi, select.option-multi {
height: 60px;
}
/* Function Button */
.vp-popup-frame #vp_functionList .vp_funcButton {
background-color: white;
padding: 3px 7px 3px 7px;
margin-right: 5px;
margin-bottom: 5px;
border: 1px solid #535353;
}
.vp-popup-frame #vp_functionList .vp_funcButton:hover {
background-color: lightgray;
}
.vp-popup-frame #vp_functionList .vp_funcButton.active {
color: white;
background-color: #535353;
cursor: default;
}
/* Input & Select Design */
.vp-popup-frame .vp-input {
height: 30px;
background-color: #FFFFFF;
box-sizing: border-box;
padding: 0px 5px 0px 5px;
}
.vp-popup-frame .vp-select {
height: 30px;
background-color: #F5F5F5;
box-sizing: border-box;
/* select tag arrow */
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding: 0px 5px 0px 5px;
cursor: pointer;
}
/* Select Option Design */
.vp-popup-frame .vp-select * {
background-color: white;
color: #696969;
}
/* Input & Select Design - width m&s */
.vp-popup-frame .vp-input.m,
.vp-popup-frame .vp-select.m {
width: 116px;
}
.vp-popup-frame .vp-input.s,
.vp-popup-frame .vp-select.s {
width: 55px;
}
/* Range */
.vp-popup-frame .vp-range {
display: inline;
width: 116px;
}
.vp-popup-frame .vp-textarea {
border: 0.25px solid var(--border-gray-color);
width: 100%;
height: 100px;
margin: 0px;
}
/* Arrow Accordions */
.vp-popup-frame .vp-option-page .vp-accordian-header {
font-weight: bold;
}
.vp-popup-frame .vp-option-page .vp-arrow-right,
.vp-popup-frame .vp-option-page .vp-arrow-down {
background-repeat: no-repeat;
}
.vp-popup-frame .vp-option-page .vp-spread {
min-height: 100px;
}
.vp-popup-frame .vp-option-page .vp-minimize {
height: 25px;
overflow: hidden;
}
.vp-popup-frame .vp-pandas-block {
border-bottom: 1px solid darkgray;
}
/* Prefix & Postfix Text Area */
.vp-popup-frame #vp_prefixBox textarea,
.vp-popup-frame #vp_postfixBox textarea {
outline: none;
resize: none;
overflow: auto;
}
.no-selection {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Old versions of Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently
supported by Chrome, Edge, Opera and Firefox */
}