Blame view

antis-ncc-admin/src/components/ColumnDesign/index.scss 2.81 KB
de2bd2f9   “wangming”   项目初始化
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
  .columnDesign-container {
    height: 100%;
    width: 100%;
    position: relative;
  
    .main-board {
      height: 100%;
      width: auto;
      margin: 0 350px 0 0;
      padding: 20px 10px 10px;
      overflow: auto;
      overflow-x: hidden;
      background: #fff;
      border-radius: 4px;
  
      .cap {
        margin-bottom: 20px;
      }
  
      .noSearch {
        text-align: center;
        color: #666;
        padding: 5px;
      }
    }
  
    .right-board {
      width: 340px;
      position: absolute;
      right: 0;
      top: 0;
      height: 100%;
      padding-top: 3px;
      margin-left: 10px;
      background: #fff;
      border-radius: 4px;
      overflow: hidden;
  
      .field-box {
        position: relative;
        height: calc(100% - 42px);
        overflow: auto;
        overflow-x: hidden;
        padding: 10px;
      }
  
      >>>.top-tabs {
        .el-tabs__header {
          margin-bottom: 0 !important;
        }
  
        .el-tabs__nav {
          width: 100%;
        }
  
        .el-tabs__item {
          width: 33%;
          text-align: center;
        }
  
        &.top-tabs_app {
          .el-tabs__item {
            width: 25%;
          }
        }
      }
    }
  
    .setting-box {
      >>>.el-select {
        width: 100%;
      }
  
      .btnsList {
  
        .btn-label {
          width: 80px;
          display: inline-block;
          line-height: 32px;
        }
  
        >>>.el-checkbox {
          width: 100%;
          margin-bottom: 10px;
          margin-right: 0;
  
          .el-checkbox__input {
            line-height: 28px;
          }
  
          .el-checkbox__label {
            width: 226px;
          }
        }
      }
  
      .columnBtnList {
        >>>.el-checkbox {
          &:last-child {
            margin-bottom: 0;
          }
        }
      }
    }
  
    .typeList {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
  
      .item {
        width: 150px;
        margin-bottom: 15px;
  
        .item-img {
          width: 150px;
          height: 100px;
          background: #EBEEF5;
          border-radius: 4px;
          overflow: hidden;
          cursor: pointer;
          position: relative;
          border: 1px solid #EBEEF5;
  
          img {
            width: 100%;
            height: 100%;
            z-index: -1;
          }
  
          &.checked {
            border: 1px solid #409eff;
          }
  
          .icon-checked {
            display: block;
            width: 12px;
            height: 12px;
            border: 12px solid #409eff;
            border-left: 12px solid transparent;
            border-top: 12px solid transparent;
            border-bottom-right-radius: 4px;
            position: absolute;
            right: -1px;
            bottom: -1px;
  
            i {
              position: absolute;
              top: -2px;
              left: -2px;
              font-size: 12px;
              color: #fff;
            }
          }
        }
  
        .item-name {
          font-size: 12px;
          color: #707070;
          margin-top: 10px;
          text-align: center;
        }
      }
    }
  }