input-box.less 551 字节
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
.input-unit{
    position: relative;
    width: 100%;
    height: 100%;
    .unit-text{
        position: absolute;
        top: 0;
        right: 24px;
    }
    .ivu-input-number{
        width: 100%;
    }
    .ivu-input-number-input{
        text-align: left;
    }
    .ivu-input-wrapper{
      height: inherit;
      textarea{
        height: inherit;
      }
    }
    .textarea-disabled{
      textarea:disabled, textarea[disabled]{
        background-color: #f1f1f1;
        color: rgb(44, 44, 44);
        opacity: 0.7;
      }      
    }
}