king
2022-12-09 a560b16d9f5fac64bec18d7ac6dc9ad0f6a138f7
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
.mk-proc-wrap {
  position: relative;
  padding: 65px 20px 0px;
  
  .control-wrap {
    display: flex;
 
    .search-wrap {
      width: 300px;
 
      .ant-btn[disabled] {
        background-color: #1890ff!important;
        border-color: #1890ff!important;
        color: #ffffff!important;
        opacity: 0.5;
      }
    }
  }
 
  .edit-wrap {
    margin-top: 10px;
    .CodeMirror {
      height: calc(100vh - 130px);
    }
    .anticon-fullscreen {
      display: none;
    }
    .anticon-format-painter {
      top: 10px;
    }
    .CodeMirror-gutters {
      background-color: #ffffff;
    }
  }
}