| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298 |
- @import '@/uni_modules/lime-style/index.scss';
- @import '@/uni_modules/lime-style/mixins/utilities.scss';
- @import '@/uni_modules/lime-style/mixins/hairline.scss';
- $input: #{$prefix}-input;
- /* #ifdef uniVersion >= 4.75 */
- $use-css-var: true;
- /* #endif */
- $input-padding-y: create-var(input-padding-y, $spacer); //输入框垂直方向内间距
- $input-padding-x: create-var(input-padding-x, $spacer); //输入框垂直方向内间距
- $input-text-color: create-var(input-text-color, $text-color-1); // 'default' 状态输入框文本颜色
- $input-success-text-color: create-var(input-success-text-color, $success-color); // 'success' 状态输入框文本颜色
- $input-warning-text-color: create-var(input-warning-text-color, $warning-color); // 'warning' 状态输入框文本颜色
- $input-error-text-color: create-var(input-error-text-color, $error-color); // 'error' 状态输入框文本颜色
- $input-tips-color: create-var(input-tips-color, $text-color-3); // 'default' 状态辅助文本颜色
- $input-success-tips-color: create-var(input-success-tips-color, $success-color); // 'success' 状态辅助文本颜色
- $input-warning-tips-color: create-var(input-warning-tips-color, $warning-color); // 'warning' 状态辅助文本颜色
- $input-error-tips-color: create-var(input-error-tips-color, $error-color); // 'error' 状态辅助文本颜色
- $input-bg-color: create-var(input-bg-color, $bg-color-container); // 输入框背景颜色
- $input-border-color: create-var(input-border-color, $border-color-2); // 输入框分割线颜色
- $input-border-left-space: create-var(input-border-left-space, $spacer);
- $input-border-right-space: create-var(input-border-right-space, 0);
- $input-placeholder-text-color: create-var(input-placeholder-text-color, $text-color-3); // 输入框占位符文本颜色
- $input-placeholder-text-font-size: create-var(input-placeholder-text-font-size, 28rpx); // 输入框占位符文本字体大小
- $input-prefix-icon-color: create-var(input-prefix-icon-color, $text-color-1); // // 输入框前缀图标颜色
- $input-suffix-icon-color: create-var(input-suffix-icon-color, $text-color-3); // 输入框后缀图标颜色
- $input-suffix-icon-size: create-var(input-suffix-icon-size, 22px); // 输入框后缀图标颜色
- $input-label-text-color: create-var(input-label-text-color, $text-color-1); // 左侧文本颜色
- $input-suffix-text-color: create-var(input-suffix-text-color, $text-color-1); // 后置图标前的后置内容文本颜色
- $input-disabled-text-color: create-var(input-disabled-text-color, $text-color-4); // 输入框禁用态文本颜色
- $input-disabled-bg-color: create-var(input-disabled-bg-color, $fill-3); // 输入框禁用态文本颜色
- $input-border-radius: create-var(input-border-radius, $border-radius); // 边框圆角大小
- $input-label-font-size: create-var(input-label-min-width, $font-size-md);
- $input-classic-padding-x: create-var(input-classic-padding-x, $spacer);
- $input-classic-padding-y: create-var(input-classic-padding-y, $spacer-sm);
- /* #ifndef UNI-APP-X && APP */
- $input-label-min-width: create-var(input-label-min-width, 2em);
- $input-label-max-width: create-var(input-label-max-width, 5em);
- /* #endif */
- /* #ifdef UNI-APP-X && APP */
- $input-label-min-width: create-var(input-label-min-width, 32px);
- $input-label-max-width: create-var(input-label-max-width, 80px);
- /* #endif */
- .#{$input} {
- @include flex;
- background-color: $input-bg-color;
- align-items: center;
- // flex: 1;
- width: 100%;
- box-sizing: border-box;
- // padding: $input-padding-y $input-padding-x;
- @include padding($input-padding-y $input-padding-x);
-
- &--horizontal {
- @include flex-row;
- }
- &--vertical {
- @include flex-column;
- align-items: stretch;//flex-start;
- }
- /* #ifdef UNI-APP-X && APP */
- &__border {
- position: absolute;
- left: $input-border-left-space;
- right: $input-border-right-space;
- bottom: 0;
- height: 1rpx;
- background-color: $input-border-color;
- }
- /* #endif */
- &--border {
- position: relative;
- /* #ifdef APP-HARMONY */
- // border-bottom: 0.5px solid $input-border-color;
- /* #endif */
- /* #ifndef UNI-APP-X && APP */
- &::after {
- @include hairline-bottom($input-border-color, $input-border-left-space, $input-border-right-space)
- }
- /* #endif */
- }
- &--classic {
- // padding: $input-classic-padding;
- @include padding($input-classic-padding-y $input-classic-padding-x);
- // border-radius: $input-border-radius;
- @include border-radius($input-border-radius);
- // border: 0.5px solid $input-border-color;
- border-width: 0.5px;
- border-style: solid;
- // align-items: center;
- &-default {
- border-color: $input-border-color
- }
- &-error {
- border-color: $input-error-tips-color
- }
- &-success {
- border-color: $input-success-tips-color
- }
- &-warning {
- border-color: $input-warning-tips-color
- }
- &-disabled {
- background-color: $input-disabled-bg-color
- }
- }
-
- &__wrap--prefix {
- @include flex;
- @include flex-row;
- align-items: center;
- }
- &__icon--prefix {
- font-size: 44rpx;
- color: $input-prefix-icon-color;
-
- /* #ifndef UNI-APP-X && APP */
- display: inline-flex;
- /* #endif */
-
- /* #ifndef UNI-APP-X && APP*/
- text {
- font-size: inherit;
- color: inherit
- }
- /* #endif */
- }
-
- &__label {
- min-width: $input-label-min-width;
-
- font-size: $font-size-md;
- line-height: 48rpx;
- color: $input-label-text-color;
- margin-right: $spacer;
- /* #ifndef UNI-APP-X && APP*/
- word-wrap: break-word;
- /* #endif */
- .#{$input}--horizontal & {
- max-width: $input-label-max-width;
- }
- .#{$input}--vertical & {
- font-size: $font-size;
- padding-bottom: 8rpx;
- }
- &--gap {
- margin-left: 8rpx;
- }
- }
- &__wrap {
- // width: 100%;
- @include flex;
- @include flex-column;
- // flex-wrap: wrap; // 鸿蒙加上这句会导致提示文本不显示
- justify-content: center;
- // flex-shrink: 1;
- flex: 1;
-
- .#{$input}__content {
- @include flex;
- @include flex-row;
- width: 100%;
- align-items: center;
- // line-height: 48rpx;
- // font-size: $font-size-md;
- }
-
- &--clearable-icon,
- &--suffix-icon,
- &--suffix {
- flex: 0 0 auto;
- padding-left: $spacer-sm;
- box-sizing: content-box;
- }
-
- &--clearable-icon,
- &--suffix-icon {
-
- font-size: $input-suffix-icon-size !important;
- color: $input-suffix-icon-color !important;
-
- /* #ifndef UNI-APP-X && APP*/
- display: inline-flex;
- text {
- font-size: inherit;
- color: inherit
- }
- /* #endif */
- }
-
- &--suffix {
- // font-size: $font-size-md;
- // color: $input-suffix-text-color;
- &-text{
- font-size: $font-size-md;
- color: $input-suffix-text-color;
- }
- /* #ifndef UNI-APP-X && APP*/
- text {
- font-size: inherit;
- color: inherit
- }
- /* #endif */
- }
- }
-
- &__control {
- flex: 1;
- /* #ifdef WEB */
- display: flex;
- align-items: center;
- /* #endif */
- box-sizing: border-box;
- // width: 100%;
- min-width: 0; // for flex-shrink in field__button
- min-height: 48rpx;
- margin: 0;
- padding: 0;
- color: $input-text-color;
- // line-height: inherit;
- background-color: transparent;
- border: 0;
- // resize: none;
- // font-size: inherit;
- /* #ifndef UNI-APP-X && APP */
- line-height: 48rpx;
- /* #endif */
- font-size: $font-size-md;
-
- &--disabled {
- color: $input-disabled-text-color;
-
- opacity: 1;
- /* #ifndef UNI-APP-X && APP */
- cursor: not-allowed;
- -webkit-text-fill-color: currentColor; // fix disabled color in iOS
- /* #endif */
- }
-
- &--read-only {
- /* #ifndef UNI-APP-X && APP */
- cursor: default;
- /* #endif */
- }
- }
- &--left {
- text-align: left;
- }
-
- &--right {
- text-align: right;
- }
-
- &--center {
- text-align: center;
- }
-
- &__placeholder {
- color: $input-placeholder-text-color;
- font-size: $input-placeholder-text-font-size;
- &--disabled {
- font-size: $input-placeholder-text-font-size;
- color: $input-disabled-text-color;
- }
- }
- &__tips {
- font-size: $font-size-sm;
- line-height: 40rpx;
- padding-top: 8rpx;
-
- &--default {
- color: $input-tips-color;
- }
- &--success {
- color: $input-success-tips-color;
- }
- &--warning {
- color: $input-warning-tips-color;
- }
- &--error {
- color: $input-error-tips-color;
- }
-
- }
- }
|