app-form.less 958 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
.form-detail-show {
  display: block;
}
.form-detail-hidden {
  display: none;
}
.app-form {
  height: 100%;
  > .ivu-row {
      height: 100%;
      > .ivu-tabs {
          height: 100%;
          > .ivu-tabs-content {
              height: calc(100% - 50px);
              overflow: auto;
              > .ivu-tabs-tabpane {
                  height: 100%;
18
                  overflow: initial;
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
              }
          }
      }
      > .el-tabs {
          height: 100%;
          > .el-tabs__content {
              height: calc(100% - 62px);
              > .el-tab-pane {
                  height: 100%;
                  overflow: auto;
              }
          }
          .el-tabs__header {
              .el-tabs__nav-wrap::after {
                  background-color: var(--app-border-content);
                  height: 1px;
              }
              .el-tabs__item {
                  height: 36px;
              }
          }
      }
  }
}