king
2025-05-23 d5edf87014863eceaa44f28809ae4b54a39b9a8e
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
.mk-temp-list-wrap {
  .ant-modal-body {
    padding: 15px 20px;
  }
  .document-wrap {
    .ant-input-search {
      width: 200px;
      margin-bottom: 5px;
    }
    .document-title {
      display: flex;
      background: #e8e8e8;
      line-height: 38px;
      border: 1px solid #d8d8d8;
      border-bottom: none;
      padding-left: 38px;
      .folder-box {
        width: 200px;
        text-align: center;
      }
      .folder {
        flex: 1;
        text-align: center;
      }
    }
    .document-body {
      border: 1px solid #d8d8d8;
      height: 300px;
      .file-wrap {
        width: 100%;
        height: 100%;
        overflow-y: auto;
        .file-item {
          border-bottom: 1px solid #e8e8e8;
          height: 40px;
          line-height: 40px;
          display: flex;
 
          .square-select {
            top: 12px;
            margin: 0 10px;
          }
          .folder-name {
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            vertical-align: top;
            text-align: center;
            width: 200px;
            padding: 0 5px;
          }
          .file-name {
            flex: 1;
            display: inline-block;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            vertical-align: top;
            text-align: center;
            width: calc(100% - 200px);
            padding: 0 5px;
          }
        }
      }
    }
 
    .file-wrap::-webkit-scrollbar {
      width: 7px;
    }
    .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);
    }
    .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;
      border-radius: 16px;
      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::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);
    }
  }
}