devextreme
Version:
HTML5 JavaScript Component Suite for Responsive Web Development
55 lines (47 loc) • 966 B
text/less
/**
* DevExtreme (widgets/common/slideOutView.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-slideoutview {
height: 100%;
width: 100%;
touch-action: pinch-zoom;
}
.dx-slideoutview-wrapper {
position: relative;
overflow: hidden;
height: 100%;
}
.dx-slideoutview-menu-content {
position: absolute;
top: 0;
bottom: 0;
&.dx-slideoutview-right {
right: 0;
}
&.dx-slideoutview-left {
left: 0;
}
}
.dx-slideoutview-content {
position: absolute;
overflow: hidden;
width: 100%;
height: 100%;
top: 0;
z-index: 100;
}
.dx-slideoutview-shield {
position: absolute;
top: 0;
height: 100%;
width: 100%;
z-index: 1;
}
.dx-device-android .dx-slideoutview-content {
backface-visibility: hidden;
}