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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
| .interface-side-menu {
| display: inline-block;
| width: 300px;
| border-right: 2px solid #e8e8e8;
| height: 100%;
|
| .ant-input-search {
| margin: 10px 20px;
| width: calc(100% - 40px);
| .ant-input {
| border-radius: 20px;
| }
| }
| .title {
| padding-left: 20px;
| font-size: 16px;
| border-bottom: 1px solid #e8e8e8;
| padding-bottom: 3px;
| span {
| font-size: 14px;
| float: right;
| color: #fa541c;
| margin-right: 10px;
| cursor: pointer;
| }
| }
| .list-view {
| .ant-empty {
| margin-top: 50px;
| }
| .list-line {
| border-bottom: 1px solid #e8e8e8;
| .line-title {
| padding: 5px 15px;
| color: rgba(0, 0, 0, 0.85);
| }
| .line-item {
| position: relative;
| display: flex;
| padding-left: 25px;
| margin-bottom: 8px;
| transition: all 0.3s;
| .method {
| width: 42px;
| color: #faad14;
| font-size: 12px;
| font-weight: 600;
| line-height: 40px;
| }
| .inter {
| width: 225px;
| height: 42px;
| word-break: break-all;
| text-overflow: ellipsis;
| display: -webkit-box;
| -webkit-box-orient: vertical;
| -webkit-line-clamp: 2;
| overflow: hidden;
| }
| .action {
| width: 70px;
| position: absolute;
| line-height: 40px;
| right: 0px;
| height: 42px;
| background: #ffffff;
| padding-left: 15px;
| opacity: 0;
| transition: all 0.3s;
| .anticon {
| cursor: pointer;
| }
| .anticon:first-child {
| margin-right: 12px;
| }
| .anticon-delete {
| color: #fa541c;
| }
| .anticon-right {
| color: #1890ff;
| }
| }
| }
| .line-item:hover {
| background: #e9e9e9;
| .action {
| opacity: 1;
| background: #e9e9e9;
| }
| }
| }
| }
|
| .list-view {
| height: calc(100vh - 128px);
| overflow-x: hidden;
| overflow-y: auto;
| }
| .list-view::-webkit-scrollbar {
| width: 5px;
| }
| .list-view::-webkit-scrollbar-thumb {
| border-radius: 5px;
| box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.09);
| background: rgba(0, 0, 0, 0.09);
| }
| .list-view::-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);
| }
| }
|
|