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
| .btn-log-wrap {
| position: relative;
| display: inline-block;
|
| >.anticon-rollback {
| color: purple;
| }
| .operation {
| text-align: center;
| .revert {
| color: #26C281;
| margin-right: 10px;
| cursor: pointer;
| padding: 5px;
| }
| .close {
| color: #ff4d4f;
| cursor: pointer;
| padding: 5px;
| }
| }
| }
| .btn-log-wrap.tip-sign::after {
| content: ' ';
| position: absolute;
| top: -2px;
| right: 2px;
| height: 8px;
| width: 8px;
| border-radius: 100%;
| background: #ff5b05;
| z-index: 1;
| }
|
|