-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathinnerFuncViewer.css
More file actions
131 lines (129 loc) · 3 KB
/
innerFuncViewer.css
File metadata and controls
131 lines (129 loc) · 3 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
/* UDF Editor - CodeMirror */
.vp-if-body .CodeMirror { border: 1px solid silver; }
.vp-if-body .CodeMirror.CodeMirror-focused { border: 1px solid var(--highlight-color); }
.vp-if-body .CodeMirror-empty { outline: 1px solid #c22; }
.vp-if-body .CodeMirror-empty.CodeMirror-focused { outline: none; }
.vp-if-body .CodeMirror pre.CodeMirror-placeholder { color: #999; }
.vp-if-body .CodeMirror-scroll { min-height: 80px; max-height: 250px;}
.vp-if-body {
padding: 10px;
}
.vp-if-header {
height: 30px;
}
.vp-if-header label {
font-weight: bold;
font-size: 14px;
line-height: 16px;
}
.vp-if-menu {
float: right;
cursor: pointer;
position: relative;
}
.vp-if-menu-box {
display: none;
position: absolute;
width: 130px;
top: 23px;
right: 0px;
border: 0.25px solid var(--border-gray-color);
border-radius: 3px;
background: #FFFFFF;
padding: 5px;
z-index: 5;
}
.vp-if-menu-item {
height: 30px;
font-size: 14px;
line-height: 30px;
padding: 0px 5px;
cursor: pointer;
}
.vp-if-menu-item:hover {
color: var(--font-highlight);
}
.vp-if-search-box {
position: relative;
}
.vp-if-search-box .vp-if-search {
width: 100% !important;
height: 30px;
padding-right: 30px !important;
}
.vp-if-search-box .vp-if-search-icon {
position: absolute;
color: #C4C4C4;
right: 10px;
padding-top: 4px;
/* LAB: img to background-image */
background: center / contain no-repeat url(../../img/search.svg);
width: 20px;
height: 20px;
top: 5px;
}
/* Empty List */
.vp-if-table {
margin-top: 10px;
}
.vp-if-table:empty::after {
content: '(No saved snippets)';
color: #C4C4C4;
}
.vp-if-item {
min-height: 30px;
}
.vp-if-item.selected {
background: #F5F5F5;
}
.vp-if-item-header {
height: 30px;
line-height: 30px;
padding: 0px 7px;
border: 0.25px solid var(--border-gray-color);
box-sizing: border-box;
cursor: pointer;
}
.vp-if-item-header.selected {
background: #F5F5F5;
}
.vp-if-item-header .vp-if-indicator {
display: inline-block;
cursor: pointer;
background-image: url(../../img/chevron_big_right.svg);
background-size: contain;
background-repeat: no-repeat;
width: 10px;
height: 10px;
}
.vp-if-item-header .vp-if-indicator.open {
background-image: url(../../img/chevron_big_down.svg) !important;
}
.vp-if-item-header input.vp-if-item-title {
width: calc(100% - 110px);
outline: none;
background: transparent;
border: 0.5px solid transparent;
cursor: pointer;
}
.vp-if-item-header.selected input.vp-if-item-title {
color: var(--font-highlight);
}
.vp-if-item-header input.vp-if-item-title:focus {
transition: 0.7s;
border: 0.5px solid var(--highlight-color) !important;
cursor: text;
}
.vp-if-item-menu {
float: right;
}
.vp-if-item-menu-item {
display: inline-block;
cursor: pointer;
margin-left: 5px;
}
.vp-if-item-code {
display: none;
position: relative;
border: 0.25px solid var(--border-gray-color);
}