ant-design/components/drawer/style/drawer.less

199 lines
3.9 KiB
Plaintext
Raw Normal View History

2018-12-07 20:02:01 +08:00
@import '../../style/themes/default';
2018-05-25 15:10:45 +08:00
// Preserve the typo for compatibility
// https://github.com/ant-design/ant-design/issues/14628
2018-12-07 20:02:01 +08:00
@dawer-prefix-cls: ~'@{ant-prefix}-drawer';
2018-05-23 10:56:37 +08:00
@drawer-prefix-cls: @dawer-prefix-cls;
.@{drawer-prefix-cls} {
2018-05-23 10:56:37 +08:00
position: fixed;
top: 0;
z-index: @zindex-modal;
width: 0%;
2018-08-10 16:47:44 +08:00
height: 100%;
2018-07-20 13:31:30 +08:00
> * {
transition: transform @animation-duration-slow @ease-base-in,
box-shadow @animation-duration-slow @ease-base-in;
2018-05-23 18:23:07 +08:00
}
2018-05-23 10:56:37 +08:00
&-content-wrapper {
position: fixed;
}
.@{drawer-prefix-cls}-content {
width: 100%;
height: 100%;
2018-05-23 10:56:37 +08:00
}
&-left,
&-right {
width: 0%;
height: 100%;
.@{drawer-prefix-cls}-content-wrapper {
2018-05-23 10:56:37 +08:00
height: 100%;
}
&.@{drawer-prefix-cls}-open {
width: 100%;
}
&.@{drawer-prefix-cls}-open.no-mask {
width: 0%;
}
2018-05-23 10:56:37 +08:00
}
&-left {
&.@{drawer-prefix-cls}-open {
.@{drawer-prefix-cls}-content-wrapper {
2018-07-20 16:02:42 +08:00
box-shadow: @shadow-1-right;
2018-05-23 10:56:37 +08:00
}
}
}
&-right {
.@{drawer-prefix-cls} {
2018-05-23 10:56:37 +08:00
&-content-wrapper {
right: 0;
}
}
&.@{drawer-prefix-cls}-open {
.@{drawer-prefix-cls}-content-wrapper {
2018-07-20 16:02:42 +08:00
box-shadow: @shadow-1-left;
2018-05-23 10:56:37 +08:00
}
}
}
&-top,
&-bottom {
2018-08-10 16:47:44 +08:00
width: 100%;
height: 0%;
.@{drawer-prefix-cls}-content-wrapper {
width: 100%;
2018-05-23 10:56:37 +08:00
}
&.@{drawer-prefix-cls}-open {
2018-08-10 16:47:44 +08:00
height: 100%;
}
&.@{drawer-prefix-cls}-open.no-mask {
height: 0%;
}
}
&-top {
&.@{drawer-prefix-cls}-open {
.@{drawer-prefix-cls}-content-wrapper {
box-shadow: @shadow-1-down;
}
}
}
&-bottom {
.@{drawer-prefix-cls} {
&-content-wrapper {
bottom: 0;
}
}
&.@{drawer-prefix-cls}-open {
.@{drawer-prefix-cls}-content-wrapper {
box-shadow: @shadow-1-up;
}
}
}
&.@{drawer-prefix-cls}-open {
.@{drawer-prefix-cls} {
2018-05-23 10:56:37 +08:00
&-mask {
height: 100%;
opacity: 0.3;
transition: none;
animation: antdDrawerFadeIn @animation-duration-slow @ease-base-out;
2018-05-23 10:56:37 +08:00
}
}
}
&-title {
margin: 0;
color: @heading-color;
font-weight: 500;
2018-05-23 10:56:37 +08:00
font-size: @font-size-lg;
line-height: 22px;
}
&-content {
position: relative;
z-index: 1;
2018-05-23 10:56:37 +08:00
background-color: @component-background;
background-clip: padding-box;
border: 0;
2018-05-23 10:56:37 +08:00
}
&-close {
position: absolute;
top: 0;
right: 0;
z-index: @zindex-popup-close;
display: block;
width: 56px;
height: 56px;
padding: 0;
color: @text-color-secondary;
font-weight: 700;
font-size: @font-size-lg;
font-style: normal;
line-height: 56px;
text-align: center;
text-transform: none;
text-decoration: none;
background: transparent;
border: 0;
outline: 0;
cursor: pointer;
transition: color @animation-duration-slow;
text-rendering: auto;
2018-05-23 10:56:37 +08:00
&:focus,
&:hover {
color: @icon-color-hover;
2018-05-23 10:56:37 +08:00
text-decoration: none;
}
}
&-header {
position: relative;
2019-03-01 11:17:54 +08:00
padding: @drawer-header-padding;
2018-05-23 10:56:37 +08:00
color: @text-color;
background: @component-background;
2018-05-23 10:56:37 +08:00
border-bottom: @border-width-base @border-style-base @border-color-split;
border-radius: @border-radius-base @border-radius-base 0 0;
2018-05-23 10:56:37 +08:00
}
&-header-no-title {
color: @text-color;
background: @component-background;
}
2018-05-23 10:56:37 +08:00
&-body {
2019-03-01 11:17:54 +08:00
padding: @drawer-body-padding;
2018-05-23 10:56:37 +08:00
font-size: @font-size-base;
line-height: @line-height-base;
word-wrap: break-word;
}
&-mask {
position: fixed;
width: 100%;
height: 0;
2018-06-28 16:17:22 +08:00
background-color: @modal-mask-bg;
opacity: 0;
2018-12-07 20:02:01 +08:00
filter: ~'alpha(opacity=50)';
transition: opacity @animation-duration-slow linear, height 0s ease @animation-duration-slow;
2018-05-23 10:56:37 +08:00
}
&-open {
transition: transform @animation-duration-slow @ease-base-out;
&-content {
box-shadow: @shadow-2;
}
2018-05-23 10:56:37 +08:00
}
}
@keyframes antdDrawerFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 0.3;
}
}