-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathcommonPandas.css
More file actions
142 lines (129 loc) · 3.76 KB
/
commonPandas.css
File metadata and controls
142 lines (129 loc) · 3.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/* TEST: FONT TEST */
/* @import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic+Coding:wght@400;700&family=Noto+Sans+KR&family=Staatliches&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&family=Staatliches&display=swap');
#vp-wrapper {
font-family: 'Noto Sans KR', sans-serif;
}
#vp-wrapper .header {
font-family: 'Staatliches', cursive;
}
#vp-wrapper .vp-funcNavi {
font-family: 'Staatliches', 'Noto Sans KR', cursive;
}
@font-face {
font-family: 'Staatliches';
font-style: 'cursive';
src: url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&family=Staatliches&display=swap');
unicode-range: U+0041-005A, U+0061-007A, U+0030-0039;
} */
/* TEST: FONT TEST END */
#vp-wrapper .vp-option-page table.vp-option-table {
width: 95%;
/* margin-left: 23px;
margin-right: 23px; */
}
#vp-wrapper .vp-option-page table.vp-option-table td {
padding-top: 3.5px;
padding-bottom: 3.5px;
}
#vp-wrapper .vp-option-page .vp-option-table select.var-multi, select.option-multi {
height: 60px;
}
/* 기능 버튼 */
#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: 24px;
background-color: #FFFFFF;
border: 0.25px solid #C4C4C4;
box-sizing: border-box;
padding: 0px 5px 0px 5px;
}
#vp-wrapper .vp-select {
width: 176px;
height: 24px;
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;
/* 공통에서 처리함 */
/* background-image: url("data:image/svg+xml;utf8,<svg fill='darkgray' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
background-repeat: no-repeat;
background-position-x: 100%;
background-position-y: 5px; */
}
/* 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;
}
/* 공통 스타일 */
.w100 { width: 100%; }
.w90 { width: 90%; }
/* 화살표 접이박스 */
#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 TextArea */
#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 */
}