You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
167 lines
4.6 KiB
167 lines
4.6 KiB
@import './index';
|
|
|
|
@selection-item-padding: ceil(@font-size-base * 1.25);
|
|
|
|
.@{select-prefix-cls}-single {
|
|
// ========================= Selector =========================
|
|
.@{select-prefix-cls}-selector {
|
|
display: flex;
|
|
|
|
.@{select-prefix-cls}-selection-search {
|
|
position: absolute;
|
|
top: 0;
|
|
right: @input-padding-horizontal-base;
|
|
bottom: 0;
|
|
left: @input-padding-horizontal-base;
|
|
|
|
&-input {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.@{select-prefix-cls}-selection-item,
|
|
.@{select-prefix-cls}-selection-placeholder {
|
|
padding: 0;
|
|
line-height: @select-height-without-border;
|
|
transition: all 0.3s;
|
|
pointer-events: none;
|
|
|
|
// Firefox inline-block position calculation is not same as Chrome & Safari. Patch this:
|
|
@supports (-moz-appearance: meterbar) {
|
|
& {
|
|
line-height: @select-height-without-border;
|
|
}
|
|
}
|
|
}
|
|
|
|
// For common baseline align
|
|
&::after,
|
|
// For '' value baseline align
|
|
.@{select-prefix-cls}-selection-item::after,
|
|
// For undefined value baseline align
|
|
.@{select-prefix-cls}-selection-placeholder::after {
|
|
display: inline-block;
|
|
width: 0;
|
|
visibility: hidden;
|
|
content: '\a0';
|
|
}
|
|
}
|
|
|
|
// With arrow should provides `padding-right` to show the arrow
|
|
&.@{select-prefix-cls}-show-arrow .@{select-prefix-cls}-selection-search {
|
|
right: @input-padding-horizontal-base + @font-size-base;
|
|
}
|
|
|
|
&.@{select-prefix-cls}-show-arrow .@{select-prefix-cls}-selection-item,
|
|
&.@{select-prefix-cls}-show-arrow .@{select-prefix-cls}-selection-placeholder {
|
|
padding-right: @selection-item-padding;
|
|
}
|
|
|
|
// Opacity selection if open
|
|
&.@{select-prefix-cls}-open .@{select-prefix-cls}-selection-item {
|
|
opacity: 0.4;
|
|
}
|
|
|
|
// ========================== Input ==========================
|
|
// We only change the style of non-customize input which is only support by `combobox` mode.
|
|
|
|
// Not customize
|
|
&:not(.@{select-prefix-cls}-customize-input) {
|
|
.@{select-prefix-cls}-selector {
|
|
.select-selector();
|
|
.select-search-input-without-border();
|
|
width: 100%;
|
|
|
|
height: @input-height-base;
|
|
padding: 0 @input-padding-horizontal-base;
|
|
|
|
.@{select-prefix-cls}-selection-search-input {
|
|
height: @select-height-without-border;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.@{select-prefix-cls}-customize-input {
|
|
.@{select-prefix-cls}-selector {
|
|
&::after {
|
|
display: none;
|
|
}
|
|
|
|
.@{select-prefix-cls}-selection-search {
|
|
position: static;
|
|
width: 100%;
|
|
}
|
|
|
|
.@{select-prefix-cls}-selection-placeholder {
|
|
position: absolute;
|
|
right: 0;
|
|
left: 0;
|
|
padding: 0 @input-padding-horizontal-base;
|
|
|
|
&::after {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// ============================================================
|
|
// == Size ==
|
|
// ============================================================
|
|
.select-size(@suffix, @input-height) {
|
|
@merged-cls: ~'@{select-prefix-cls}-@{suffix}';
|
|
|
|
&.@{merged-cls}:not(.@{select-prefix-cls}-customize-input) {
|
|
.@{select-prefix-cls}-selector {
|
|
height: @input-height;
|
|
|
|
.@{select-prefix-cls}-selection-item,
|
|
.@{select-prefix-cls}-selection-placeholder {
|
|
line-height: @input-height;
|
|
}
|
|
}
|
|
|
|
// Not customize
|
|
&:not(.@{select-prefix-cls}-customize-input) {
|
|
.@{select-prefix-cls}-selection-search-input {
|
|
height: @input-height - 2 * @border-width-base;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.select-size('lg', @select-single-item-height-lg);
|
|
.select-size('sm', @input-height-sm);
|
|
|
|
// Size small need additional set padding
|
|
&.@{select-prefix-cls}-sm {
|
|
&:not(.@{select-prefix-cls}-customize-input) {
|
|
.@{select-prefix-cls}-selection-search {
|
|
right: @input-padding-horizontal-sm;
|
|
left: @input-padding-horizontal-sm;
|
|
}
|
|
|
|
.@{select-prefix-cls}-selector {
|
|
padding: 0 @input-padding-horizontal-sm;
|
|
}
|
|
|
|
// With arrow should provides `padding-right` to show the arrow
|
|
&.@{select-prefix-cls}-show-arrow .@{select-prefix-cls}-selection-search {
|
|
right: @input-padding-horizontal-sm + @font-size-base * 1.5;
|
|
}
|
|
|
|
&.@{select-prefix-cls}-show-arrow .@{select-prefix-cls}-selection-item,
|
|
&.@{select-prefix-cls}-show-arrow .@{select-prefix-cls}-selection-placeholder {
|
|
padding-right: @font-size-base * 1.5;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.@{select-prefix-cls}-lg {
|
|
&:not(.@{select-prefix-cls}-customize-input) {
|
|
.@{select-prefix-cls}-selector {
|
|
padding: 0 @input-padding-horizontal-lg;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|