app-form.less 1.2 KB
Newer Older
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 49 50 51 52 53 54 55
.form-detail-show {
  display: block;
}
.form-detail-hidden {
  display: none;
}
.app-form {
  height: 100%;
  padding-top: 20px;
  .ivu-form-item{
    margin-bottom: 16px;
  }
  .app-form-item.label-bottom {
    >.editor >.ivu-form-item {
        margin-bottom: 0px;
    }
    >.editor >.ivu-form-item.ivu-form-item-error {
        >.ivu-form-item-content .ivu-form-item-error-tip {
            top: 125%;
        }
    }
    }
  > .ivu-row {
      height: 100%;
      > .ivu-tabs {
          height: 100%;
          > .ivu-tabs-content {
              height: calc(100% - 50px);
              overflow: auto;
              > .ivu-tabs-tabpane {
                  height: 100%;
                  overflow: initial;
              }
          }
      }
      > .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 {
                  height: 1px;
              }
              .el-tabs__item {
                  height: 36px;
              }
          }
      }
  }
}