index.less 2.14 KB
Newer Older
DarkForst's avatar
DarkForst committed
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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
.work_search_form{
  display: flex;
  flex: 1;
  flex-direction: row;
  align-items: center;
}
.footer_btn{
  position: absolute;
  right: 10px;
  bottom: 10px;
}
.border_bottom{
  padding: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.wrap_page{
  position: relative;
  width: 100%;
  height: 100%;
}
.work_info_readonly_left{
  position: absolute;
  top: 0; right: 300px; bottom: 0; left: 0;
  :global{
    .ant-input[disabled], .ant-input-affix-wrapper-disabled{
      background: transparent;
    }
    .ant-input-affix-wrapper-disabled:hover{
      border-color: #d9d9d9;
    }
    .ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector{
      background: transparent;
    }
    .ant-picker.ant-picker-disabled{
      background: transparent;
    }
  }
}
.work_item_right{
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 290px;
}
.add_btn, .add_btn:hover, .add_btn:active, .add_btn:focus{
  flex: 1;
  color: #85C700;
  background: rgba(133,199,0,0.2);
  border: 1px solid #85C700;
}
.upload_box{
  display: flex;
  width: 100%;
  & > span:first-child{
    width: 100%;
    :global{
      .ant-upload.ant-upload-select{
        width: 100%;
      }
    }
  }
}

.fixed_bottom_box{
  position: fixed;
  right: 0; bottom: 0; left: 160px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 50px;
  padding: 0 20px;
  background: #fff;
  box-shadow: 0 2px 20px 0 rgba(137,137,137,0.20);

}
.bottom_btn{
  color: #fff;
  background: #1890FF;
}
.bottom_btn:hover, .bottom_btn:active, .bottom_btn:focus{
  color: #fff;
  background: #1890FF;
  border-color: #1890FF;
}

.drawer_tittle{
  margin-bottom: 10px;
  padding: 10px 20px;
  border-bottom: 1px solid #f0f0f0;
}


.no_list_box{
  :global{
    .ant-input[disabled],
    .ant-input-affix-wrapper-disabled,
    .ant-select-disabled.ant-select:not(.ant-select-customize-input) .ant-select-selector,
    .ant-picker.ant-picker-disabled,
    .ant-picker-input > input[disabled]{
      color: #000 !important;
    }
    .ant-select-disabled .ant-select-arrow,
    .ant-picker.ant-picker-disabled .ant-picker-suffix{
      display: none;
    }
  }
}