mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 09:39:10 +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
89 lines
1.8 KiB
Plaintext
89 lines
1.8 KiB
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
@import './mixin';
|
|
@import './affix';
|
|
@import './allow-clear';
|
|
@import './status';
|
|
@input-prefix-cls: ~'@{ant-prefix}-input';
|
|
|
|
// Input styles
|
|
.@{input-prefix-cls} {
|
|
.reset-component();
|
|
.input();
|
|
|
|
//== Style for input-group: input with label, with button or dropdown...
|
|
&-group {
|
|
.reset-component();
|
|
.input-group(~'@{input-prefix-cls}');
|
|
|
|
&-wrapper {
|
|
display: inline-block;
|
|
width: 100%;
|
|
text-align: start;
|
|
vertical-align: top; // https://github.com/ant-design/ant-design/issues/6403
|
|
}
|
|
}
|
|
|
|
&-password-icon.@{iconfont-css-prefix} {
|
|
color: @text-color-secondary;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
|
|
&:hover {
|
|
color: @input-icon-hover-color;
|
|
}
|
|
}
|
|
|
|
&[type='color'] {
|
|
height: @input-height-base;
|
|
|
|
&.@{input-prefix-cls}-lg {
|
|
height: @input-height-lg;
|
|
}
|
|
&.@{input-prefix-cls}-sm {
|
|
height: @input-height-sm;
|
|
padding-top: 3px;
|
|
padding-bottom: 3px;
|
|
}
|
|
}
|
|
|
|
&-textarea-show-count {
|
|
// https://github.com/ant-design/ant-design/issues/33049
|
|
> .@{input-prefix-cls} {
|
|
height: 100%;
|
|
}
|
|
|
|
&::after {
|
|
float: right;
|
|
color: @text-color-secondary;
|
|
white-space: nowrap;
|
|
content: attr(data-count);
|
|
pointer-events: none;
|
|
}
|
|
|
|
&.@{input-prefix-cls}-textarea-in-form-item {
|
|
&::after {
|
|
margin-bottom: -22px;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-textarea-suffix {
|
|
position: absolute;
|
|
top: 0;
|
|
right: @input-padding-horizontal-base;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
display: inline-flex;
|
|
align-items: center;
|
|
margin: auto;
|
|
}
|
|
|
|
// ===================== Compact Item Styles =====================
|
|
.compact-item(@input-prefix-cls);
|
|
}
|
|
|
|
@import './search-input';
|
|
@import './rtl';
|
|
@import './IE11';
|