mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-04 21:18:01 +08:00
c3e51506cc
* feat: add Space.Compact * feat: update input style * feat: add CompactItem for context memoize * feat: add demo * feat: update button style * feat: update input style * feat: 提取 getCompactClassNames 公用方法 * feat: update button style * feat: update picker * feat: add block prop for Space.Compact * feat: use Space.Compact for Input#addonBefore/After * feat: update addon * refactor: compact * feat: update * feat: update * feat: migrate styles to compact for new Input/Input.Search * feat: organize input demo * feat: add more button compact demo * feat: resolve select border collapse * feat: fix input addon select style * feat: add input addon demo in Space * feat: add useCompactItemContext hook * feat: update compact-item style * feat: rollback input#addon implements * feat: rollback input#addon and input.search style * feat: select border collapse * feat: add Space.Compact demo * feat: Space.Compact vertical for Button * refactor: useCompactItemContext * feat: update Button vertical demo * feat: rtl for compact mixin * feat: rtl for compact button * feat: input rtl * feat: add docs for Space.Compact * test: add some tests for Space.Compact * test: add tests * feat: select style * feat: handle select focus style * feat: add useCompactItemContext for Picker and Cascader * style: add compact-item style for cascader * feat: support nested Space.Compact * style: Input.Search in Space.Compact * chore: clean * feat: add useCompactItemContext for TreeSelect * fix: lint issues * fix: style lint * docs: update demos for Space.Compact * docs: update demo * fix: add deps-lint-skip for space * fix: add deps-lint-skip for space * fix: handle edge case for useCompactItemContext * test: add search test case * chore: + bundlesize * style: merge button compact style into one file * style: improve style for nested compact * fix: stylelint * docs: update Space.Compact docs * test: update demo snapshot * test: update input debug test snapshot * docs: update doccs for Space.Compact * test: improve test cases for Compact * docs: clean demos for Compact * refactor: improve Space.Compact * fix: add useCompactItemContext for Input.Search * style: improve compact border-radius implementation * refactor: use context to make nested compact works * fix: input-number focused style * refactor: remove useless style * refactor: improve style for vertical compact * test: update snapshot * test: update snapshot for input * refactor: improve compact-item-border-radius * fix: search group in RTL * style: improve style for button compact * style: use after * fix: stylelint * chore: update snapshot * style: improve button compact * refactor: improve btn-icon-only style in compact
334 lines
7.8 KiB
Plaintext
334 lines
7.8 KiB
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
@import '../../input/style/mixin';
|
|
@import './single';
|
|
@import './multiple';
|
|
@import './status';
|
|
|
|
@select-prefix-cls: ~'@{ant-prefix}-select';
|
|
@select-height-without-border: @input-height-base - 2 * @border-width-base;
|
|
@select-dropdown-edge-child-vertical-padding: @dropdown-edge-child-vertical-padding;
|
|
|
|
.select-selector() {
|
|
position: relative;
|
|
background-color: @select-background;
|
|
border: @border-width-base @border-style-base @select-border-color;
|
|
border-radius: @control-border-radius;
|
|
transition: all 0.3s @ease-in-out;
|
|
|
|
input {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.@{select-prefix-cls}-show-search& {
|
|
cursor: text;
|
|
|
|
input {
|
|
cursor: auto;
|
|
}
|
|
}
|
|
|
|
.@{select-prefix-cls}-focused:not(.@{select-prefix-cls}-disabled)& {
|
|
.active();
|
|
}
|
|
|
|
.@{select-prefix-cls}-disabled& {
|
|
color: @disabled-color;
|
|
background: @input-disabled-bg;
|
|
cursor: not-allowed;
|
|
|
|
.@{select-prefix-cls}-multiple& {
|
|
background: @select-multiple-disabled-background;
|
|
}
|
|
|
|
input {
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Reset search input style */
|
|
.select-search-input-without-border() {
|
|
.@{select-prefix-cls}-selection-search-input {
|
|
margin: 0;
|
|
padding: 0;
|
|
background: transparent;
|
|
border: none;
|
|
outline: none;
|
|
appearance: none;
|
|
|
|
&::-webkit-search-cancel-button {
|
|
display: none;
|
|
/* stylelint-disable-next-line property-no-vendor-prefix */
|
|
-webkit-appearance: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{select-prefix-cls} {
|
|
.reset-component();
|
|
position: relative;
|
|
display: inline-block;
|
|
cursor: pointer;
|
|
|
|
&:not(&-customize-input) &-selector {
|
|
.select-selector();
|
|
.select-search-input-without-border();
|
|
}
|
|
|
|
&:not(&-disabled):hover &-selector {
|
|
.hover();
|
|
}
|
|
|
|
// ======================== Selection ========================
|
|
&-selection-item {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
font-weight: normal;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
|
|
// IE11 css hack. `*::-ms-backdrop,` is a must have
|
|
@media all and (-ms-high-contrast: none) {
|
|
*::-ms-backdrop,
|
|
& {
|
|
flex: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ======================= Placeholder =======================
|
|
&-selection-placeholder {
|
|
flex: 1;
|
|
overflow: hidden;
|
|
color: @input-placeholder-color;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
pointer-events: none;
|
|
|
|
// IE11 css hack. `*::-ms-backdrop,` is a must have
|
|
@media all and (-ms-high-contrast: none) {
|
|
*::-ms-backdrop,
|
|
& {
|
|
flex: auto;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ========================== Arrow ==========================
|
|
&-arrow {
|
|
.iconfont-mixin();
|
|
position: absolute;
|
|
top: 50%;
|
|
right: @control-padding-horizontal - 1px;
|
|
display: flex;
|
|
align-items: center;
|
|
height: @font-size-sm;
|
|
margin-top: (-@font-size-sm / 2);
|
|
color: @disabled-color;
|
|
font-size: @font-size-sm;
|
|
line-height: 1;
|
|
text-align: center;
|
|
pointer-events: none;
|
|
|
|
.@{iconfont-css-prefix} {
|
|
vertical-align: top;
|
|
transition: transform 0.3s;
|
|
|
|
> svg {
|
|
vertical-align: top;
|
|
}
|
|
|
|
&:not(.@{select-prefix-cls}-suffix) {
|
|
pointer-events: auto;
|
|
}
|
|
}
|
|
|
|
.@{select-prefix-cls}-disabled & {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
> *:not(:last-child) {
|
|
margin-inline-end: @padding-xs;
|
|
}
|
|
}
|
|
|
|
// ========================== Clear ==========================
|
|
&-clear {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: @control-padding-horizontal - 1px;
|
|
z-index: 1;
|
|
display: inline-block;
|
|
width: @font-size-sm;
|
|
height: @font-size-sm;
|
|
margin-top: (-@font-size-sm / 2);
|
|
color: @disabled-color;
|
|
font-size: @font-size-sm;
|
|
font-style: normal;
|
|
line-height: 1;
|
|
text-align: center;
|
|
text-transform: none;
|
|
background: @select-clear-background;
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
transition: color 0.3s ease, opacity 0.15s ease;
|
|
text-rendering: auto;
|
|
|
|
&::before {
|
|
display: block;
|
|
}
|
|
|
|
&:hover {
|
|
color: @text-color-secondary;
|
|
}
|
|
|
|
.@{select-prefix-cls}:hover & {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
// ========================== Popup ==========================
|
|
&-dropdown {
|
|
.reset-component();
|
|
position: absolute;
|
|
top: -9999px;
|
|
left: -9999px;
|
|
z-index: @zindex-dropdown;
|
|
box-sizing: border-box;
|
|
padding: @select-dropdown-edge-child-vertical-padding 0;
|
|
overflow: hidden;
|
|
font-size: @font-size-base;
|
|
// Fix select render lag of long text in chrome
|
|
// https://github.com/ant-design/ant-design/issues/11456
|
|
// https://github.com/ant-design/ant-design/issues/11843
|
|
font-variant: initial;
|
|
background-color: @select-dropdown-bg;
|
|
border-radius: @border-radius-base;
|
|
outline: none;
|
|
box-shadow: @box-shadow-base;
|
|
|
|
&.@{ant-prefix}-slide-up-enter.@{ant-prefix}-slide-up-enter-active&-placement-bottomLeft,
|
|
&.@{ant-prefix}-slide-up-appear.@{ant-prefix}-slide-up-appear-active&-placement-bottomLeft {
|
|
animation-name: antSlideUpIn;
|
|
}
|
|
|
|
&.@{ant-prefix}-slide-up-enter.@{ant-prefix}-slide-up-enter-active&-placement-topLeft,
|
|
&.@{ant-prefix}-slide-up-appear.@{ant-prefix}-slide-up-appear-active&-placement-topLeft {
|
|
animation-name: antSlideDownIn;
|
|
}
|
|
|
|
&.@{ant-prefix}-slide-up-leave.@{ant-prefix}-slide-up-leave-active&-placement-bottomLeft {
|
|
animation-name: antSlideUpOut;
|
|
}
|
|
|
|
&.@{ant-prefix}-slide-up-leave.@{ant-prefix}-slide-up-leave-active&-placement-topLeft {
|
|
animation-name: antSlideDownOut;
|
|
}
|
|
|
|
&-hidden {
|
|
display: none;
|
|
}
|
|
|
|
&-empty {
|
|
color: @disabled-color;
|
|
}
|
|
}
|
|
|
|
// ========================= Options =========================
|
|
.item() {
|
|
position: relative;
|
|
display: block;
|
|
min-height: @select-dropdown-height;
|
|
padding: @select-dropdown-vertical-padding @control-padding-horizontal;
|
|
color: @text-color;
|
|
font-weight: normal;
|
|
font-size: @select-dropdown-font-size;
|
|
line-height: @select-dropdown-line-height;
|
|
}
|
|
|
|
&-item-empty {
|
|
.item();
|
|
color: @disabled-color;
|
|
}
|
|
|
|
&-item {
|
|
.item();
|
|
|
|
cursor: pointer;
|
|
transition: background 0.3s ease;
|
|
|
|
// =========== Group ============
|
|
&-group {
|
|
color: @text-color-secondary;
|
|
font-size: @font-size-sm;
|
|
cursor: default;
|
|
}
|
|
|
|
// =========== Option ===========
|
|
&-option {
|
|
display: flex;
|
|
|
|
&-content {
|
|
flex: auto;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
&-state {
|
|
flex: none;
|
|
}
|
|
|
|
&-active:not(&-disabled) {
|
|
background-color: @select-item-active-bg;
|
|
}
|
|
|
|
&-selected:not(&-disabled) {
|
|
color: @select-item-selected-color;
|
|
font-weight: @select-item-selected-font-weight;
|
|
background-color: @select-item-selected-bg;
|
|
|
|
.@{select-prefix-cls}-item-option-state {
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
|
|
&-disabled {
|
|
&.@{select-prefix-cls}-item-option-selected {
|
|
background-color: @select-multiple-disabled-background;
|
|
}
|
|
color: @disabled-color;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
&-grouped {
|
|
padding-left: @control-padding-horizontal * 2;
|
|
}
|
|
}
|
|
}
|
|
|
|
// ============================================================
|
|
// == Size ==
|
|
// ============================================================
|
|
&-lg {
|
|
font-size: @font-size-lg;
|
|
}
|
|
|
|
// no border style
|
|
&-borderless &-selector {
|
|
background-color: transparent !important;
|
|
border-color: transparent !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|
|
&&-in-form-item {
|
|
width: 100%;
|
|
}
|
|
|
|
// ===================== Compact Item Styles =====================
|
|
.compact-item(@select-prefix-cls, ~'@{select-prefix-cls}-selector', ~'@{select-prefix-cls}-focused');
|
|
}
|
|
|
|
@import './rtl';
|