iview/src/styles/components/drawer.less

96 lines
1.6 KiB
Text
Raw Normal View History

2018-08-23 15:01:13 +08:00
@drawer-prefix-cls: ~"@{css-prefix}drawer";
.@{drawer-prefix-cls} {
2018-08-24 11:49:02 +08:00
width: auto;
height: 100%;
position: fixed;
top: 0;
2018-08-23 15:01:13 +08:00
2018-08-24 12:03:52 +08:00
&-inner{
position: absolute;
}
2018-08-24 11:49:02 +08:00
&-left{
left: 0;
}
&-right{
right: 0;
}
&-hidden {
display: none !important;
}
&-wrap {
position: fixed;
overflow: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: @zindex-drawer;
-webkit-overflow-scrolling: touch;
outline: 0;
2018-08-24 12:03:52 +08:00
&-inner{
position: absolute;
2019-01-08 09:29:46 +08:00
overflow: hidden;
2018-08-24 12:03:52 +08:00
}
2018-08-24 11:49:02 +08:00
}
&-wrap * {
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
&-mask {
.mask;
2018-08-24 12:03:52 +08:00
&-inner{
position: absolute;
}
2018-08-24 11:49:02 +08:00
}
&-content {
width: 100%;
height: 100%;
position: absolute;
top: 0;
bottom: 0;
background-color: #fff;
border: 0;
background-clip: padding-box;
box-shadow: 0 4px 12px rgba(0,0,0,.15);
&-no-mask{
pointer-events: auto;
}
}
&-header {
.content-header;
}
&-close {
z-index: 1;
.content-close(1px, 31px);
}
&-body {
width: 100%;
height: calc(~'100% - 51px');
padding: 16px;
font-size: 12px;
line-height: 1.5;
word-wrap: break-word;
position: absolute;
overflow: auto;
}
&-no-header &-body{
height: 100%;
}
&-no-mask{
pointer-events: none;
}
2018-08-23 15:01:13 +08:00
}