ant-design/components/cascader/style/index.less

219 lines
4.9 KiB
Plaintext
Raw Normal View History

2018-12-07 16:17:45 +08:00
@import '../../style/themes/default';
@import '../../style/mixins/index';
@import '../../input/style/mixin';
2018-12-07 16:17:45 +08:00
@cascader-prefix-cls: ~'@{ant-prefix}-cascader';
2015-12-29 22:34:23 +08:00
.@{cascader-prefix-cls} {
.reset-component;
&-input.@{ant-prefix}-input {
position: relative;
width: 100%;
// Add important to fix https://github.com/ant-design/ant-design/issues/5078
// because input.less will compile after cascader.less
2017-08-04 17:58:32 +08:00
background-color: transparent !important;
2015-12-29 22:34:23 +08:00
cursor: pointer;
2015-12-29 11:46:13 +08:00
}
&-picker-show-search &-input.@{ant-prefix}-input {
position: relative;
}
2015-12-29 21:18:27 +08:00
&-picker {
.reset-component;
2015-12-29 21:18:27 +08:00
position: relative;
display: inline-block;
background-color: @component-background;
border-radius: @border-radius-base;
outline: 0;
cursor: pointer;
2018-12-07 16:17:45 +08:00
transition: color 0.3s;
2015-12-29 22:34:23 +08:00
&-with-value &-label {
color: transparent;
}
2016-02-25 12:07:44 +08:00
&-disabled {
color: @disabled-color;
background: @input-disabled-bg;
cursor: not-allowed;
.@{cascader-prefix-cls}-input {
cursor: not-allowed;
}
2016-02-25 12:07:44 +08:00
}
&:focus .@{cascader-prefix-cls}-input {
.active;
}
&-show-search&-focused {
color: @disabled-color;
}
&-label {
position: absolute;
top: 50%;
left: 0;
width: 100%;
height: 20px;
margin-top: -10px;
padding: 0 @control-padding-horizontal;
overflow: hidden;
line-height: 20px;
white-space: nowrap;
text-overflow: ellipsis;
}
2015-12-29 21:18:27 +08:00
&-clear {
position: absolute;
top: 50%;
right: @control-padding-horizontal;
2016-08-02 17:19:54 +08:00
z-index: 2;
2015-12-29 21:18:27 +08:00
width: 12px;
height: 12px;
margin-top: -6px;
color: @disabled-color;
font-size: @font-size-sm;
2015-12-29 21:18:27 +08:00
line-height: 12px;
background: @component-background;
2015-12-29 21:18:27 +08:00
cursor: pointer;
opacity: 0;
2015-12-29 21:18:27 +08:00
transition: color 0.3s ease, opacity 0.15s ease;
&:hover {
color: @text-color-secondary;
2015-12-29 21:18:27 +08:00
}
}
2015-12-29 22:34:23 +08:00
2015-12-29 21:18:27 +08:00
&:hover &-clear {
opacity: 1;
2015-12-29 22:34:23 +08:00
}
// arrow
&-arrow {
position: absolute;
top: 50%;
right: @control-padding-horizontal;
z-index: 1;
2015-12-29 22:34:23 +08:00
width: 12px;
height: 12px;
margin-top: -6px;
color: @disabled-color;
font-size: 12px;
line-height: 12px;
2018-12-07 16:17:45 +08:00
transition: transform 0.2s;
2015-12-29 22:34:23 +08:00
&&-expand {
2018-07-23 12:07:36 +08:00
transform: rotate(180deg);
2015-12-29 22:34:23 +08:00
}
2015-12-29 21:18:27 +08:00
}
}
&-picker-small &-picker-clear,
&-picker-small &-picker-arrow {
right: @control-padding-horizontal-sm;
}
2015-12-29 11:46:13 +08:00
&-menus {
position: absolute;
2016-04-13 16:16:26 +08:00
z-index: @zindex-dropdown;
font-size: @font-size-base;
white-space: nowrap;
background: @component-background;
2015-12-29 11:46:13 +08:00
border-radius: @border-radius-base;
box-shadow: @box-shadow-base;
ul,
ol {
margin: 0;
padding: 0;
list-style: none;
}
2016-01-27 15:26:39 +08:00
&-empty,
2015-12-29 11:46:13 +08:00
&-hidden {
display: none;
}
&.slide-up-enter.slide-up-enter-active&-placement-bottomLeft,
&.slide-up-appear.slide-up-appear-active&-placement-bottomLeft {
animation-name: antSlideUpIn;
}
&.slide-up-enter.slide-up-enter-active&-placement-topLeft,
&.slide-up-appear.slide-up-appear-active&-placement-topLeft {
animation-name: antSlideDownIn;
}
&.slide-up-leave.slide-up-leave-active&-placement-bottomLeft {
animation-name: antSlideUpOut;
}
&.slide-up-leave.slide-up-leave-active&-placement-topLeft {
animation-name: antSlideDownOut;
}
}
&-menu {
2016-01-19 18:01:21 +08:00
display: inline-block;
2016-01-07 20:58:13 +08:00
min-width: 111px;
2015-12-29 11:46:13 +08:00
height: 180px;
margin: 0;
padding: 0;
2015-12-31 11:49:17 +08:00
overflow: auto;
vertical-align: top;
list-style: none;
border-right: @border-width-base @border-style-base @border-color-split;
-ms-overflow-style: -ms-autohiding-scrollbar; // https://github.com/ant-design/ant-design/issues/11857
2016-04-13 16:32:25 +08:00
&:first-child {
border-radius: @border-radius-base 0 0 @border-radius-base;
}
2015-12-29 11:46:13 +08:00
&:last-child {
margin-right: -1px;
border-right-color: transparent;
2016-04-13 16:32:25 +08:00
border-radius: 0 @border-radius-base @border-radius-base 0;
}
&:only-child {
border-radius: @border-radius-base;
2015-12-29 11:46:13 +08:00
}
}
&-menu-item {
padding: 5px @control-padding-horizontal;
line-height: 22px;
2015-12-29 11:46:13 +08:00
white-space: nowrap;
cursor: pointer;
transition: all 0.3s;
2015-12-29 11:46:13 +08:00
&:hover {
background: @item-hover-bg;
2015-12-29 11:46:13 +08:00
}
2016-01-25 15:31:08 +08:00
&-disabled {
color: @disabled-color;
cursor: not-allowed;
2016-01-25 15:31:08 +08:00
&:hover {
background: transparent;
}
}
&-active:not(&-disabled) {
&,
2015-12-29 11:46:13 +08:00
&:hover {
2017-08-17 22:10:40 +08:00
font-weight: 600;
background: @background-color-base;
2015-12-29 11:46:13 +08:00
}
}
&-expand {
position: relative;
2017-09-10 13:50:21 +08:00
padding-right: 24px;
2015-12-29 11:46:13 +08:00
}
2018-08-13 11:44:25 +08:00
2018-08-23 22:15:25 +08:00
&-expand &-expand-icon,
&-expand &-loading-icon {
.iconfont-size-under-12px(10px);
2018-08-13 11:44:25 +08:00
position: absolute;
right: @control-padding-horizontal;
color: @text-color-secondary;
2018-08-13 11:44:25 +08:00
}
& &-keyword {
2016-11-09 21:30:02 +08:00
color: @highlight-color;
}
2015-12-29 11:46:13 +08:00
}
}