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

73 lines
1.3 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: @component-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 {
user-select: none;
2016-02-22 16:25:13 +08:00
}
&-loading-block {
2016-03-30 19:06:05 +08:00
display: inline-block;
margin: 5px 1% 0;
height: 14px;
border-radius: @border-radius-sm;
background: linear-gradient(90deg, rgba(207, 216, 220, .2), rgba(207, 216, 220, .4), rgba(207, 216, 220, .2));
animation: card-loading 1.4s ease infinite;
background-size: 600% 600%;
2016-02-22 16:25:13 +08:00
}
2016-02-19 19:35:49 +08:00
}
@keyframes card-loading {
0%,
100% {
background-position: 0 50%;
}
50% {
background-position: 100% 50%;
}
}