devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
41 lines (36 loc) • 902 B
text/less
/**
* DevExtreme (widgets/common/splitter.less)
* Version: 20.1.7
* Build date: Tue Aug 25 2020
*
* Copyright (c) 2012 - 2020 Developer Express Inc. ALL RIGHTS RESERVED
* Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/
*/
.dx-splitter-wrapper {
height: 100%;
width: 0;
position: absolute;
z-index: 998;
top: 0;
.dx-splitter-border {
z-index: 997;
height: 100%;
width: 7px;
cursor: col-resize;
.dx-splitter {
height: 100%;
width: 1px;
display: block;
cursor: col-resize;
z-index: 999; // Below @OVERLAY_ZINDEX: 1000
margin: auto;
&.dx-splitter-inactive {
z-index: 998;
}
&.dx-state-disabled {
width: 0;
cursor: default;
}
}
}
}