2019-05-06 12:04:39 +08:00
|
|
|
@import '../../style/themes/index';
|
2018-05-25 15:10:45 +08:00
|
|
|
|
2019-12-31 11:54:39 +08:00
|
|
|
@drawer-prefix-cls: ~'@{ant-prefix}-drawer';
|
2020-01-03 19:00:01 +08:00
|
|
|
@picker-prefix-cls: ~'@{ant-prefix}-picker';
|
2019-01-30 10:23:32 +08:00
|
|
|
|
|
|
|
.@{drawer-prefix-cls} {
|
2020-12-25 14:31:44 +08:00
|
|
|
@drawer-header-close-padding: ceil(((@drawer-header-close-size - @font-size-lg) / 2));
|
2020-03-29 14:40:29 +08:00
|
|
|
|
2018-05-23 10:56:37 +08:00
|
|
|
position: fixed;
|
2019-02-15 10:48:07 +08:00
|
|
|
z-index: @zindex-modal;
|
2018-08-18 12:34:40 +08:00
|
|
|
width: 0%;
|
2018-08-10 16:47:44 +08:00
|
|
|
height: 100%;
|
2019-09-03 16:36:10 +08:00
|
|
|
transition: transform @animation-duration-slow @ease-base-out,
|
|
|
|
height 0s ease @animation-duration-slow, width 0s ease @animation-duration-slow;
|
2018-07-20 13:31:30 +08:00
|
|
|
> * {
|
2019-07-17 19:55:59 +08:00
|
|
|
transition: transform @animation-duration-slow @ease-base-out,
|
|
|
|
box-shadow @animation-duration-slow @ease-base-out;
|
2018-05-23 18:23:07 +08:00
|
|
|
}
|
|
|
|
|
2018-05-23 10:56:37 +08:00
|
|
|
&-content-wrapper {
|
2019-08-10 14:02:51 +08:00
|
|
|
position: absolute;
|
2020-05-12 17:39:59 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-08-18 12:34:40 +08:00
|
|
|
}
|
2020-05-12 17:39:59 +08:00
|
|
|
|
2019-01-30 10:23:32 +08:00
|
|
|
.@{drawer-prefix-cls}-content {
|
2018-08-18 12:34:40 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-05-23 10:56:37 +08:00
|
|
|
}
|
2019-04-28 14:03:07 +08:00
|
|
|
|
2018-05-23 10:56:37 +08:00
|
|
|
&-left,
|
|
|
|
&-right {
|
2019-04-28 14:03:07 +08:00
|
|
|
top: 0;
|
2018-08-18 12:34:40 +08:00
|
|
|
width: 0%;
|
|
|
|
height: 100%;
|
2019-01-30 10:23:32 +08:00
|
|
|
.@{drawer-prefix-cls}-content-wrapper {
|
2018-05-23 10:56:37 +08:00
|
|
|
height: 100%;
|
|
|
|
}
|
2019-01-30 10:23:32 +08:00
|
|
|
&.@{drawer-prefix-cls}-open {
|
2018-08-18 12:34:40 +08:00
|
|
|
width: 100%;
|
2019-08-10 14:02:51 +08:00
|
|
|
transition: transform @animation-duration-slow @ease-base-out;
|
2018-08-18 12:34:40 +08:00
|
|
|
}
|
2018-05-23 10:56:37 +08:00
|
|
|
}
|
2019-04-28 14:03:07 +08:00
|
|
|
|
2018-05-23 10:56:37 +08:00
|
|
|
&-left {
|
2020-01-02 19:10:16 +08:00
|
|
|
left: 0;
|
|
|
|
|
|
|
|
.@{drawer-prefix-cls} {
|
|
|
|
&-content-wrapper {
|
|
|
|
left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-30 10:23:32 +08:00
|
|
|
&.@{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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-28 14:03:07 +08:00
|
|
|
|
2018-05-23 10:56:37 +08:00
|
|
|
&-right {
|
2019-04-28 14:03:07 +08:00
|
|
|
right: 0;
|
|
|
|
|
2019-01-30 10:23:32 +08:00
|
|
|
.@{drawer-prefix-cls} {
|
2018-05-23 10:56:37 +08:00
|
|
|
&-content-wrapper {
|
|
|
|
right: 0;
|
|
|
|
}
|
|
|
|
}
|
2019-01-30 10:23:32 +08:00
|
|
|
&.@{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
|
|
|
}
|
2019-09-03 16:36:10 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/18607, Avoid edge alignment bug.
|
|
|
|
&.no-mask {
|
|
|
|
right: 1px;
|
|
|
|
transform: translateX(1px);
|
|
|
|
}
|
2018-05-23 10:56:37 +08:00
|
|
|
}
|
|
|
|
}
|
2018-08-18 12:34:40 +08:00
|
|
|
|
|
|
|
&-top,
|
|
|
|
&-bottom {
|
2019-04-28 14:03:07 +08:00
|
|
|
left: 0;
|
2018-08-10 16:47:44 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 0%;
|
2019-04-28 14:03:07 +08:00
|
|
|
|
2019-01-30 10:23:32 +08:00
|
|
|
.@{drawer-prefix-cls}-content-wrapper {
|
2018-08-18 12:34:40 +08:00
|
|
|
width: 100%;
|
2018-05-23 10:56:37 +08:00
|
|
|
}
|
2019-01-30 10:23:32 +08:00
|
|
|
&.@{drawer-prefix-cls}-open {
|
2018-08-10 16:47:44 +08:00
|
|
|
height: 100%;
|
2019-08-10 14:02:51 +08:00
|
|
|
transition: transform @animation-duration-slow @ease-base-out;
|
2018-08-10 16:47:44 +08:00
|
|
|
}
|
2018-08-18 12:34:40 +08:00
|
|
|
}
|
2019-04-28 14:03:07 +08:00
|
|
|
|
2018-08-18 12:34:40 +08:00
|
|
|
&-top {
|
2019-04-28 14:03:07 +08:00
|
|
|
top: 0;
|
|
|
|
|
2019-01-30 10:23:32 +08:00
|
|
|
&.@{drawer-prefix-cls}-open {
|
|
|
|
.@{drawer-prefix-cls}-content-wrapper {
|
2018-08-18 12:34:40 +08:00
|
|
|
box-shadow: @shadow-1-down;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-04-28 14:03:07 +08:00
|
|
|
|
2018-08-18 12:34:40 +08:00
|
|
|
&-bottom {
|
2019-04-28 14:03:07 +08:00
|
|
|
bottom: 0;
|
|
|
|
|
2019-01-30 10:23:32 +08:00
|
|
|
.@{drawer-prefix-cls} {
|
2018-08-18 12:34:40 +08:00
|
|
|
&-content-wrapper {
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
2019-01-30 10:23:32 +08:00
|
|
|
&.@{drawer-prefix-cls}-open {
|
|
|
|
.@{drawer-prefix-cls}-content-wrapper {
|
2018-08-18 12:34:40 +08:00
|
|
|
box-shadow: @shadow-1-up;
|
|
|
|
}
|
2019-09-03 16:36:10 +08:00
|
|
|
&.no-mask {
|
|
|
|
bottom: 1px;
|
|
|
|
transform: translateY(1px);
|
|
|
|
}
|
2018-08-18 12:34:40 +08:00
|
|
|
}
|
|
|
|
}
|
2019-04-28 14:03:07 +08:00
|
|
|
|
2020-06-30 19:30:44 +08:00
|
|
|
&.@{drawer-prefix-cls}-open .@{drawer-prefix-cls}-mask {
|
|
|
|
height: 100%;
|
|
|
|
opacity: 1;
|
|
|
|
transition: none;
|
|
|
|
animation: antdDrawerFadeIn @animation-duration-slow @ease-base-out;
|
|
|
|
pointer-events: auto;
|
2018-05-23 10:56:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-title {
|
|
|
|
margin: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
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;
|
2019-02-15 10:48:07 +08:00
|
|
|
z-index: 1;
|
2019-11-06 10:47:36 +08:00
|
|
|
overflow: auto;
|
2019-11-25 18:59:52 +08:00
|
|
|
background-color: @drawer-bg;
|
2018-05-23 10:56:37 +08:00
|
|
|
background-clip: padding-box;
|
2019-02-15 10:48:07 +08:00
|
|
|
border: 0;
|
2018-05-23 10:56:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-close {
|
2021-06-11 08:39:17 +08:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 12px;
|
2020-05-11 20:08:46 +08:00
|
|
|
color: @modal-close-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-weight: 700;
|
|
|
|
font-size: @font-size-lg;
|
2019-01-02 13:53:19 +08:00
|
|
|
font-style: normal;
|
2020-03-29 12:38:12 +08:00
|
|
|
line-height: 1;
|
2019-01-02 13:53:19 +08:00
|
|
|
text-align: center;
|
|
|
|
text-transform: none;
|
2019-02-15 10:48:07 +08:00
|
|
|
text-decoration: none;
|
|
|
|
background: transparent;
|
|
|
|
border: 0;
|
|
|
|
outline: 0;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: color @animation-duration-slow;
|
2019-01-02 13:53:19 +08:00
|
|
|
text-rendering: auto;
|
2018-05-23 10:56:37 +08:00
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover {
|
2018-12-04 13:11:31 +08:00
|
|
|
color: @icon-color-hover;
|
2018-05-23 10:56:37 +08:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-header {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: relative;
|
2021-06-11 08:39:17 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2019-03-01 11:17:54 +08:00
|
|
|
padding: @drawer-header-padding;
|
2018-05-23 10:56:37 +08:00
|
|
|
color: @text-color;
|
2019-11-25 18:59:52 +08:00
|
|
|
background: @drawer-bg;
|
2018-05-23 10:56:37 +08:00
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: @border-radius-base @border-radius-base 0 0;
|
2018-05-23 10:56:37 +08:00
|
|
|
|
2021-06-11 08:39:17 +08:00
|
|
|
&-title {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-close-only {
|
|
|
|
padding-bottom: 0;
|
|
|
|
border: none;
|
|
|
|
}
|
2019-01-10 23:10:57 +08:00
|
|
|
}
|
|
|
|
|
2020-01-06 14:56:00 +08:00
|
|
|
&-wrapper-body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
flex-wrap: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2018-05-23 10:56:37 +08:00
|
|
|
&-body {
|
2020-01-06 14:56:00 +08:00
|
|
|
flex-grow: 1;
|
2019-03-01 11:17:54 +08:00
|
|
|
padding: @drawer-body-padding;
|
2020-01-06 14:56:00 +08:00
|
|
|
overflow: auto;
|
2018-05-23 10:56:37 +08:00
|
|
|
font-size: @font-size-base;
|
|
|
|
line-height: @line-height-base;
|
|
|
|
word-wrap: break-word;
|
|
|
|
}
|
2020-01-06 14:56:00 +08:00
|
|
|
|
|
|
|
&-footer {
|
|
|
|
flex-shrink: 0;
|
2021-01-21 23:13:14 +08:00
|
|
|
padding: @drawer-footer-padding-vertical @drawer-footer-padding-horizontal;
|
2020-01-06 14:56:00 +08:00
|
|
|
border-top: @border-width-base @border-style-base @border-color-split;
|
2019-11-15 17:23:14 +08:00
|
|
|
}
|
2018-05-23 10:56:37 +08:00
|
|
|
|
|
|
|
&-mask {
|
2019-08-10 14:02:51 +08:00
|
|
|
position: absolute;
|
2019-05-20 12:05:46 +08:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2018-08-18 12:34:40 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 0;
|
2018-06-28 16:17:22 +08:00
|
|
|
background-color: @modal-mask-bg;
|
2019-05-17 11:31:43 +08:00
|
|
|
opacity: 0;
|
2019-07-29 15:57:05 +08:00
|
|
|
filter: ~'alpha(opacity=45)';
|
2018-08-18 12:34:40 +08:00
|
|
|
transition: opacity @animation-duration-slow linear, height 0s ease @animation-duration-slow;
|
2020-06-30 19:30:44 +08:00
|
|
|
pointer-events: none;
|
2018-05-23 10:56:37 +08:00
|
|
|
}
|
2020-06-30 19:30:44 +08:00
|
|
|
|
2018-05-23 10:56:37 +08:00
|
|
|
&-open {
|
2018-07-10 21:17:19 +08:00
|
|
|
&-content {
|
|
|
|
box-shadow: @shadow-2;
|
|
|
|
}
|
2018-05-23 10:56:37 +08:00
|
|
|
}
|
2020-01-03 19:00:01 +08:00
|
|
|
|
|
|
|
// =================== Hook Components ===================
|
|
|
|
.@{picker-prefix-cls} {
|
|
|
|
&-clear {
|
|
|
|
background: @popover-background;
|
|
|
|
}
|
|
|
|
}
|
2018-05-23 10:56:37 +08:00
|
|
|
}
|
2018-08-18 12:34:40 +08:00
|
|
|
|
|
|
|
@keyframes antdDrawerFadeIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
2019-07-29 15:57:05 +08:00
|
|
|
opacity: 1;
|
2018-08-18 12:34:40 +08:00
|
|
|
}
|
|
|
|
}
|