forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstanceEditor.css
More file actions
101 lines (101 loc) · 2.13 KB
/
instanceEditor.css
File metadata and controls
101 lines (101 loc) · 2.13 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
/* Select Boxes */
.vp-ins-box {
width: 100%;
display: grid;
grid-template-columns: 50% 50%;
grid-gap: 10px;
padding-right: 15px;
}
.vp-ins-select-title {
font-weight: bold;
color: var(--vp-font-highlight);
padding: 5px 5px 5px 0px;
}
.vp-ins-select-container input.vp-ins-search {
width: 100%;
}
.vp-ins-select-container .vp-ins-search-icon {
position: absolute;
color: #C4C4C4;
right: 7px;
top: 7px;
}
.vp-ins-select-box {
margin-top: 5px;
border: 0.25px solid var(--vp-border-gray-color);
}
.vp-ins-select-list {
height: 145px;
width: 100%;
list-style: none;
margin: 0px;
padding: 0px 5px 0px 5px;
color: #696969;
overflow: auto;
}
.vp-ins-select-list::-webkit-scrollbar {
height: 5px;
width: 5px;
}
.vp-ins-select-list::-webkit-scrollbar-track {
border-radius: 0;
background: #eeeeee;
}
.vp-ins-select-list::-webkit-scrollbar-thumb {
border-radius: 0;
background: #b0b0b0;
}
.vp-ins-select-item {
padding-top: 3px;
padding-bottom: 3px;
cursor: pointer;
border-bottom: 0.25px solid var(--vp-light-gray-color);
}
.vp-ins-select-item.selected {
color : var(--vp-font-highlight);
background: var(--vp-light-gray-color);
}
.vp-ins-select-item span {
background: #e0e0e0;
border-radius: 10px;
padding: 0px 5px 0px 5px;
margin-right: 5px;
}
.vp-ins-select-item:hover {
background: var(--vp-light-gray-color);
}
.vp-ins-select-item:hover span {
background: var(--vp-highlight-color);
color: #FFFFFF;
}
.vp-ins-option-box.api {
width: 95%;
}
.vp-ins-parameter-box {
grid-column: 1/3;
}
.vp-ins-parameter-box:empty::after {
content: '(Empty)';
color: var(--vp-gray-color);
}
div.vp-ins-parameter-box input.vp-ins-parameter {
width: calc(100% - 70px);
}
button.vp-ins-opt-button {
width: 65px;
min-width: 65px;
}
.vp-create-var-box {
position: relative;
margin-top: 5px;
}
.vp-ins-select-container .vp-create-var {
width: 100% !important;
}
.vp-ins-select-container .vp-create-var-btn {
position: absolute;
color: #C4C4C4;
right: 9px;
top: 5px;
cursor: pointer;
}