amis/scss/components/_drawer.scss
吴多益 33686a375e
SCSS 基于 CSS custom properties 重构,支持通过配置来控制展现风格 (#1190)
* 使用自定义 css 属性初步,支持大部分组件的展现

* button 大部分可以看了

* cxd 和 dark 大部分正常

* 修复一些细节样式错误;补充 css 变量的文档

* 修复几个脚本发现的错误

* 完善一下注释

* 修复一些样式不一致问题

* 修复可能存在的 css xss

* 恢复 font-variant 功能

* 修复绝大部分 @if 相关的问题

* 恢复之前的注释

* 修复小错误,并将所有 background-color 改成 background,这样就能设置渐变色

* 修复 button group 在 cxd 下不一致问题

* 缩小查看配置和复制配置的宽度,留出更多空间

* 修复一些潜在的错误

* 恢复 utilities 中 label 背景色的设置

* 修复错误的 css 变量

* 补充 IE11 Variables Polyfill
2020-12-21 10:08:40 +08:00

347 lines
6.9 KiB
SCSS

.#{$ns}Drawer {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: $zindex-modal;
overflow: hidden;
outline: 0;
&-content {
position: absolute;
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
pointer-events: auto;
background: var(--Drawer-bg);
background-clip: padding-box;
outline: 0;
z-index: 2;
border: var(--Drawer-content-borderWidth) solid
var(--Drawer-content-borderColor);
border-radius: var(--Drawer-content-borderRadius);
transition: transform ease-in-out 0.3s;
}
&-overlay {
transition: ease-out opacity 0.3s;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
background: var(--Drawer-overlay-bg);
opacity: 0;
&.in {
opacity: 1;
}
}
&-header {
padding: var(--Drawer-header-padding);
background: var(--Drawer-header-bg);
@include clearfix();
border-bottom: var(--Drawer-content-borderWidth) solid
var(--Drawer-header-borderColor);
border-top-left-radius: var(--Drawer-content-borderRadius);
border-top-right-radius: var(--Drawer-content-borderRadius);
}
&-title {
font-size: var(--Drawer-title-fontSize);
color: var(--Drawer-title-fontColor);
}
&-close {
position: absolute;
color: var(--Drawer-close-color);
line-height: 1;
text-decoration: none;
svg {
width: 30px;
height: 30px;
fill: var(--Drawer-close-color);
}
&:not(.is-disabled) {
cursor: pointer;
&:hover {
text-decoration: none;
color: var(--Drawer-close-onHover-color);
svg {
fill: var(--Drawer-close-onHover-color);
}
}
}
}
&-body {
padding: var(--Drawer-body-padding);
flex-basis: 0;
flex-grow: 1;
overflow: auto;
}
&-footer {
display: flex;
align-items: flex-end;
justify-content: flex-end;
padding: var(--Drawer-footer-padding);
border-top: var(--Drawer-content-borderWidth) solid
var(--Drawer-footer-borderColor);
border-bottom-left-radius: var(--Drawer-content-borderRadius);
border-bottom-right-radius: var(--Drawer-content-borderRadius);
.#{$ns}Button {
margin-left: var(--gap-xs);
}
.#{$ns}Drawer-info {
flex-basis: 0;
flex-grow: 1;
text-align: left;
align-self: center;
}
.#{$ns}Drawer-error {
color: var(--danger);
}
}
&.#{$ns}Drawer--noOverlay {
pointer-events: none;
.#{$ns}Drawer-close svg {
margin-top: px2rem(2px);
width: px2rem(20px);
height: px2rem(20px);
fill: #99a6ad;
}
}
.#{$ns}Drawer-resizeCtrl {
position: absolute;
border: var(--borderWidth) solid var(--borderColor);
background: var(--white);
border-radius: var(--borderRadius);
font-size: var(--fontSizeSm);
line-height: px2rem(10px);
text-align: center;
user-select: none;
}
}
// size
@include media-breakpoint-up(sm) {
.#{$ns}Drawer .#{$ns}Drawer-content {
width: var(--Drawer-widthBase);
height: var(--Drawer-widthBase);
}
.#{$ns}Drawer--xs .#{$ns}Drawer-content {
width: var(--Drawer-widthXs);
height: var(--Drawer-widthXs);
}
.#{$ns}Drawer--sm .#{$ns}Drawer-content {
width: var(--Drawer-widthSm);
height: var(--Drawer-widthSm);
}
.#{$ns}Drawer--md .#{$ns}Drawer-content {
width: var(--Drawer-widthMd);
height: var(--Drawer-widthMd);
}
.#{$ns}Drawer--lg .#{$ns}Drawer-content {
width: var(--Drawer-widthLg);
height: var(--Drawer-widthLg);
}
.#{$ns}Drawer--xl .#{$ns}Drawer-content {
width: var(--Drawer-widthXl);
height: var(--Drawer-widthXl);
}
}
// positons
.#{$ns}Drawer--top .#{$ns}Drawer-content.in,
.#{$ns}Drawer--right .#{$ns}Drawer-content.in,
.#{$ns}Drawer--bottom .#{$ns}Drawer-content.in,
.#{$ns}Drawer--left .#{$ns}Drawer-content.in {
transform: translate3d(0, 0, 0);
}
.#{$ns}Drawer--top {
.#{$ns}Drawer-close {
top: 100%;
margin-top: var(--gap-sm);
left: var(--gap-sm);
}
&.#{$ns}Drawer--noOverlay {
.#{$ns}Drawer-close {
top: var(--gap-base);
right: var(--gap-base);
left: auto;
margin-top: 0;
}
}
.#{$ns}Drawer-content {
top: 0;
bottom: auto;
left: 0;
right: 0;
width: 100%;
transform: translate3d(0, -100%, 0);
box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.2);
min-height: 120px;
}
.#{$ns}Drawer-resizeCtrl {
bottom: px2rem(-6px);
left: 50%;
cursor: ns-resize;
width: px2rem(24px);
height: px2rem(12px);
}
}
.#{$ns}Drawer--right {
.#{$ns}Drawer-close {
right: 100%;
margin-right: var(--gap-sm);
top: var(--gap-sm);
}
&.#{$ns}Drawer--noOverlay {
.#{$ns}Drawer-close {
top: var(--gap-base);
right: var(--gap-base);
margin-right: 0;
}
}
.#{$ns}Drawer-content {
top: 0;
bottom: 0;
left: auto;
right: 0;
height: 100%;
transform: translate3d(100%, 0, 0);
box-shadow: -10px 0 10px -10px rgba(0, 0, 0, 0.2);
min-width: 120px;
}
.#{$ns}Drawer-footer {
justify-content: flex-start;
.#{$ns}Button {
margin-left: 0;
margin-right: var(--gap-xs);
}
.#{$ns}Drawer-info {
flex-basis: 0;
flex-grow: 1;
order: 10;
align-self: center;
text-align: right;
}
.#{$ns}Drawer-error {
color: var(--danger);
}
}
.#{$ns}Drawer-resizeCtrl {
left: px2rem(-6px);
top: 50%;
cursor: ew-resize;
writing-mode: vertical-lr;
width: px2rem(12px);
height: px2rem(24px);
}
}
.#{$ns}Drawer--bottom {
.#{$ns}Drawer-close {
bottom: 100%;
margin-bottom: var(--gap-sm);
left: var(--gap-sm);
}
&.#{$ns}Drawer--noOverlay {
.#{$ns}Drawer-close {
top: var(--gap-base);
right: var(--gap-base);
left: auto;
margin-bottom: 0;
}
}
.#{$ns}Drawer-content {
top: auto;
bottom: 0;
left: 0;
right: 0;
width: 100%;
transform: translate3d(0, 100%, 0);
box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.2);
min-height: 120px;
}
.#{$ns}Drawer-resizeCtrl {
top: px2rem(-6px);
left: 50%;
cursor: ns-resize;
width: px2rem(24px);
height: px2rem(12px);
}
}
.#{$ns}Drawer--left {
.#{$ns}Drawer-close {
left: 100%;
margin-left: var(--gap-sm);
top: var(--gap-sm);
}
&.#{$ns}Drawer--noOverlay {
.#{$ns}Drawer-close {
left: auto;
right: var(--gap-base);
top: var(--gap-base);
}
}
.#{$ns}Drawer-content {
top: 0;
bottom: 0;
right: auto;
left: 0;
height: 100%;
transform: translate3d(-100%, 0, 0);
box-shadow: 10px 0 10px -10px rgba(0, 0, 0, 0.2);
border-width: 0 var(--Drawer-content-borderWidth) 0 0;
min-width: 120px;
}
.#{$ns}Drawer-resizeCtrl {
right: px2rem(-6px);
top: 50%;
cursor: ew-resize;
writing-mode: vertical-lr;
width: px2rem(12px);
height: px2rem(24px);
}
}