95 lines
1.6 KiB
Plaintext
95 lines
1.6 KiB
Plaintext
@import '~antd/lib/style/themes/default.less';
|
|
|
|
.list {
|
|
max-height: 400px;
|
|
overflow: auto;
|
|
&::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
.item {
|
|
padding-right: 24px;
|
|
padding-left: 24px;
|
|
overflow: hidden;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
|
|
.meta {
|
|
width: 100%;
|
|
}
|
|
|
|
.avatar {
|
|
margin-top: 4px;
|
|
background: #fff;
|
|
}
|
|
.iconElement {
|
|
font-size: 32px;
|
|
}
|
|
|
|
&.read {
|
|
opacity: 0.4;
|
|
}
|
|
&:last-child {
|
|
border-bottom: 0;
|
|
}
|
|
&:hover {
|
|
background: @primary-1;
|
|
}
|
|
.title {
|
|
margin-bottom: 8px;
|
|
font-weight: normal;
|
|
}
|
|
.description {
|
|
font-size: 12px;
|
|
line-height: @line-height-base;
|
|
}
|
|
.datetime {
|
|
margin-top: 4px;
|
|
font-size: 12px;
|
|
line-height: @line-height-base;
|
|
}
|
|
.extra {
|
|
float: right;
|
|
margin-top: -1.5px;
|
|
margin-right: 0;
|
|
color: @text-color-secondary;
|
|
font-weight: normal;
|
|
}
|
|
}
|
|
.loadMore {
|
|
padding: 8px 0;
|
|
color: @primary-6;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
&.loadedAll {
|
|
color: rgba(0, 0, 0, 0.25);
|
|
cursor: unset;
|
|
}
|
|
}
|
|
}
|
|
|
|
.notFound {
|
|
padding: 73px 0 88px 0;
|
|
color: @text-color-secondary;
|
|
text-align: center;
|
|
img {
|
|
display: inline-block;
|
|
height: 76px;
|
|
margin-bottom: 16px;
|
|
}
|
|
}
|
|
|
|
.clear {
|
|
height: 46px;
|
|
color: @text-color;
|
|
line-height: 46px;
|
|
text-align: center;
|
|
border-top: 1px solid @border-color-split;
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
|
|
&:hover {
|
|
color: @heading-color;
|
|
}
|
|
}
|