2019-05-06 12:04:39 +08:00
|
|
|
@import '../../style/themes/index';
|
2018-12-07 20:02:01 +08:00
|
|
|
@import '../../style/mixins/index';
|
2016-04-27 20:44:36 +08:00
|
|
|
|
2018-12-07 20:02:01 +08:00
|
|
|
@card-prefix-cls: ~'@{ant-prefix}-card';
|
2017-09-22 18:13:06 +08:00
|
|
|
@card-head-height: 48px;
|
2018-12-04 13:11:31 +08:00
|
|
|
@card-hover-border: fade(@black, 9%);
|
2019-08-09 11:13:15 +08:00
|
|
|
@card-action-icon-size: 16px;
|
2016-02-19 19:35:49 +08:00
|
|
|
|
2018-12-04 13:11:31 +08:00
|
|
|
@gradient-min: fade(@card-background, 20%);
|
|
|
|
@gradient-max: fade(@card-background, 40%);
|
|
|
|
|
2016-02-19 19:35:49 +08:00
|
|
|
.@{card-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2019-04-15 10:52:00 +08:00
|
|
|
|
2019-02-15 10:48:07 +08:00
|
|
|
position: relative;
|
2016-11-29 11:56:10 +08:00
|
|
|
background: @component-background;
|
2018-08-26 12:34:42 +08:00
|
|
|
border-radius: @card-radius;
|
2018-12-07 20:02:01 +08:00
|
|
|
transition: all 0.3s;
|
2016-04-10 15:38:52 +08:00
|
|
|
|
2017-09-27 21:57:18 +08:00
|
|
|
&-hoverable {
|
2017-08-14 09:52:16 +08:00
|
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
2018-01-12 10:03:14 +08:00
|
|
|
border-color: @card-hover-border;
|
2019-02-15 10:48:07 +08:00
|
|
|
box-shadow: @card-shadow;
|
2017-08-14 09:52:16 +08:00
|
|
|
}
|
2016-04-10 15:38:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-bordered {
|
2017-01-31 16:05:10 +08:00
|
|
|
border: @border-width-base @border-style-base @border-color-split;
|
2016-04-10 15:38:52 +08:00
|
|
|
}
|
2016-02-20 16:40:18 +08:00
|
|
|
|
|
|
|
&-head {
|
2019-02-15 10:48:07 +08:00
|
|
|
min-height: @card-head-height;
|
|
|
|
margin-bottom: -1px; // Fix card grid overflow bug: https://gw.alipayobjects.com/zos/rmsportal/XonYxBikwpgbqIQBeuhk.png
|
|
|
|
padding: 0 @card-padding-base;
|
|
|
|
color: @card-head-color;
|
|
|
|
font-weight: 500;
|
|
|
|
font-size: @font-size-lg;
|
2017-03-18 15:16:03 +08:00
|
|
|
background: @card-head-background;
|
2017-01-31 16:05:10 +08:00
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
2018-08-26 12:34:42 +08:00
|
|
|
border-radius: @card-radius @card-radius 0 0;
|
2017-08-15 22:34:48 +08:00
|
|
|
.clearfix;
|
2017-09-20 21:56:56 +08:00
|
|
|
|
|
|
|
&-wrapper {
|
|
|
|
display: flex;
|
2018-10-26 23:02:15 +08:00
|
|
|
align-items: center;
|
2017-09-20 21:56:56 +08:00
|
|
|
}
|
2016-02-20 16:40:18 +08:00
|
|
|
|
|
|
|
&-title {
|
2019-02-15 10:48:07 +08:00
|
|
|
display: inline-block;
|
|
|
|
flex: 1;
|
2017-08-23 19:02:27 +08:00
|
|
|
padding: @card-head-padding 0;
|
2016-02-20 16:40:18 +08:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
2019-02-15 10:48:07 +08:00
|
|
|
text-overflow: ellipsis;
|
2016-02-20 16:40:18 +08:00
|
|
|
}
|
2017-08-09 14:34:10 +08:00
|
|
|
|
|
|
|
.@{ant-prefix}-tabs {
|
2017-08-15 22:50:00 +08:00
|
|
|
clear: both;
|
2019-02-15 10:48:07 +08:00
|
|
|
margin-bottom: -17px;
|
2018-09-01 12:58:52 +08:00
|
|
|
color: @text-color;
|
|
|
|
font-weight: normal;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-size: @font-size-base;
|
2017-08-09 14:34:10 +08:00
|
|
|
|
|
|
|
&-bar {
|
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
|
|
|
}
|
|
|
|
}
|
2016-02-20 16:40:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-extra {
|
2017-08-15 22:34:48 +08:00
|
|
|
float: right;
|
2019-02-15 10:48:07 +08:00
|
|
|
// https://stackoverflow.com/a/22429853/3040605
|
|
|
|
margin-left: auto;
|
2018-12-19 11:04:32 +08:00
|
|
|
padding: @card-head-padding 0;
|
2018-09-01 12:58:52 +08:00
|
|
|
color: @text-color;
|
|
|
|
font-weight: normal;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-size: @font-size-base;
|
2016-02-20 16:40:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-body {
|
2017-10-16 19:53:46 +08:00
|
|
|
padding: @card-padding-base;
|
2017-07-07 13:36:54 +08:00
|
|
|
.clearfix;
|
2016-02-20 16:40:18 +08:00
|
|
|
}
|
2016-02-22 16:25:13 +08:00
|
|
|
|
2018-09-01 13:07:20 +08:00
|
|
|
&-contain-grid:not(&-loading) &-body {
|
2017-08-08 21:13:29 +08:00
|
|
|
margin: -1px 0 0 -1px;
|
2017-07-28 12:10:43 +08:00
|
|
|
padding: 0;
|
2017-07-14 16:10:04 +08:00
|
|
|
}
|
|
|
|
|
2017-07-07 13:36:54 +08:00
|
|
|
&-grid {
|
2019-02-15 10:48:07 +08:00
|
|
|
float: left;
|
|
|
|
width: 33.33%;
|
|
|
|
padding: @card-padding-base;
|
2017-07-07 13:36:54 +08:00
|
|
|
border: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: 0;
|
2018-12-07 20:02:01 +08:00
|
|
|
box-shadow: 1px 0 0 0 @border-color-split, 0 1px 0 0 @border-color-split,
|
|
|
|
1px 1px 0 0 @border-color-split, 1px 0 0 0 @border-color-split inset,
|
|
|
|
0 1px 0 0 @border-color-split inset;
|
|
|
|
transition: all 0.3s;
|
2017-07-07 13:36:54 +08:00
|
|
|
&:hover {
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
box-shadow: @box-shadow-base;
|
|
|
|
}
|
|
|
|
}
|
2017-07-14 11:37:28 +08:00
|
|
|
|
2018-09-06 12:13:06 +08:00
|
|
|
&-contain-tabs > &-head &-head-title {
|
2017-08-23 19:02:27 +08:00
|
|
|
min-height: @card-head-height - @card-head-padding;
|
2019-02-15 10:48:07 +08:00
|
|
|
padding-bottom: 0;
|
2017-08-23 19:02:27 +08:00
|
|
|
}
|
|
|
|
|
2019-06-17 18:07:22 +08:00
|
|
|
&-contain-tabs > &-head &-extra {
|
2017-08-23 19:02:27 +08:00
|
|
|
padding-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2018-08-26 12:34:42 +08:00
|
|
|
&-cover {
|
|
|
|
> * {
|
|
|
|
display: block;
|
2019-02-15 10:48:07 +08:00
|
|
|
width: 100%;
|
2018-08-26 12:34:42 +08:00
|
|
|
}
|
|
|
|
img {
|
|
|
|
border-radius: @card-radius @card-radius 0 0;
|
|
|
|
}
|
2017-08-09 14:34:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-actions {
|
2017-09-27 22:32:49 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2019-02-15 10:48:07 +08:00
|
|
|
list-style: none;
|
|
|
|
background: @card-actions-background;
|
|
|
|
border-top: @border-width-base @border-style-base @border-color-split;
|
|
|
|
.clearfix;
|
2017-08-09 14:34:10 +08:00
|
|
|
|
|
|
|
& > li {
|
|
|
|
float: left;
|
|
|
|
margin: 12px 0;
|
|
|
|
color: @text-color-secondary;
|
2019-02-15 10:48:07 +08:00
|
|
|
text-align: center;
|
2017-08-09 14:34:10 +08:00
|
|
|
|
2019-08-09 11:13:15 +08:00
|
|
|
> span {
|
2019-02-15 10:48:07 +08:00
|
|
|
position: relative;
|
2019-07-18 13:49:43 +08:00
|
|
|
display: block;
|
2019-02-15 10:48:07 +08:00
|
|
|
min-width: 32px;
|
2017-08-09 14:34:10 +08:00
|
|
|
font-size: 14px;
|
2017-10-27 15:08:10 +08:00
|
|
|
line-height: 22px;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: pointer;
|
2017-08-09 14:34:10 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: @primary-color;
|
2018-12-07 20:02:01 +08:00
|
|
|
transition: color 0.3s;
|
2017-08-09 14:34:10 +08:00
|
|
|
}
|
|
|
|
|
2019-07-18 13:49:43 +08:00
|
|
|
a,
|
2019-08-09 11:13:15 +08:00
|
|
|
> .anticon {
|
2018-04-04 15:59:03 +08:00
|
|
|
display: inline-block;
|
|
|
|
width: 100%;
|
2019-02-15 10:48:07 +08:00
|
|
|
color: @text-color-secondary;
|
|
|
|
line-height: 22px;
|
2019-08-09 11:13:15 +08:00
|
|
|
transition: color 0.3s;
|
2017-08-14 21:43:32 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
color: @primary-color;
|
|
|
|
}
|
|
|
|
}
|
2019-08-09 11:13:15 +08:00
|
|
|
|
|
|
|
> .anticon {
|
|
|
|
font-size: @card-action-icon-size;
|
|
|
|
line-height: 22px;
|
|
|
|
}
|
2017-08-09 14:34:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
border-right: @border-width-base @border-style-base @border-color-split;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-type-inner &-head {
|
|
|
|
padding: 0 @card-padding-base;
|
2017-10-19 10:01:59 +08:00
|
|
|
background: @background-color-light;
|
2017-08-09 14:34:10 +08:00
|
|
|
|
|
|
|
&-title {
|
2017-08-23 19:02:27 +08:00
|
|
|
padding: @card-inner-head-padding 0;
|
2017-10-18 17:16:14 +08:00
|
|
|
font-size: @font-size-base;
|
2017-08-09 14:34:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-type-inner &-body {
|
|
|
|
padding: 16px @card-padding-base;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-type-inner &-extra {
|
2017-08-23 19:02:27 +08:00
|
|
|
padding: @card-inner-head-padding + 1.5px 0;
|
2017-08-09 14:34:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-meta {
|
2017-10-27 15:08:10 +08:00
|
|
|
margin: -4px 0;
|
2017-12-16 18:11:22 +08:00
|
|
|
.clearfix;
|
2017-08-09 14:34:10 +08:00
|
|
|
|
|
|
|
&-avatar {
|
2017-12-16 18:11:22 +08:00
|
|
|
float: left;
|
2019-02-15 10:48:07 +08:00
|
|
|
padding-right: 16px;
|
2017-08-09 14:34:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-detail {
|
2017-12-16 18:11:22 +08:00
|
|
|
overflow: hidden;
|
|
|
|
> div:not(:last-child) {
|
2017-08-09 14:34:10 +08:00
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-title {
|
|
|
|
overflow: hidden;
|
|
|
|
color: @card-head-color;
|
|
|
|
font-weight: 500;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-size: @font-size-lg;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2017-08-09 14:34:10 +08:00
|
|
|
}
|
|
|
|
|
2017-10-27 15:08:10 +08:00
|
|
|
&-description {
|
2017-08-09 14:34:10 +08:00
|
|
|
color: @text-color-secondary;
|
|
|
|
}
|
|
|
|
}
|
2017-10-26 19:34:11 +08:00
|
|
|
|
2018-12-19 16:37:25 +08:00
|
|
|
&-loading {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2017-10-26 19:20:12 +08:00
|
|
|
&-loading &-body {
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-loading-content {
|
2017-10-26 19:34:11 +08:00
|
|
|
p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2017-10-26 19:20:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-loading-block {
|
|
|
|
height: 14px;
|
2018-04-20 11:19:30 +08:00
|
|
|
margin: 4px 0;
|
2018-12-04 13:11:31 +08:00
|
|
|
background: linear-gradient(90deg, @gradient-min, @gradient-max, @gradient-min);
|
2017-10-26 19:20:12 +08:00
|
|
|
background-size: 600% 600%;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-radius: @card-radius;
|
|
|
|
animation: card-loading 1.4s ease infinite;
|
2017-10-26 19:20:12 +08:00
|
|
|
}
|
2016-02-19 19:35:49 +08:00
|
|
|
}
|
2016-12-20 12:21:08 +08:00
|
|
|
|
|
|
|
@keyframes card-loading {
|
|
|
|
0%,
|
|
|
|
100% {
|
2018-12-07 20:02:01 +08:00
|
|
|
background-position: 0 50%;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
background-position: 100% 50%;
|
|
|
|
}
|
2016-12-20 12:21:08 +08:00
|
|
|
}
|
2018-11-18 05:35:56 +08:00
|
|
|
|
|
|
|
@import './size';
|