forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofiling.css
More file actions
141 lines (140 loc) · 2.85 KB
/
Copy pathprofiling.css
File metadata and controls
141 lines (140 loc) · 2.85 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
.vp-pf {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1200;
background-color: rgba(0,0,0,.4);
}
.vp-pf-container {
position: relative;
left: 50%;
top: 50%;
transform:translate(-50%, -50%);
min-width: 400px;
min-height: 400px;
width: 50%;
height: 60%;
background-color: white;
}
.vp-pf-title {
height: 40px;
padding: 5px 0px 5px 10px;
background-color: #EEE;
border: 1px solid #ddd;;
display: flex;
flex-direction: row;
position: relative;
align-items: center;
font-size: 16px;
font-weight: 700;
}
.vp-pf-close,
.vp-pf-popup-close {
position: fixed;
z-index: 3;
right: 5px;
width: 30px;
height: 20px;
line-height: 20px;
top: 10px;
text-align: center;
cursor: pointer;
}
.vp-pf-body {
width: 100%;
height: calc(100% - 30px);
padding: 10px;
}
.vp-pf-grid-box {
display: grid;
width: 100%;
height: 100%;
grid-row-gap: 5px;
/* grid-template-rows: 60px calc(100% - 80px); */
/* grid-template-rows: 80px calc(100% - 100px); */
grid-template-rows: 80px min-content;
}
.vp-pf-prepare-box {
display: grid;
/* grid-column-gap: 10px; */
grid-row-gap: 5px;
/* grid-template-columns: 150px calc(100% - 150px); */
/* grid-template-rows: repeat(2, 50%); */
grid-template-rows: 20px 35px;
border: 1px solid #E4E4E4;
box-sizing: border-box;
box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
padding: 10px;
}
.vp-pf-link {
color: var(--hightlight-color);
}
.vp-pf-import-btn {
margin-left: 10px;
}
.vp-pf-show-box {
display: grid;
grid-template-rows: min-content min-content;
grid-row-gap: 10px;
border: 1px solid #E4E4E4;
box-sizing: border-box;
box-shadow: 1px 1px 2px rgb(0 0 0 / 10%);
padding: 10px;
}
.vp-pf-df-box {
display: grid;
grid-template-columns: 100px auto;
grid-row-gap: 5px;
align-items: baseline;
}
.vp-pf #vp_pfVariable {
width: 152px;
height: 30px;
}
.vp-pf-df-refresh {
cursor: pointer;
}
.vp-pf-input {
width: max-content;
}
.vp-pf-menu-item {
width: 120px !important;
}
/** Buttons */
.vp-pf-btn-box {
position: absolute;
bottom: 10px;
right: 10px;
}
.vp-pf-btn-apply
, .vp-pf-popup-ok {
width: 80px;
height: 30px;
background: #F37704;
border: 0.25px solid #C4C4C4;
box-sizing: border-box;
border-radius: 2px;
text-align: center;
color: #FFFFFF;
}
.vp-pf-btn-apply:hover
, .vp-pf-popup-ok:hover {
background: var(--hightlight-color);
}
.vp-pf-btn-cancel
, .vp-pf-popup-cancel {
width: 80px;
height: 30px;
background: #E5E5E5;
border: 0.25px solid #C4C4C4;
box-sizing: border-box;
border-radius: 2px;
text-align: center;
color: #696969;
}
.vp-pf-btn-cancel:hover
, .vp-pf-popup-cancel:hover {
background: #ccc;
}