Files
vxe-table/styles/input.scss
xuliangzhan 6d6d4f70e0 update
2019-08-15 22:57:24 +08:00

49 lines
802 B
SCSS

/**Variable**/
/*input*/
.vxe-input--wrapper {
font-size: $vxe-font-size;
display: inline-block;
&.type--textarea {
width: 100%;
}
.vxe-input,
.vxe-textarea {
border-radius: 4px;
outline: 0;
padding: 4px 8px;
width: 100%;
color: $vxe-font-color;
border: 1px solid $vxe-input-border-color;
background-color: #FFF;
&:focus {
border: 1px solid $vxe-primary-color;
}
&[disabled] {
cursor: not-allowed;
background-color: $vxe-input-disabled-color;
}
}
.vxe-input {
height: 40px;
}
.vxe-textarea {
height: 100%;
}
&.size--medium {
.vxe-input {
height: 36px;
}
}
&.size--small {
.vxe-input {
height: 32px;
}
}
&.size--mini {
.vxe-input {
height: 28px;
}
}
}