forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommonPandas.css
More file actions
118 lines (110 loc) · 2.76 KB
/
Copy pathcommonPandas.css
File metadata and controls
118 lines (110 loc) · 2.76 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
107
108
109
110
111
112
113
114
115
116
117
118
#vp-wrapper .vp-option-page table.vp-option-table {
width: 95%;
}
#vp-wrapper .vp-option-page table.vp-option-table td {
padding-top: 4.5px;
padding-bottom: 2.5px;
}
#vp-wrapper .vp-option-page .vp-option-table select.var-multi, select.option-multi {
height: 60px;
}
/* Function Button */
#vp-wrapper #vp_functionList .vp_funcButton {
background-color: white;
padding: 3px 7px 3px 7px;
margin-right: 5px;
margin-bottom: 5px;
border: 1px solid #535353;
}
#vp-wrapper #vp_functionList .vp_funcButton:hover {
background-color: lightgray;
}
#vp-wrapper #vp_functionList .vp_funcButton.active {
color: white;
background-color: #535353;
cursor: default;
}
/* Input & Select Design */
#vp-wrapper .vp-input {
width: 176px;
height: 30px;
background-color: #FFFFFF;
border: 0.25px solid #C4C4C4;
box-sizing: border-box;
padding: 0px 5px 0px 5px;
}
#vp-wrapper .vp-select {
width: 176px;
height: 30px;
background-color: #F5F5F5;
border: 0.25px solid #C4C4C4;
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-wrapper .vp-select * {
background-color: white;
color: #696969;
}
/* Input & Select Design - width m&s */
#vp-wrapper .vp-input.m,
#vp-wrapper .vp-select.m {
width: 116px;
}
#vp-wrapper .vp-input.s,
#vp-wrapper .vp-select.s {
width: 55px;
}
/* Range */
#vp-wrapper .vp-range {
display: inline;
width: 116px;
}
#vp-wrapper .vp-textarea {
border: 0.25px solid var(--border-gray-color);
width: 100%;
height: 100px;
margin: 0px;
}
/* Common Style */
.w100 { width: 100%; }
.w90 { width: 90%; }
/* Arrow Accordions */
#vp-wrapper .vp-option-page .vp-accordion-header {
font-weight: bold;
}
#vp-wrapper .vp-option-page .vp-arrow-right,
#vp-wrapper .vp-option-page .vp-arrow-down {
background-repeat: no-repeat;
}
#vp-wrapper .vp-option-page .vp-spread {
min-height: 100px;
}
#vp-wrapper .vp-option-page .vp-minimize {
height: 25px;
overflow: hidden;
}
#vp-wrapper .vp-pandas-block {
border-bottom: 1px solid darkgray;
}
/* Prefix & Postfix Text Area */
#vp-wrapper #vp_prefixBox textarea,
#vp-wrapper #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 */
}