mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +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
229 lines
4.0 KiB
Plaintext
229 lines
4.0 KiB
Plaintext
@import '../../style/themes/index';
|
|
@import '../../style/mixins/index';
|
|
|
|
@list-prefix-cls: ~'@{ant-prefix}-list';
|
|
|
|
.@{list-prefix-cls} {
|
|
.reset-component;
|
|
|
|
position: relative;
|
|
|
|
* {
|
|
outline: none;
|
|
}
|
|
|
|
&-pagination {
|
|
margin-top: 24px;
|
|
text-align: right;
|
|
}
|
|
|
|
&-more {
|
|
margin-top: 12px;
|
|
text-align: center;
|
|
button {
|
|
padding-right: 32px;
|
|
padding-left: 32px;
|
|
}
|
|
}
|
|
|
|
&-spin {
|
|
min-height: 40px;
|
|
text-align: center;
|
|
}
|
|
|
|
&-empty-text {
|
|
padding: @list-empty-text-padding;
|
|
color: @disabled-color;
|
|
font-size: @font-size-base;
|
|
text-align: center;
|
|
}
|
|
|
|
&-items {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
}
|
|
|
|
&-item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: @list-item-padding;
|
|
|
|
&-content {
|
|
color: @text-color;
|
|
}
|
|
|
|
&-meta {
|
|
display: flex;
|
|
flex: 1;
|
|
align-items: flex-start;
|
|
font-size: 0;
|
|
&-avatar {
|
|
margin-right: @list-item-meta-avatar-margin-right;
|
|
}
|
|
&-content {
|
|
flex: 1 0;
|
|
}
|
|
&-title {
|
|
margin-bottom: 4px;
|
|
color: @text-color;
|
|
font-size: @font-size-base;
|
|
line-height: 22px;
|
|
> a {
|
|
color: @text-color;
|
|
transition: all 0.3s;
|
|
&:hover {
|
|
color: @primary-color;
|
|
}
|
|
}
|
|
}
|
|
&-description {
|
|
color: @text-color-secondary;
|
|
font-size: @font-size-base;
|
|
line-height: 22px;
|
|
}
|
|
}
|
|
&-action {
|
|
flex: 0 0 auto;
|
|
margin-left: 48px;
|
|
padding: 0;
|
|
font-size: 0;
|
|
list-style: none;
|
|
& > li {
|
|
position: relative;
|
|
display: inline-block;
|
|
padding: 0 8px;
|
|
color: @text-color-secondary;
|
|
font-size: @font-size-base;
|
|
line-height: 22px;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
}
|
|
& > li:first-child {
|
|
padding-left: 0;
|
|
}
|
|
&-split {
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 0;
|
|
width: 1px;
|
|
height: 14px;
|
|
margin-top: -7px;
|
|
background-color: @border-color-split;
|
|
}
|
|
}
|
|
}
|
|
|
|
&-header {
|
|
background: @list-header-background;
|
|
}
|
|
|
|
&-footer {
|
|
background: @list-footer-background;
|
|
}
|
|
|
|
&-header,
|
|
&-footer {
|
|
padding-top: 12px;
|
|
padding-bottom: 12px;
|
|
}
|
|
|
|
&-empty {
|
|
padding: 16px 0;
|
|
color: @text-color-secondary;
|
|
font-size: 12px;
|
|
text-align: center;
|
|
}
|
|
|
|
&-split &-item {
|
|
border-bottom: 1px solid @border-color-split;
|
|
&:last-child {
|
|
border-bottom: none;
|
|
}
|
|
}
|
|
|
|
&-split &-header {
|
|
border-bottom: 1px solid @border-color-split;
|
|
}
|
|
|
|
&-loading &-spin-nested-loading {
|
|
min-height: 32px;
|
|
}
|
|
|
|
&-something-after-last-item .@{ant-prefix}-spin-container > &-items > &-item:last-child {
|
|
border-bottom: 1px solid @border-color-split;
|
|
}
|
|
|
|
&-lg &-item {
|
|
padding-top: 16px;
|
|
padding-bottom: 16px;
|
|
}
|
|
|
|
&-sm &-item {
|
|
padding-top: 8px;
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
&-vertical &-item {
|
|
align-items: initial;
|
|
|
|
&-main {
|
|
display: block;
|
|
flex: 1;
|
|
}
|
|
|
|
&-extra {
|
|
margin-left: 40px;
|
|
}
|
|
|
|
&-meta {
|
|
margin-bottom: @list-item-meta-margin-bottom;
|
|
|
|
&-title {
|
|
margin-bottom: @list-item-meta-title-margin-bottom;
|
|
color: @heading-color;
|
|
font-size: @font-size-lg;
|
|
line-height: 24px;
|
|
}
|
|
}
|
|
|
|
&-action {
|
|
margin-top: @padding-md;
|
|
margin-left: auto;
|
|
|
|
> li {
|
|
padding: 0 16px;
|
|
&:first-child {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&-grid &-item {
|
|
display: block;
|
|
max-width: 100%;
|
|
margin-bottom: 16px;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
border-bottom: none;
|
|
}
|
|
|
|
// ============================ without flex ============================
|
|
&-item-no-flex {
|
|
display: block;
|
|
}
|
|
|
|
// Horizontal
|
|
&:not(.@{list-prefix-cls}-vertical) {
|
|
.@{list-prefix-cls}-item-no-flex {
|
|
.@{list-prefix-cls}-item-action {
|
|
float: right;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@import './bordered';
|
|
@import './responsive';
|