干燥机配套车间生产管理系统/云平台前端
baoshiwei
2023-03-10 1fb197352b6a263646e4ccd3ed1c7854ede031dd
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
@prefix-cls: ~'@{namespace}-depart-user';
 
.@{prefix-cls} {
  &--tree-search {
    width: 100%;
    margin: 10px 0 20px;
  }
 
  &--base-info-form {
    @media (min-width: 576px) {
      .no-border {
        border: 0;
        box-shadow: none;
      }
 
      .ant-select.ant-select-disabled {
        .ant-select-selector {
          border: 0;
          color: black;
          background-color: transparent;
        }
 
        .ant-select-selector,
        .ant-select-selection-item {
          cursor: text !important;
          user-select: initial !important;
        }
 
        .ant-select-selection-search,
        .ant-select-arrow {
          display: none;
        }
      }
    }
  }
}
 
// 夜间模式样式兼容
[data-theme='dark'] .@{prefix-cls} {
  &--base-info-form {
    .ant-select.ant-select-disabled {
      .ant-select-selector {
        color: #c9d1d9;
        background-color: transparent;
      }
    }
  }
}