mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
785c132262
* 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 * ✅ Add test cases for hr_HR * 📝 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
246 lines
5.8 KiB
Plaintext
246 lines
5.8 KiB
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@dropdown-prefix-cls: ~'@{ant-prefix}-dropdown';
|
|
|
|
.@{dropdown-prefix-cls} {
|
|
.reset-component;
|
|
|
|
position: absolute;
|
|
top: -9999px;
|
|
left: -9999px;
|
|
z-index: @zindex-dropdown;
|
|
display: block;
|
|
|
|
&::before {
|
|
position: absolute;
|
|
top: -7px;
|
|
right: 0;
|
|
bottom: -7px;
|
|
left: -7px;
|
|
z-index: -9999;
|
|
opacity: 0.0001;
|
|
content: ' ';
|
|
}
|
|
|
|
&-wrap {
|
|
position: relative;
|
|
|
|
.@{ant-prefix}-btn > .@{iconfont-css-prefix}-down {
|
|
.iconfont-size-under-12px(10px);
|
|
}
|
|
|
|
.@{iconfont-css-prefix}-down::before {
|
|
transition: transform 0.2s;
|
|
}
|
|
}
|
|
|
|
&-wrap-open {
|
|
.@{iconfont-css-prefix}-down::before {
|
|
transform: rotate(180deg);
|
|
}
|
|
}
|
|
|
|
&-hidden,
|
|
&-menu-hidden {
|
|
display: none;
|
|
}
|
|
|
|
&-menu {
|
|
position: relative;
|
|
margin: 0;
|
|
padding: 4px 0;
|
|
text-align: left;
|
|
list-style-type: none;
|
|
background-color: @component-background;
|
|
background-clip: padding-box;
|
|
border-radius: @border-radius-base;
|
|
outline: none;
|
|
box-shadow: @box-shadow-base;
|
|
-webkit-transform: translate3d(0, 0, 0);
|
|
|
|
&-item-group-title {
|
|
padding: 5px @control-padding-horizontal;
|
|
color: @text-color-secondary;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
&-submenu-popup {
|
|
position: absolute;
|
|
z-index: @zindex-dropdown;
|
|
|
|
> .@{dropdown-prefix-cls}-menu {
|
|
transform-origin: 0 0;
|
|
}
|
|
}
|
|
|
|
&-item,
|
|
&-submenu-title {
|
|
clear: both;
|
|
margin: 0;
|
|
padding: 5px @control-padding-horizontal;
|
|
color: @text-color;
|
|
font-weight: normal;
|
|
font-size: @font-size-base;
|
|
line-height: 22px;
|
|
white-space: nowrap;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
|
|
> .anticon:first-child {
|
|
min-width: 12px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
> a {
|
|
display: block;
|
|
margin: -5px -@control-padding-horizontal;
|
|
padding: 5px @control-padding-horizontal;
|
|
color: @text-color;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
&-selected,
|
|
&-selected > a {
|
|
color: @primary-color;
|
|
background-color: @item-active-bg;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: @item-hover-bg;
|
|
}
|
|
|
|
&-disabled {
|
|
color: @disabled-color;
|
|
cursor: not-allowed;
|
|
|
|
&:hover {
|
|
color: @disabled-color;
|
|
background-color: @component-background;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
&-divider {
|
|
height: 1px;
|
|
margin: 4px 0;
|
|
overflow: hidden;
|
|
line-height: 0;
|
|
background-color: @border-color-split;
|
|
}
|
|
.@{dropdown-prefix-cls}-menu-submenu-arrow {
|
|
position: absolute;
|
|
right: @padding-xs;
|
|
&-icon {
|
|
color: @text-color-secondary;
|
|
font-style: normal;
|
|
.iconfont-size-under-12px(10px);
|
|
}
|
|
}
|
|
}
|
|
|
|
&-submenu-title {
|
|
padding-right: 26px;
|
|
}
|
|
|
|
&-submenu-vertical {
|
|
position: relative;
|
|
}
|
|
|
|
&-submenu-vertical > & {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 100%;
|
|
min-width: 100%;
|
|
margin-left: 4px;
|
|
transform-origin: 0 0;
|
|
}
|
|
|
|
&-submenu&-submenu-disabled .@{dropdown-prefix-cls}-menu-submenu-title {
|
|
&,
|
|
.@{dropdown-prefix-cls}-menu-submenu-arrow-icon {
|
|
color: @disabled-color;
|
|
background-color: @component-background;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.slide-down-enter.slide-down-enter-active&-placement-bottomLeft,
|
|
&.slide-down-appear.slide-down-appear-active&-placement-bottomLeft,
|
|
&.slide-down-enter.slide-down-enter-active&-placement-bottomCenter,
|
|
&.slide-down-appear.slide-down-appear-active&-placement-bottomCenter,
|
|
&.slide-down-enter.slide-down-enter-active&-placement-bottomRight,
|
|
&.slide-down-appear.slide-down-appear-active&-placement-bottomRight {
|
|
animation-name: antSlideUpIn;
|
|
}
|
|
|
|
&.slide-up-enter.slide-up-enter-active&-placement-topLeft,
|
|
&.slide-up-appear.slide-up-appear-active&-placement-topLeft,
|
|
&.slide-up-enter.slide-up-enter-active&-placement-topCenter,
|
|
&.slide-up-appear.slide-up-appear-active&-placement-topCenter,
|
|
&.slide-up-enter.slide-up-enter-active&-placement-topRight,
|
|
&.slide-up-appear.slide-up-appear-active&-placement-topRight {
|
|
animation-name: antSlideDownIn;
|
|
}
|
|
|
|
&.slide-down-leave.slide-down-leave-active&-placement-bottomLeft,
|
|
&.slide-down-leave.slide-down-leave-active&-placement-bottomCenter,
|
|
&.slide-down-leave.slide-down-leave-active&-placement-bottomRight {
|
|
animation-name: antSlideUpOut;
|
|
}
|
|
|
|
&.slide-up-leave.slide-up-leave-active&-placement-topLeft,
|
|
&.slide-up-leave.slide-up-leave-active&-placement-topCenter,
|
|
&.slide-up-leave.slide-up-leave-active&-placement-topRight {
|
|
animation-name: antSlideDownOut;
|
|
}
|
|
}
|
|
|
|
.@{dropdown-prefix-cls}-trigger,
|
|
.@{dropdown-prefix-cls}-link {
|
|
> .@{iconfont-css-prefix}.@{iconfont-css-prefix}-down {
|
|
.iconfont-size-under-12px(10px);
|
|
}
|
|
}
|
|
|
|
.@{dropdown-prefix-cls}-button {
|
|
white-space: nowrap;
|
|
|
|
&.@{ant-prefix}-btn-group > .@{ant-prefix}-btn:last-child:not(:first-child) {
|
|
padding-right: @padding-xs;
|
|
padding-left: @padding-xs;
|
|
}
|
|
.@{iconfont-css-prefix}.@{iconfont-css-prefix}-down {
|
|
.iconfont-size-under-12px(10px);
|
|
}
|
|
}
|
|
|
|
// https://github.com/ant-design/ant-design/issues/4903
|
|
.@{dropdown-prefix-cls}-menu-dark {
|
|
&,
|
|
.@{dropdown-prefix-cls}-menu {
|
|
background: @menu-dark-bg;
|
|
}
|
|
.@{dropdown-prefix-cls}-menu-item,
|
|
.@{dropdown-prefix-cls}-menu-submenu-title,
|
|
.@{dropdown-prefix-cls}-menu-item > a {
|
|
color: @text-color-secondary-dark;
|
|
.@{dropdown-prefix-cls}-menu-submenu-arrow::after {
|
|
color: @text-color-secondary-dark;
|
|
}
|
|
&:hover {
|
|
color: @text-color-inverse;
|
|
background: transparent;
|
|
}
|
|
}
|
|
.@{dropdown-prefix-cls}-menu-item-selected {
|
|
&,
|
|
&:hover,
|
|
> a {
|
|
color: @text-color-inverse;
|
|
background: @primary-color;
|
|
}
|
|
}
|
|
}
|