-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathStyledSplitPane.scss
More file actions
75 lines (67 loc) · 1.81 KB
/
StyledSplitPane.scss
File metadata and controls
75 lines (67 loc) · 1.81 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
// Copyright 2015 tomkp
// Copyright 2022 YANDEX LLC
.styled-split-pane {
&__pane-resizer {
background: linear-gradient(
to right,
var(--g-color-base-generic),
var(--g-color-base-generic)
),
linear-gradient(
to right,
var(--g-color-base-background),
var(--g-color-base-background)
);
z-index: 1;
box-sizing: border-box;
position: relative;
&_hovered {
opacity: 0.5;
}
&.horizontal {
height: 24px;
min-height: 24px;
width: 100%;
&:before {
content: '';
width: 28px;
margin-left: -14px;
height: 1px;
background-color: var(--highcarts-navigator-body);
left: 50%;
top: 10px;
position: absolute;
}
&:after {
content: '';
width: 28px;
margin-left: -14px;
height: 1px;
background-color: var(--highcarts-navigator-body);
left: 50%;
top: 13px;
position: absolute;
}
}
&.vertical {
height: 100%;
width: 1px;
min-width: 1px;
}
}
.Pane {
height: 100%;
}
.Pane2 {
background: linear-gradient(
to right,
var(--g-color-infographics-tooltip-bg),
var(--g-color-infographics-tooltip-bg)
),
linear-gradient(
to right,
var(--g-color-base-background),
var(--g-color-base-background)
);
}
}