-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathplotly.css
More file actions
81 lines (81 loc) · 1.58 KB
/
plotly.css
File metadata and controls
81 lines (81 loc) · 1.58 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
/* plotly styles */
.vp-pt-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-pt-left-box label {
margin-bottom: 0px;
}
.vp-pt-left-box,
.vp-pt-right-box {
height: calc(100% - 10px);
}
.vp-pt-option-box {
height: calc(100% - 30px);
}
.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(--light-gray-color);
cursor: pointer;
border: 0.24px solid #E4E4E4;
box-sizing: border-box;
border-radius: 2px 2px 0px 0px;
font-weight: bold;
text-align: center;
}
.vp-tab-item.vp-focus {
color: var(--font-highlight);
background: white;
border-bottom: 3px solid #FFCF73;
}
.vp-tab-page {
width: 100%;
height: 100%;
}
.vp-tab-page-box {
height: calc(100% - 30px);
min-height: 352px;
align-content: baseline;
}
.vp-pt-preview-title {
line-height: 30px;
}
.vp-pt-preview-option {
float: right;
padding-right: 5px;
}
.vp-pt-preview-box {
min-height: 352px;
width: 100%;
height: calc(100% - 30px);
}
.vp-pt-preview-content:empty::after {
content: 'No preview image';
color: var(--gray-color);
}
.vp-pt-preview-box img {
width: 100%;
height: 100%;
}
.vp-tab-page label {
margin-bottom: 0px;
}
.vp-pt-setting-footer {
position: absolute;
left: 20px;
bottom: 15px;
}