naive-ui/styles/Drawer.scss

56 lines
1.3 KiB
SCSS
Raw Normal View History

2019-09-04 16:06:07 +08:00
@import './mixins/mixins.scss';
2020-02-11 14:44:29 +08:00
2019-10-22 13:19:12 +08:00
@include themes-mixin {
@include b(drawer) {
2019-12-20 17:16:17 +08:00
@include slide-in-from-right-transition($duration: .3s);
2020-02-08 16:07:25 +08:00
@include slide-in-from-left-transition($duration: .3s);
@include slide-in-from-top-transition($duration: .3s);
@include slide-in-from-bottom-transition($duration: .3s);
@include m(right-placement) {
top: 0;
bottom: 0;
right: 0;
}
@include m(left-placement) {
top: 0;
bottom: 0;
left: 0;
}
@include m(top-placement) {
top: 0;
left: 0;
right: 0;
}
@include m(bottom-placement) {
left: 0;
bottom: 0;
right: 0;
}
padding: 16px 24px;
2019-10-22 13:19:12 +08:00
position: absolute;
2020-02-08 16:07:25 +08:00
pointer-events: all;
2020-02-19 21:08:31 +08:00
background-color: $--n-modal-background-color;
2019-10-22 13:19:12 +08:00
color: $--n-secondary-text-color;
transition: background-color .3s $--n-ease-in-out-cubic-bezier, color .3s $--n-ease-in-out-cubic-bezier;
2019-10-22 13:19:12 +08:00
}
2019-09-04 16:06:07 +08:00
}
@include b(drawer-overlay) {
2020-02-11 14:44:29 +08:00
@include fade-in-transition(drawer-overlay, $enter-duration: .3s, $leave-duration: .3s);
2019-09-04 16:06:07 +08:00
background-color: rgba(0, 0, 0, .3);
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
2020-02-08 16:07:25 +08:00
pointer-events: all;
2019-09-04 16:06:07 +08:00
}
@include b(drawer-container) {
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
2020-02-08 16:07:25 +08:00
pointer-events: none;
2019-09-04 16:06:07 +08:00
}