-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathsweetviz.css
More file actions
105 lines (104 loc) · 2.15 KB
/
sweetviz.css
File metadata and controls
105 lines (104 loc) · 2.15 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
.vp-sv-grid-box {
display: grid;
width: 100%;
height: 100%;
grid-row-gap: 5px;
grid-template-rows: 185px auto;
}
.vp-sv-prepare-box {
display: grid;
grid-template-columns: 50% 50%;
align-items: baseline;
align-content: center;
border: 1px solid var(--vp-border-gray-color);
border-radius: 5px;
box-sizing: border-box;
padding: 15px;
}
.vp-sv-link {
color: var(--vp-highlight-color);
}
.vp-sv-install-btn{
margin-left: 7px;
}
.vp-sv-check-btn {
display: inline-block;
margin-left: 5px;
}
.vp-sv-import-btn {
margin-left: 10px;
}
.vp-sv-show-box {
display: grid;
/* grid-template-rows: min-content min-content; */
grid-row-gap: 10px;
border: 1px solid var(--vp-border-gray-color);
border-radius: 5px;
box-sizing: border-box;
padding: 15px;
}
.vp-sv-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-sv-df-refresh {
display: inline-block;
cursor: pointer;
padding-left: 4px;
/* LAB: img to background-image */
background: center / contain no-repeat url(../../img/refresh.svg);
width: 18px;
height: 19px;
}
.vp-sv-input, .vp-sv-select {
width: 62%;
}
.vp-sv-menu-item {
width: 112px !important;
margin-left: 5px;
}
/** List box */
.vp-sv-list-box {
display: grid;
grid-template-rows: 20px calc(100% - 30px);
grid-row-gap: 5px;
border: 1px solid var(--vp-border-gray-color);
border-radius: 5px;
box-sizing: border-box;
padding: 15px;
}
.vp-sv-list-header {
display: grid;
grid-template-columns: 35% 35% 30%;
}
.vp-sv-list-header-item {
font-weight: bold;
}
.vp-sv-list-body {
display: grid;
grid-template-rows: 30px;
overflow: auto;
}
.vp-sv-list-item {
display: grid;
grid-template-columns: 35% 35% 30%;
border: 0;
line-height: 30px;
}
.vp-sv-list-item:hover {
background: var(--vp-light-gray-color);
cursor: pointer;
}
.vp-sv-list-button-box {
text-align: right;
}
.vp-sv-list-menu-item {
display: inline-block;
}