king
2020-05-05 92108e6c93de657838bbd766a9eb4f27d85e1c2d
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
.model-table-tab-list {
  clear: both;
  .tab-line-list {
    position: relative;
    padding: 30px 20px 0px;
    .ant-switch {
      position: absolute;
      right: 20px;
      top: 20px;
    }
    > .ant-row {
      min-height: 47px;
      .page-card {
        position: relative;
        padding: 0px;
        > div {
          padding: 12px 0px 0px;
          cursor: move;
        }
      }
      .ant-tabs-tab {
        cursor: default;
        .edit {
          position: absolute;
          left: 0;
          top: 0px;
          color: #1890ff;
          cursor: pointer;
          display: none;
        }
        .edit.close {
          left: 20px;
          color: #ff4d4f;
        }
      }
      .ant-tabs-bar {
        min-height: 55px;
      }
      .ant-tabs-tab:hover {
        .edit {
          display: inline-block;
        }
      }
      .ant-tabs-content {
        .ant-tabs-tabpane img {
          width: 100%;
        }
      }
    }
    > .anticon-question-circle {
      color: #c49f47;
      position: absolute;
      left: 5px;
      top: 20px;
    }
    > .anticon-plus {
      position: absolute;
      font-size: 18px;
      right: 25px;
      top: 50px;
      z-index: 1;
      color: #26C281;
      cursor: pointer;
    }
    > .anticon-delete {
      position: absolute;
      font-size: 19px;
      right: 25px;
      top: 50px;
      z-index: 1;
      color: #ff4d4f;
      cursor: pointer;
    }
    > .anticon-arrow-up {
      position: absolute;
      right: 55px;
      font-size: 19px;
      z-index: 1;
      top: 50px;
      color: #1890ff;
      cursor: pointer;
    }
    > .anticon-arrow-down {
      position: absolute;
      right: 55px;
      font-size: 19px;
      z-index: 1;
      top: 50px;
      color: purple;
      cursor: pointer;
    }
    > .anticon-arrow-down + .anticon-arrow-up {
      right: 85px;
    }
    .ant-tabs-nav-container-scrolling {
      margin-right: 50px;
    }
  }
}