123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360 |
- @import "mixins/mixins";
- @import "common/var";
- @include b(textarea) {
- position: relative;
- display: inline-block;
- width: 100%;
- vertical-align: bottom;
- font-size: $--font-size-base;
- @include e(inner) {
- display: block;
- resize: vertical;
- padding: 5px 15px;
- line-height: 1.5;
- box-sizing: border-box;
- width: 100%;
- font-size: inherit;
- color: $--input-font-color;
- background-color: $--input-background-color;
- background-image: none;
- border: $--input-border;
- border-radius: $--input-border-radius;
- transition: $--border-transition-base;
- &::placeholder {
- color: $--input-placeholder-color;
- }
- &:hover {
- border-color: $--input-hover-border;
- }
- &:focus {
- outline: none;
- border-color: $--input-focus-border;
- }
- }
- & .el-input__count {
- color: $--color-info;
- background: $--color-white;
- position: absolute;
- font-size: 12px;
- bottom: 5px;
- right: 10px;
- }
- @include when(disabled) {
- .el-textarea__inner {
- background-color: $--input-disabled-fill;
- border-color: $--input-disabled-border;
- color: $--input-disabled-color;
- cursor: not-allowed;
- &::placeholder {
- color: $--input-disabled-placeholder-color;
- }
- }
- }
- @include when(exceed) {
- .el-textarea__inner {
- border-color: $--color-danger;
- }
- .el-input__count {
- color: $--color-danger;
- }
- }
- }
- @include b(input) {
- position: relative;
- font-size: $--font-size-base;
- display: inline-block;
- width: 100%;
- @include scroll-bar;
- & .el-input__clear {
- color: $--input-icon-color;
- font-size: $--input-font-size;
- cursor: pointer;
- transition: $--color-transition-base;
- &:hover {
- color: $--input-clear-hover-color;
- }
- }
- & .el-input__count {
- height: 100%;
- display: inline-flex;
- align-items: center;
- color: $--color-info;
- font-size: 12px;
- .el-input__count-inner {
- background: $--color-white;
- line-height: initial;
- display: inline-block;
- padding: 0 5px;
- }
- }
- @include e(inner) {
- -webkit-appearance: none;
- background-color: $--input-background-color;
- background-image: none;
- border-radius: $--input-border-radius;
- border: $--input-border;
- box-sizing: border-box;
- color: $--input-font-color;
- display: inline-block;
- font-size: inherit;
- height: $--input-height;
- line-height: $--input-height;
- outline: none;
- padding: 0 15px;
- transition: $--border-transition-base;
- width: 100%;
- &::-ms-reveal {
- display: none;
- }
- &::placeholder {
- color: $--input-placeholder-color;
- }
- &:hover {
- border-color: $--input-hover-border;
- }
- &:focus {
- outline: none;
- border-color: $--input-focus-border;
- }
- }
- @include e(suffix) {
- position: absolute;
- height: 100%;
- right: 5px;
- top: 0;
- text-align: center;
- color: $--input-icon-color;
- transition: all .3s;
- pointer-events: none;
- }
- @include e(suffix-inner) {
- pointer-events: all;
- }
- @include e(prefix) {
- position: absolute;
- height: 100%;
- left: 5px;
- top: 0;
- text-align: center;
- color: $--input-icon-color;
- transition: all .3s;
- }
- @include e(icon) {
- height: 100%;
- width: 25px;
- text-align: center;
- transition: all .3s;
- line-height: $--input-height;
- &:after {
- content: '';
- height: 100%;
- width: 0;
- display: inline-block;
- vertical-align: middle;
- }
- }
- @include e(validateIcon) {
- pointer-events: none;
- }
- @include when(active) {
- .el-input__inner {
- outline: none;
- border-color: $--input-focus-border;
- }
- }
- @include when(disabled) {
- .el-input__inner {
- background-color: $--input-disabled-fill;
- border-color: $--input-disabled-border;
- color: $--input-disabled-color;
- cursor: not-allowed;
- &::placeholder {
- color: $--input-disabled-placeholder-color;
- }
- }
- .el-input__icon {
- cursor: not-allowed;
- }
- }
- @include when(exceed) {
- .el-input__inner {
- border-color: $--color-danger;
- }
- .el-input__suffix {
- .el-input__count {
- color: $--color-danger;
- }
- }
- }
- @include m(suffix) {
- .el-input__inner {
- padding-right: 30px;
- }
- }
- @include m(prefix) {
- .el-input__inner {
- padding-left: 30px;
- }
- }
- @include m(medium) {
- font-size: $--input-medium-font-size;
- @include e(inner) {
- height: $--input-medium-height;
- line-height: $--input-medium-height;
- }
- .el-input__icon {
- line-height: $--input-medium-height;
- }
- }
- @include m(small) {
- font-size: $--input-small-font-size;
- @include e(inner) {
- height: $--input-small-height;
- line-height: $--input-small-height;
- }
- .el-input__icon {
- line-height: $--input-small-height;
- }
- }
- @include m(mini) {
- font-size: $--input-mini-font-size;
- @include e(inner) {
- height: $--input-mini-height;
- line-height: $--input-mini-height;
- }
- .el-input__icon {
- line-height: $--input-mini-height;
- }
- }
- }
- @include b(input-group) {
- line-height: normal;
- display: inline-table;
- width: 100%;
- border-collapse: separate;
- border-spacing:0;
- > .el-input__inner {
- vertical-align: middle;
- display: table-cell;
- }
- @include e((append, prepend)) {
- background-color: $--background-color-base;
- color: $--color-info;
- vertical-align: middle;
- display: table-cell;
- position: relative;
- border: $--border-base;
- border-radius: $--input-border-radius;
- padding: 0 20px;
- width: 1px;
- white-space: nowrap;
- &:focus {
- outline: none;
- }
- .el-select,
- .el-button {
- display: inline-block;
- margin: -10px -20px;
- }
- button.el-button,
- div.el-select .el-input__inner,
- div.el-select:hover .el-input__inner {
- border-color: transparent;
- background-color: transparent;
- color: inherit;
- border-top: 0;
- border-bottom: 0;
- }
- .el-button,
- .el-input {
- font-size: inherit;
- }
- }
- @include e(prepend) {
- border-right: 0;
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- @include e(append) {
- border-left: 0;
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- @include m(prepend) {
- .el-input__inner {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- .el-select .el-input.is-focus .el-input__inner {
- border-color: transparent;
- }
- }
- @include m(append) {
- .el-input__inner {
- border-top-right-radius: 0;
- border-bottom-right-radius: 0;
- }
- .el-select .el-input.is-focus .el-input__inner {
- border-color: transparent;
- }
- }
- }
- /** disalbe default clear on IE */
- .el-input__inner::-ms-clear {
- display: none;
- width: 0;
- height: 0;
- }
|