mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 21:59:41 +08:00
6936599aef
* rename .stylelintrc to .stylelintrc.json for explicit file type * add new npm script lint-fix:style * fix pseudo-element with double colon * function name should be lower except ignored functions * support stylelint declaration-block-no-ignored-properties rule * support sorted CSS properties order for readability and consistency * autofix order of all styles by lint-fix:style script * remove double slash comments after selector * replace .stylelintignore with ignoreFiles in .stylelintrc.json
42 lines
825 B
Plaintext
42 lines
825 B
Plaintext
.@{list-prefix-cls}-bordered {
|
|
border: 1px solid @border-color-base;
|
|
border-radius: @border-radius-base;
|
|
.@{list-prefix-cls}-header {
|
|
padding-right: 24px;
|
|
padding-left: 24px;
|
|
}
|
|
|
|
.@{list-prefix-cls}-footer {
|
|
padding-right: 24px;
|
|
padding-left: 24px;
|
|
}
|
|
|
|
.@{list-prefix-cls}-item {
|
|
padding-right: 24px;
|
|
padding-left: 24px;
|
|
border-bottom: 1px solid @border-color-split;
|
|
}
|
|
|
|
.@{list-prefix-cls}-pagination {
|
|
margin: 16px 24px;
|
|
}
|
|
|
|
&.@{list-prefix-cls}-sm {
|
|
.@{list-prefix-cls}-item {
|
|
padding-right: 16px;
|
|
padding-left: 16px;
|
|
}
|
|
.@{list-prefix-cls}-header,
|
|
.@{list-prefix-cls}-footer {
|
|
padding: 8px 16px;
|
|
}
|
|
}
|
|
|
|
&.@{list-prefix-cls}-lg {
|
|
.@{list-prefix-cls}-header,
|
|
.@{list-prefix-cls}-footer {
|
|
padding: 16px 24px;
|
|
}
|
|
}
|
|
}
|