ant-design/components/list/style/index.less

213 lines
4.0 KiB
Plaintext
Raw Normal View History

2018-12-07 20:02:01 +08:00
@import '../../style/themes/default';
@import '../../style/mixins/index';
2018-12-07 20:02:01 +08:00
@list-prefix-cls: ~'@{ant-prefix}-list';
.@{list-prefix-cls} {
.reset-component;
position: relative;
* {
outline: none;
}
&-pagination {
2017-10-17 14:17:20 +08:00
margin-top: 24px;
text-align: right;
}
&-more {
margin-top: 12px;
text-align: center;
button {
padding-left: 32px;
padding-right: 32px;
}
}
&-spin {
text-align: center;
min-height: 40px;
}
2017-11-17 11:25:29 +08:00
&-empty-text {
color: @text-color-secondary;
font-size: @font-size-base;
2018-08-07 23:15:58 +08:00
padding: @list-empty-text-padding;
2017-11-17 11:25:29 +08:00
text-align: center;
}
&-item {
align-items: center;
display: flex;
2018-08-07 23:15:58 +08:00
padding: @list-item-padding;
&-meta {
align-items: flex-start;
display: flex;
flex: 1;
font-size: 0;
&-avatar {
2018-08-07 23:15:58 +08:00
margin-right: @list-item-meta-avatar-margin-right;
}
&-content {
flex: 1 0;
}
&-title {
color: @text-color;
margin-bottom: 4px;
font-size: @font-size-base;
line-height: 22px;
2017-10-26 15:06:46 +08:00
> a {
color: @text-color;
2018-12-07 20:02:01 +08:00
transition: all 0.3s;
&:hover {
color: @primary-color;
}
}
}
&-description {
color: @text-color-secondary;
font-size: @font-size-base;
line-height: 22px;
}
}
&-content {
display: flex;
flex: 1;
justify-content: flex-end;
}
&-content-single {
justify-content: flex-start;
}
&-action {
font-size: 0;
flex: 0 0 auto;
margin-left: 48px;
padding: 0;
list-style: none;
& > li {
display: inline-block;
color: @text-color-secondary;
cursor: pointer;
padding: 0 8px;
position: relative;
font-size: @font-size-base;
line-height: 22px;
text-align: center;
}
& > li:first-child {
padding-left: 0;
}
&-split {
background-color: @border-color-split;
margin-top: -7px;
position: absolute;
top: 50%;
right: 0;
width: 1px;
height: 14px;
}
}
&-main {
display: flex;
flex: 1;
}
}
2017-12-16 17:29:49 +08:00
&-header {
background: @list-header-background;
}
&-footer {
background: @list-footer-background;
}
2017-10-26 15:36:48 +08:00
&-header,
&-footer {
padding-top: 12px;
padding-bottom: 12px;
}
2017-12-16 17:29:49 +08:00
&-empty {
color: @text-color-secondary;
padding: 16px 0;
font-size: 12px;
text-align: center;
}
&-split &-item {
border-bottom: 1px solid @border-color-split;
2017-10-26 15:36:48 +08:00
&:last-child {
border-bottom: none;
}
}
2017-12-16 17:29:49 +08:00
&-split &-header {
2017-10-26 15:36:48 +08:00
border-bottom: 1px solid @border-color-split;
}
2017-12-16 17:29:49 +08:00
&-loading &-spin-nested-loading {
min-height: 32px;
}
2018-04-13 15:00:03 +08:00
&-something-after-last-item .@{ant-prefix}-spin-container > &-item:last-child {
2017-08-30 10:30:23 +08:00
border-bottom: 1px solid @border-color-split;
}
2017-10-26 15:36:48 +08:00
2017-12-16 17:29:49 +08:00
&-lg &-item {
padding-top: 16px;
padding-bottom: 16px;
}
2017-12-16 17:29:49 +08:00
&-sm &-item {
padding-top: 8px;
padding-bottom: 8px;
}
2017-12-16 17:29:49 +08:00
&-vertical &-item {
display: block;
&-extra-wrap {
display: flex;
}
&-main {
display: block;
flex: 1;
}
&-extra {
margin-left: 58px;
}
&-meta {
2018-08-07 23:15:58 +08:00
margin-bottom: @list-item-meta-margin-bottom;
&-title {
color: @heading-color;
2018-08-07 23:15:58 +08:00
margin-bottom: @list-item-meta-title-margin-bottom;
font-size: @font-size-lg;
line-height: 24px;
}
}
&-content {
display: block;
color: @text-color;
font-size: @font-size-base;
2018-08-07 23:15:58 +08:00
margin: @list-item-content-margin;
}
&-action {
margin-left: auto;
2017-12-16 17:29:49 +08:00
> li {
padding: 0 16px;
2017-12-16 17:29:49 +08:00
&:first-child {
padding-left: 0;
}
}
}
}
2017-08-14 11:08:19 +08:00
2017-12-16 17:29:49 +08:00
&-grid &-item {
2017-08-14 11:08:19 +08:00
border-bottom: none;
padding-top: 0;
padding-bottom: 0;
2018-04-13 15:28:31 +08:00
margin-bottom: 16px;
2017-08-14 11:08:19 +08:00
&-content {
display: block;
max-width: 100%;
2017-08-14 11:08:19 +08:00
}
}
}
2017-12-16 17:29:49 +08:00
@import './bordered';
@import './responsive';