index.less 1.02 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
@root-entry-name: 'default';
@import '~antd/es/style/themes/index.less';
@tree-custom-prefix-cls: ~'@{ant-prefix}-limit-curve';

.@{tree-custom-prefix-cls} {
  &-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
11
    position: relative;
12 13
  }

14 15 16 17 18
  &-title {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
19

20 21 22 23 24
    &-name {
      position: absolute;
      left: 0;
      font-size: 16px;
    }
25

26 27 28
    &-operate {
      position: absolute;
      right: 0;
29 30
    }

31 32
    .@{ant-prefix}-tabs {
      width: 100%;
33
    }
34

35 36 37
    .@{ant-prefix}-tabs-content {
      height: 100%;
    }
38

39 40
    .@{ant-prefix}-btn {
      margin-left: 10px;
41
    }
42 43
  }

44 45 46 47 48 49
  .@{ant-prefix}-modal-body {
    height: 650px;
  }

  .@{ant-prefix}-tabs-tabpane-active {
    height: 100%;
50
  }
51 52 53 54 55 56 57 58 59 60 61 62 63

  &-load {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 100;
  }
64
}