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
75
76
77
78
79
80
81
82
83
84
85
86
| .model-calendar-tab {
| position: absolute;
| top: 0;
| z-index: 2;
| >.anticon-plus {
| position: absolute;
| font-size: 18px;
| left: 10px;
| top: 10px;
| color: #26c281;
| cursor: pointer;
| }
| .tab-control {
| position: absolute;
| padding: 15px 0px 0px 10px;
| left: 0px;
| top: 0px;
|
| span:not(.anticon) {
| display: inline-block;
| white-space: nowrap;
| font-size: 16px;
| cursor: pointer;
| padding: 0 10px;
| border-bottom: 2px solid #1890ff;
| }
|
| .anticon-edit {
| position: absolute;
| font-size: 14px;
| left: 10px;
| top: 2px;
| color: #1890ff;
| cursor: pointer;
| display: none;
| }
| .anticon-close {
| position: absolute;
| font-size: 14px;
| left: 35px;
| top: 2px;
| color: #ff4d4f;
| cursor: pointer;
| display: none;
| }
| }
| .tab-control:hover {
| .anticon-edit {
| display: inline-block;
| }
| .anticon-close {
| display: inline-block;
| }
| }
| }
|
| .model-calendar-tab-modal {
| .ant-modal {
| top: 50px;
| padding-bottom: 5px;
| .ant-modal-body {
| max-height: calc(100vh - 190px);
| overflow-y: auto;
| // .ant-empty {
| // margin: 15vh 8px;
| // }
| }
| .ant-modal-body::-webkit-scrollbar {
| width: 7px;
| }
| .ant-modal-body::-webkit-scrollbar-thumb {
| border-radius: 5px;
| box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.13);
| background: rgba(0, 0, 0, 0.13);
| }
| .ant-modal-body::-webkit-scrollbar-track {
| box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.05);
| border-radius: 3px;
| border: 1px solid rgba(0, 0, 0, 0.07);
| background: rgba(0, 0, 0, 0);
| }
| .ant-empty-normal {
| margin: 5px 0px;
| }
| }
| }
|
|