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

227 lines
4.5 KiB
Plaintext
Raw Normal View History

meger feature to master (#16421) * use ul in list * update snapshot * update comment * feat: TreeSelect support `showSearch` in multiple mode (#15933) * update rc-tree-select * typo * update desc & snapshot * update desc & snapshot * check default showSearch * feat: table customizing variable (#15971) * feat: added table selected row color variable * fix: @table-selected-row-color default is inherit * feat: Upload support customize previewFile (#15984) * support preview file * use promise * dealy load * use canvas of render * use domHook of test * update demo * add snapshot * update types * update testcase * feat: form customizing variables (#15954) * fix: added styling form input background-color * feat: added '@form-warning-input-bg' variable * feat: added '@form-error-input-bg' variable * use li wrap with comment * feat: Support append theme less file with less-variable (#16118) * add override * add override support * update doc * feat: dropdown support set right icon * docs: update doc of dropdown component * style: format dropdown-button.md * test: update updateSnapshot * style: format dropdown-button.md * test: update updateSnapshot * test: update updateSnapshot * style: change style of dropdown-button demo * fix: fix document table order * feat: Support SkeletonAvatarProps.size accept number (#16078) (#16128) * chore:update style of demo * feat: Notification functions accept top, bottom and getContainer as arguments * drawer: add afterVisibleChange * rm onVisibleChange * update * feat: 🇭🇷 hr_HR locale (#16258) * Added Croatian locale * fixed lint error * :white_check_mark: Add test cases for hr_HR * :memo: update i18n documentation * feat: add `htmlFor` in Form.Item (#16278) * add htmlFor in Form.Item * update doc * feat: Button support `link` type (#16289) close #15892 * feat: Add Timeline.Item.position (#16148) (#16193) * fix: Timeline.pendingDot interface documentation there is a small problem (#16177) * feat: Add Timeline.Item.position (#16148) * doc: add version infomation for Timeline.Item.position * refactor: Update Tree & TreeSelect deps (#16330) * use CSSMotion * update snapshot * feat: Collapse support `expandIconPosition` (#16365) * update doc * support expandIconPosition * update snapshot * feat: Breadcrumb support DropDown (#16315) * breadcrumbs support drop down menu * update doc * add require less * fix test * fix md doc * less code * fix style warning * update snap * add children render test * feat: TreeNode support checkable * feat: add optional to support top and left slick dots (#16186) (#16225) * add optional to support top and left slick dots * update carousel snapshot * Update doc, add placement demo * update carousel placement demo snapshots * rename dots placement to position * update vertical as deprecated * rename dotsPosition to dotPosition * refine code * add warning testcase for vertical * remove unused warning * update expression * Additional test case for dotPosition * refactor: Upgrade `rc-tree-select` to support pure React motion (#16402) * upgrade `rc-tree-select` * update snapshot * 3.17.0 changelog * fix warning * fix review warning
2019-05-06 12:04:39 +08:00
@import '../../style/themes/index';
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;
z-index: @zindex-modal;
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
> * {
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 {
position: absolute;
}
.@{drawer-prefix-cls}-content {
width: 100%;
height: 100%;
2018-05-23 10:56:37 +08:00
}
2018-05-23 10:56:37 +08:00
&-left,
&-right {
top: 0;
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%;
transition: transform @animation-duration-slow @ease-base-out;
}
&.@{drawer-prefix-cls}-open.no-mask {
width: 0%;
}
2018-05-23 10:56:37 +08:00
}
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
}
}
}
2018-05-23 10:56:37 +08:00
&-right {
right: 0;
.@{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
}
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
}
}
&-top,
&-bottom {
left: 0;
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%;
transition: transform @animation-duration-slow @ease-base-out;
2018-08-10 16:47:44 +08:00
}
&.@{drawer-prefix-cls}-open.no-mask {
height: 0%;
}
}
&-top {
top: 0;
&.@{drawer-prefix-cls}-open {
.@{drawer-prefix-cls}-content-wrapper {
box-shadow: @shadow-1-down;
}
}
}
&-bottom {
bottom: 0;
.@{drawer-prefix-cls} {
&-content-wrapper {
bottom: 0;
}
}
&.@{drawer-prefix-cls}-open {
.@{drawer-prefix-cls}-content-wrapper {
box-shadow: @shadow-1-up;
}
2019-09-03 16:36:10 +08:00
&.no-mask {
bottom: 1px;
transform: translateY(1px);
}
}
}
&.@{drawer-prefix-cls}-open {
.@{drawer-prefix-cls} {
2018-05-23 10:56:37 +08:00
&-mask {
height: 100%;
opacity: 1;
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;
overflow: auto;
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: absolute;
2019-05-20 12:05:46 +08:00
top: 0;
left: 0;
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;
filter: ~'alpha(opacity=45)';
transition: opacity @animation-duration-slow linear, height 0s ease @animation-duration-slow;
2018-05-23 10:56:37 +08:00
}
&-open {
&-content {
box-shadow: @shadow-2;
}
2018-05-23 10:56:37 +08:00
}
}
@keyframes antdDrawerFadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}