ant-design/style/components/card.less

64 lines
1.1 KiB
Plaintext
Raw Normal View History

2016-02-19 19:35:49 +08:00
@card-prefix-cls: ~"@{css-prefix}card";
@number-prefix-cls: ~"@{css-prefix}scroll-number";
.@{card-prefix-cls} {
background: #fff;
border-radius: @border-radius-sm;
2016-02-20 16:40:18 +08:00
font-size: @font-size-base;
position: relative;
overflow: hidden;
2016-04-10 18:45:13 +08:00
transition: all .2s;
2016-04-10 15:38:52 +08:00
&:hover {
2016-04-10 18:45:13 +08:00
box-shadow: 0 1px 6px rgba(100, 100, 100, .2);
2016-04-10 15:38:52 +08:00
}
&-bordered {
border: 1px solid @border-color-base;
border-color: @border-color-split;
}
2016-02-20 16:40:18 +08:00
&-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;
}
2016-02-22 16:25:13 +08:00
&-loading &-body {
letter-spacing: -2px;
color: #eee;
font-size: 0.75rem;
}
&-loading &-body p {
word-break: break-all;
2016-03-30 19:06:05 +08:00
line-height: 12px;
margin: 4px 0 0;
height: 12px;
border-radius: @border-radius-base;
overflow: hidden;
display: inline-block;
2016-04-07 13:52:56 +08:00
user-select: none;
2016-02-22 16:25:13 +08:00
}
2016-02-19 19:35:49 +08:00
}