add: `AssetSelector` and `TemplateSelector`. add: `popup-selector` style class. add: `ui.resolvePopup` function. add: `switch` in checkbox. add: `GridColumn.filterTemplate` supports. add: add `action` callback in `createIcon`. change: replace `setTimeout(..., 0)` with `requestAnimationFrame`. change: Popup result structure adjustment ({ result: any, popup: Popup }). change: complete add work order flow. change: reduce Popup title height. fix: Grid column sort in number.
24 lines
426 B
SCSS
24 lines
426 B
SCSS
@import "./functions/func.scss";
|
|
|
|
.ui-text,
|
|
.ui-input[type] {
|
|
font-size: var(--font-size);
|
|
font-family: var(--font-family);
|
|
|
|
@include outborder();
|
|
|
|
&.validation-error,
|
|
&:invalid {
|
|
border-color: var(--red-color);
|
|
|
|
&:focus,
|
|
&:hover {
|
|
border-color: var(--red-color);
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui-input {
|
|
text-indent: var(--text-indent);
|
|
line-height: var(--line-height);
|
|
} |