king
2019-09-07 c2a10e60d47895a58007201fd1fa88e453ddd653
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
.content-box {
  padding-top: 48px;
 
  .content-header {
    width: 100%;
    height: 100%;
    // .ant-tabs .ant-tabs-top-content.ant-tabs-content-animated {
    //   transition: margin-left 0s cubic-bezier(0.645, 0.045, 0.355, 1);
    // }
    .ant-tabs-tab {
      padding: 18px 16px 6px;
      cursor: default;
      span i {
        position: relative;
        left: 7px;
        top: -6px;
        font-size: 10px;
        margin: 0px;
        cursor: pointer;
      }
      span.tab-name {
        cursor: pointer;
      }
    }
    iframe {
      width: 100%;
      height: calc(100vh - 115px);
      overflow-y: scroll;
      border: 0;
      // &:-webkit-scrollbar {
      //   width: 4px;
      //   height: 4px;
      // }
      // &:-webkit-scrollbar-thumb {
      //     border-radius: 5px;
      //     box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
      //     background: rgba(0,0,0,0.2);
      // }
      // &:-webkit-scrollbar-track {/*滚动条里面轨道*/
      //     box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
      //     border-radius: 0;
      //     background: rgba(0,0,0,0.1);
      // }
    }
  }
}