-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathudf.css
More file actions
110 lines (101 loc) · 2.24 KB
/
udf.css
File metadata and controls
110 lines (101 loc) · 2.24 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
/* udf editor - CodeMirror */
#vp-wrapper .vp-udf-page .CodeMirror { border: 1px solid silver; }
#vp-wrapper .vp-udf-page .CodeMirror-empty { outline: 1px solid #c22; }
#vp-wrapper .vp-udf-page .CodeMirror-empty.CodeMirror-focused { outline: none; }
#vp-wrapper .vp-udf-page .CodeMirror pre.CodeMirror-placeholder { color: #999; }
#vp-wrapper .vp-udf-page .CodeMirror-scroll { min-height: 80px; max-height: 250px;}
/* udf option header */
.vp-option-header {
padding-bottom: 3px;
}
.vp-option-header label {
width: 73px;
}
.vp-option-header input {
width: calc(100% - 160px);
}
.vp-option-header button {
width: 70px;
}
/* udf list table */
#vp_udfList tr:not(:first-child):hover,
#vp_udfList tr.selected {
color: var(--font-hightlight);
background-color: #F5F5F5;
}
#vp_udfList .vp-udf-check:checked + span {
color: var(--font-hightlight);
}
.vp-udf-key {
cursor: pointer;
}
.vp-udf-key.selected {
color: var(--font-hightlight);
}
.vp-udf-key span {
text-overflow: ellipsis;
width: 100%;
overflow: hidden;
}
/* code td 긴 문자열 생략 */
.vp-udf-code,
.vp-udf-code pre {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
max-width: 250px;
margin: 0px;
padding: 0px;
background: #ffffff00;
border: 0px;
}
/* 새로고침 버튼 */
#vp_udfRefresh {
padding: 5px;
}
#vp_udfRefresh:hover {
cursor: pointer;
}
/* 삭제 버튼 */
.vp-del-col {
background-image: url(../../resource/close_big.svg);
cursor: pointer;
width: 15px;
height: 15px;
display: inline-block;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
/* 버튼 */
.vp-btn {
background: #F5F5F5;
border: 0.25px solid #C4C4C4;
box-sizing: border-box;
border-radius: 2px;
height: 24px;
width: 70px;
min-width: fit-content;
}
.vp-option-btn-box {
height: 30px;
padding: 5px 0px 5px 0px;
}
.vp-create-btn {
float: left;
}
.vp-delete-btn {
float: right;
}
/* code block add popup menu */
.vp-cm-popup {
display:none;
position: absolute;
background-color: #8b8b8b;
box-shadow: 1px 1px 3px 0px grey;
z-index: 999;
}
.vp-cm-popup-menu {
min-height: 20px;
cursor: pointer;
}