king
2023-02-14 3620d67cfd2f2af19ef4d656734badd4445c90b8
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
.mk-temp-list-wrap {
  .ant-modal-body {
    padding: 15px;
  }
  .document-wrap {
    .document-title {
      display: flex;
      background: #e8e8e8;
      line-height: 38px;
      border: 1px solid #d8d8d8;
      border-bottom: none;
      .folder-box {
        width: 200px;
        text-align: center;
        border-right: 1px solid #d8d8d8;
      }
      .folder {
        flex: 1;
        .square-select {
          top: 3px;
          margin: 0 10px;
        }
      }
    }
    .document-body {
      border: 1px solid #d8d8d8;
      height: 300px;
      display: flex;
      .doc-name {
        width: 200px;
        text-align: center;
        border-right: 1px solid #d8d8d8;
        height: 100%;
        overflow-y: auto;
        div {
          border-bottom: 1px solid #e8e8e8;
          height: 40px;
          line-height: 40px;
        }
        .active {
          background: var(--mk-sys-color1);
        }
      }
      .file-wrap {
        flex: 1;
        width: calc(100% - 200px);
        height: 100%;
        overflow-y: auto;
        .file-item {
          border-bottom: 1px solid #e8e8e8;
          height: 40px;
          line-height: 40px;
 
          .square-select {
            top: 4px;
            margin: 0 10px;
          }
          img {
            width: 20px;
            height: 20px;
            margin-top: -2px;
            margin-right: 5px;
          }
          .file-name {
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            vertical-align: top;
            width: calc(100% - 90px);
          }
        }
      }
    }
 
    .doc-name::-webkit-scrollbar, .file-wrap::-webkit-scrollbar {
      width: 7px;
    }
    .doc-name::-webkit-scrollbar-thumb, .file-wrap::-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);
    }
    .doc-name::-webkit-scrollbar-track, .file-wrap::-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);
    }
 
    .square-select {
      position: relative;
      display: inline-block;
      width: 16px;
      height: 16px;
      border: 1px solid #cccccc;
      box-sizing: content-box;
      margin: auto;
      margin-right: 5px;
      background-color: #ffffff;
      transition: border-color 0.2s;
      cursor: pointer;
    }
 
    .square-select.active {
      border-color: var(--mk-sys-color);
      background: var(--mk-sys-color);
    }
    .square-select.half {
      border-color: var(--mk-sys-color);
    }
    .square-select.disabled {
      border-color: #e8e8e8;
      background: #e8e8e8;
      cursor: default;
    }
    .square-select.disabled::before {
      border-color: #e8e8e8;
    }
    .square-select.half::before {
      display: none;
    }
    .square-select.half::after {
      position: absolute;
      top: 4px;
      left: 4px;
      content: ' ';
      display: block;
      width: 8px;
      height: 8px;
      background: var(--mk-sys-color);
    }
 
    .square-select::before {
      position: relative;
      top: 1px;
      left: 6px;
      content: ' ';
      display: block;
      width: 5px;
      height: 11px;
      border-style: solid;
      border-width: 0 2px 2px 0;
      border-color: #ffffff;
      transform: rotate(45deg);
    }
  }
}