You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.1 KiB
67 lines
1.1 KiB
9 years ago
|
@import "../../style/themes/default";
|
||
|
|
||
|
@card-prefix-cls: ant-card;
|
||
9 years ago
|
|
||
|
.@{card-prefix-cls} {
|
||
|
background: #fff;
|
||
|
border-radius: @border-radius-sm;
|
||
9 years ago
|
font-size: @font-size-base;
|
||
|
position: relative;
|
||
|
overflow: hidden;
|
||
9 years ago
|
transition: all .3s;
|
||
9 years ago
|
|
||
|
&:hover {
|
||
9 years ago
|
box-shadow: @box-shadow-base;
|
||
|
border-color: #eee;
|
||
9 years ago
|
}
|
||
|
|
||
|
&-bordered {
|
||
|
border: 1px solid @border-color-base;
|
||
|
border-color: @border-color-split;
|
||
|
}
|
||
9 years ago
|
|
||
|
&-head {
|
||
|
height: 48px;
|
||
|
line-height: 48px;
|
||
|
border-bottom: 1px solid @border-color-split;
|
||
|
padding: 0 24px;
|
||
|
|
||
|
&-title {
|
||
|
font-size: 14px;
|
||
|
display: inline-block;
|
||
|
text-overflow: ellipsis;
|
||
|
width: 100%;
|
||
|
overflow: hidden;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&-extra {
|
||
|
position: absolute;
|
||
|
right: 24px;
|
||
|
top: 14px;
|
||
|
}
|
||
|
|
||
|
&-body {
|
||
|
padding: 24px;
|
||
|
}
|
||
9 years ago
|
|
||
|
&-loading &-body {
|
||
|
letter-spacing: -2px;
|
||
|
color: #eee;
|
||
|
font-size: 0.75rem;
|
||
|
}
|
||
|
|
||
|
&-loading &-body p {
|
||
|
word-break: break-all;
|
||
9 years ago
|
line-height: 10px;
|
||
|
margin: 5px 0 0;
|
||
|
height: 10px;
|
||
9 years ago
|
border-radius: @border-radius-base;
|
||
|
overflow: hidden;
|
||
|
display: inline-block;
|
||
9 years ago
|
user-select: none;
|
||
9 years ago
|
color: #f3f5f8;
|
||
9 years ago
|
}
|
||
9 years ago
|
}
|