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.
118 lines
2.4 KiB
118 lines
2.4 KiB
@import "../../style/themes/default";
|
|
@import "../../style/mixins/index";
|
|
|
|
@card-prefix-cls: ~"@{ant-prefix}-card";
|
|
@card-padding-base: 24px;
|
|
@card-padding-wider: 32px;
|
|
|
|
.@{card-prefix-cls} {
|
|
background: @component-background;
|
|
border-radius: @border-radius-sm;
|
|
font-size: @font-size-base;
|
|
position: relative;
|
|
transition: all .3s;
|
|
|
|
&:not(&-no-hovering):hover {
|
|
box-shadow: @box-shadow-base;
|
|
border-color: transparent;
|
|
}
|
|
|
|
&-bordered {
|
|
border: @border-width-base @border-style-base @border-color-split;
|
|
}
|
|
|
|
&-head {
|
|
height: @card-head-height;
|
|
line-height: @card-head-height;
|
|
background: @card-head-background;
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
|
padding: 0 @card-padding-base;
|
|
border-radius: @border-radius-sm @border-radius-sm 0 0;
|
|
|
|
&-title {
|
|
font-size: @font-size-lg;
|
|
display: inline-block;
|
|
text-overflow: ellipsis;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
color: @card-head-color;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|
|
&-extra {
|
|
position: absolute;
|
|
right: @card-padding-base;
|
|
top: 14px;
|
|
}
|
|
|
|
&-body {
|
|
padding: @card-padding-base;
|
|
.clearfix;
|
|
}
|
|
|
|
&-loading &-body {
|
|
user-select: none;
|
|
}
|
|
|
|
&-loading-block {
|
|
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%;
|
|
}
|
|
|
|
&-contain-grid &-body {
|
|
margin: -0.5px;
|
|
}
|
|
|
|
&-grid {
|
|
border-radius: 0;
|
|
border: 0;
|
|
box-shadow: 0 0 0 0.5px @border-color-split, 0 0 0 0.5px @border-color-split inset;
|
|
width: 33.33%;
|
|
float: left;
|
|
padding: @card-padding-base;
|
|
transition: all .3s;
|
|
&:hover {
|
|
position: relative;
|
|
z-index: 1;
|
|
box-shadow: @box-shadow-base;
|
|
}
|
|
}
|
|
|
|
&-wider-padding &-head {
|
|
padding: 0 @card-padding-wider;
|
|
}
|
|
|
|
&-wider-padding &-body {
|
|
padding: @card-padding-base @card-padding-wider;
|
|
}
|
|
|
|
&-wider-padding &-extra {
|
|
right: @card-padding-wider;
|
|
}
|
|
|
|
&-padding-transition &-head,
|
|
&-padding-transition &-body {
|
|
transition: padding .3s;
|
|
}
|
|
|
|
&-padding-transition &-extra {
|
|
transition: right .3s;
|
|
}
|
|
}
|
|
|
|
@keyframes card-loading {
|
|
0%,
|
|
100% {
|
|
background-position: 0 50%;
|
|
}
|
|
50% {
|
|
background-position: 100% 50%;
|
|
}
|
|
}
|
|
|