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

67 lines
1.2 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@card-prefix-cls: ~"@{ant-prefix}-card";
2016-02-19 19:35:49 +08:00
.@{card-prefix-cls} {
background: @body-background;
2016-02-19 19:35:49 +08:00
border-radius: @border-radius-sm;
2016-02-20 16:40:18 +08:00
font-size: @font-size-base;
position: relative;
overflow: hidden;
transition: all .3s;
2016-04-10 15:38:52 +08:00
&:hover {
2016-04-17 18:19:22 +08:00
box-shadow: @box-shadow-base;
2016-11-05 16:54:00 +08:00
border-color: transparent;
2016-11-17 14:29:48 +08:00
z-index: 1;
2016-04-10 15:38:52 +08:00
}
&-bordered {
2016-10-14 15:40:39 +08:00
border: 1px solid @border-color-split;
2016-04-10 15:38:52 +08:00
}
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 {
2016-11-08 21:07:01 +08:00
font-size: @font-size-lg;
2016-02-20 16:40:18 +08:00
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-04-12 16:42:15 +08:00
line-height: 10px;
margin: 5px 0 0;
height: 10px;
2016-03-30 19:06:05 +08:00
border-radius: @border-radius-base;
overflow: hidden;
display: inline-block;
2016-04-07 13:52:56 +08:00
user-select: none;
2016-04-12 16:42:15 +08:00
color: #f3f5f8;
2016-02-22 16:25:13 +08:00
}
2016-02-19 19:35:49 +08:00
}