Lindy 6d13e10fb5 feat: Field, Card, Cell 组件样式变量化 (#2212)
* feat(Cell): cell组件样式调整

* feat(Field): field组件样式调整

* feat(Cell): Cell组件的样式调整
2019-10-28 20:03:20 +08:00

126 lines
2.2 KiB
Plaintext

@import '../common/style/var.less';
@import '../common/style/theme.less';
.van-field {
&__body {
display: flex;
align-items: center;
&--textarea {
line-height: 1.2em;
.theme(min-height, '@cell-line-height');
}
&--textarea&--ios {
margin-top: -4.5px;
}
}
&__input {
position: relative;
display: block;
box-sizing: border-box;
width: 100%;
margin: 0;
padding: 0;
line-height: inherit;
text-align: left;
background-color: transparent;
border: 0;
resize: none;
.theme(color, '@field-input-text-color');
.theme(height, '@cell-line-height');
.theme(min-height, '@cell-line-height');
&--textarea {
.theme(height, '@field-text-area-min-height');
.theme(min-height, '@field-text-area-min-height');
}
&--error {
.theme(color, '@field-input-error-text-color');
}
&--disabled {
background-color: transparent;
opacity: 1;
.theme(color, '@field-input-disabled-text-color');
}
&--center {
text-align: center;
}
&--right {
text-align: right;
}
}
&__placeholder {
position: absolute;
top: 0;
right: 0;
left: 0;
pointer-events: none;
.theme(color, '@field-placeholder-text-color');
&--error {
.theme(color, '@field-error-message-color');
}
}
&__icon-root {
display: flex;
align-items: center;
.theme(min-height, '@cell-line-height');
}
&__clear-root,
&__icon-container {
line-height: inherit;
vertical-align: middle;
.theme(padding, '0 @padding-xs');
.theme(margin-right, '-@padding-xs');
}
&__clear-root,
&__icon-container,
&__button {
flex-shrink: 0;
}
&__clear-root {
.theme(color, '@field-clear-icon-color');
}
&__icon-container {
.theme(color, '@field-icon-container-color');
&:empty {
display: none;
}
}
&__button {
.theme(padding-left, '@padding-xs');
&:empty {
display: none;
}
}
&__error-message {
text-align: left;
.theme(font-size, '@field-error-message-text-font-size');
.theme(color, '@field-error-message-color');
&--center {
text-align: center;
}
&--right {
text-align: right;
}
}
}