-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathprofiling.css
More file actions
101 lines (100 loc) · 1.94 KB
/
profiling.css
File metadata and controls
101 lines (100 loc) · 1.94 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
.vp-pf-grid-box {
display: grid;
width: 100%;
height: 100%;
grid-row-gap: 5px;
grid-template-rows: 140px auto;
}
.vp-pf-prepare-box {
display: grid;
grid-template-columns: 50% 50%;
align-items: baseline;
align-content: center;
border: 1px solid #E4E4E4;
border-radius: 5px;
box-sizing: border-box;
padding: 15px;
}
.vp-pf-link {
color: var(--highlight-color);
}
.vp-pf-install-btn{
margin-left: 7px;
}
.vp-pf-check-btn {
display: inline-block;
margin-left: 5px;
}
.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;
border-radius: 5px;
box-sizing: border-box;
padding: 15px;
}
.vp-pf-df-box {
display: grid;
grid-template-columns: 95px auto;
grid-row-gap: 3px;
align-items: baseline;
align-content: space-evenly;
}
.vp-pf #vp_pfVariable {
width: 62%;
height: 30px;
}
.vp-pf-df-refresh {
display: inline-block;
cursor: pointer;
padding-left: 4px;
}
.vp-pf-input, .vp-pf-select {
width: 62%;
}
.vp-pf-menu-item {
width: 112px !important;
margin-left: 5px;
}
/** List box */
.vp-pf-list-box {
display: grid;
grid-template-rows: 20px calc(100% - 30px);
grid-row-gap: 5px;
border: 1px solid #E4E4E4;
border-radius: 5px;
box-sizing: border-box;
padding: 15px;
}
.vp-pf-list-header {
display: grid;
grid-template-columns: 35% 35% 30%;
}
.vp-pf-list-header-item {
font-weight: bold;
}
.vp-pf-list-body {
display: grid;
grid-template-rows: 30px;
overflow: auto;
}
.vp-pf-list-item {
display: grid;
grid-template-columns: 35% 35% 30%;
border: 0;
line-height: 30px;
}
.vp-pf-list-item:hover {
background: var(--light-gray-color);
cursor: pointer;
}
.vp-pf-list-button-box {
text-align: right;
}
.vp-pf-list-menu-item {
display: inline-block;
}