aboutsummaryrefslogtreecommitdiffstats
path: root/WebContent/VAADIN/themes/base/splitpanel/splitpanel.scss
blob: 2c3e578b0bb1e2bd02b5d7e55b507969aeea10c8 (plain)
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
@mixin base-splitpanel {

.v-splitpanel-horizontal,
.v-splitpanel-vertical {
	overflow: hidden;
}
.v-splitpanel-hsplitter {
	width: 6px;
}
.v-splitpanel-hsplitter div {
	width: 6px;
	position: absolute;
	top: 0;
	bottom: 0;
	background: #ddd;
	cursor: e-resize;
	cursor: col-resize;
}
.v-disabled .v-splitpanel-hsplitter div {
	cursor: default;
}
.v-splitpanel-vsplitter {
	height: 6px;
}
.v-splitpanel-vsplitter div {
	height: 6px;
	background: #ddd;
	cursor: s-resize;
	cursor: row-resize;
}
.v-disabled .v-splitpanel-vsplitter div {
	cursor: default;
}

}