-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathseaborn.css
More file actions
130 lines (130 loc) · 2.76 KB
/
seaborn.css
File metadata and controls
130 lines (130 loc) · 2.76 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
.vp-chart-setting {
float: right;
color: var(--vp-font-primary);
/* padding-top: 5px; */
padding-right: 5px;
cursor: pointer;
background-image: url(../../img/setting.svg);
background-size: 15px;
background-repeat: no-repeat;
padding-left: 24px;
margin-top: 5px;
background-size: contain;
line-height: 22px;
}
.vp-chart-setting:hover {
color: var(--vp-font-highlight);
background-image: url(../../img/setting_activated.svg);
}
.vp-create-subplot-btn {
float: right;
}
.vp-tab-bar {
width: 100%;
overflow-y: hidden;
}
.vp-tab-item {
display: inline-block;
position: relative;
width: 85px;
height: 30px;
line-height: 30px;
background: var(--vp-light-gray-color);
cursor: pointer;
border: 0.24px solid var(--vp-border-gray-color);
box-sizing: border-box;
border-radius: 2px 2px 0px 0px;
font-weight: bold;
text-align: center;
}
.vp-tab-item.vp-focus {
color: var(--vp-font-highlight);
background: var(--vp-background-color);
border-bottom: 3px solid #FFCF73;
}
.vp-tab-page {
width: 100%;
height: 100%;
}
.vp-tab-page-box.figure {
height: 100%;
align-content: baseline;
grid-template-rows: 1fr;
overflow: hidden;
}
.vp-tab-page-box.figure > .vp-tab-page {
overflow: auto;
}
.vp-tab-page-box.plot {
/* height: calc(100% - 30px);
min-height: 352px; */
align-content: baseline;
height: 100%;
max-height: 100%;
overflow: scroll;
padding: 15px 15px 0px 15px;
}
.vp-chart-plot-box {
height: 100%;
display: grid;
grid-template-rows: 30px calc(100% - 30px);
overflow: auto;
}
.vp-chart-body {
display: grid;
grid-template-columns: calc(50% - 8px) calc(50% - 8px);
grid-template-rows: 1fr;
grid-row-gap: 5px;
grid-column-gap: 15px;
align-items: baseline;
align-content: baseline;
height: 100%;
}
.vp-chart-left-box > label {
margin-bottom: 0px;
}
.vp-chart-left-box,
.vp-chart-right-box {
height: 100%;
display: grid;
grid-template-rows: 30px calc(100% - 30px);
}
.vp-chart-left-box {
overflow: auto;
}
.vp-chart-right-box {
overflow: hidden;
}
.vp-chart-preview-title {
line-height: 30px;
}
.vp-chart-preview-option {
float: right;
padding-right: 5px;
}
.vp-chart-preview-box {
min-height: 352px;
width: 100%;
/* height: calc(100% - 30px); */
height: 100%;
}
.vp-chart-preview-content:empty::after {
content: 'No preview image';
color: var(--vp-gray-color);
}
.vp-chart-preview-box img {
width: 100%;
height: 100%;
}
.vp-tab-page label {
margin-bottom: 0px;
}
.vp-tab-group-title {
font-weight: bold;
background: var(--vp-light-gray-color);
}
.vp-chart-setting-footer {
position: absolute;
left: 20px;
bottom: 15px;
}