1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
| .line-card-edit-box {
| margin-bottom: 30px;
| padding: 30px 20px;
|
| .ant-card.chart-card {
| min-height: 100px;
|
| .ant-card-head {
| min-height: 40px;
| line-height: 2;
| .ant-card-head-title {
| color: #000000;
| font-weight: 500;
| }
| .ant-card-extra {
| cursor: pointer;
| color: #1890ff;
| }
| }
| }
|
| .ant-card.ant-card-bordered .ant-card-body {
| padding: 20px;
| zoom: 1;
|
| .ant-card-meta {
| position: relative;
| >.anticon-plus {
| color: #26C281;
| position: absolute;
| right: -15px;
| top: -5px;
| padding: 5px;
| }
|
| .ant-card-meta-avatar {
| position: absolute;
| top: 0px;
| left: 0px;
| }
| // .ant-card-meta-avatar + .ant-card-meta-detail {
| // float: left;
| // }
| .ant-avatar-image {
| box-sizing: border-box;
| margin: 0;
| padding: 0;
| font-variant: tabular-nums;
| line-height: 1.5;
| list-style: none;
| font-feature-settings: 'tnum';
| position: relative;
| display: inline-block;
| overflow: hidden;
| color: #fff;
| white-space: nowrap;
| text-align: center;
| vertical-align: middle;
| border-radius: 50%;
|
| img {
| width: 100%;
| height: 100%;
| }
| }
| }
| }
|
| .chart-title {
| margin-bottom: 10px;
| margin-left: 0px;
| margin-right: 0px;
| }
| }
|
|