zu 0.3.3

Yew web components, implementing Material Design
Documentation
// Copyright (c) 2024 Xu Shaohua <shaohua@biofan.org>. All rights reserved.
// Use of this source is governed by Lesser General Public License
// that can be found in the LICENSE file.


/* Styles for OutlinedInput */

// Styles applied to the root element.
.ZuOutlinedInput-root {

}

// Styles applied to the root element if the color is secondary.
.ZuOutlinedInput-colorSecondary {

}

// Styles applied to the root element if the component is focused.
.ZuOutlinedInput-focused {

}

// Styles applied to the root element if disabled={true}.
.ZuOutlinedInput-disabled {

}

// Styles applied to the root element if startAdornment is provided.
.ZuOutlinedInput-adornmentStart {

}

// Styles applied to the root element if endAdornment is provided.
.ZuOutlinedInput-adornmentEnd {

}

// State class applied to the root element if error={true}.
.ZuOutlinedInput-error {

}

// Styles applied to the input element if size="small".
.ZuOutlinedInput-sizeSmall {

}

// Styles applied to the root element if multiline={true}.
.ZuOutlinedInput-multiline {

}

// Styles applied to the NotchedOutline element.
.ZuOutlinedInput-notchedOutline {

}

// Styles applied to the input element.
.ZuOutlinedInput-input {

}

// Styles applied to the input element if size="small".
.ZuOutlinedInput-inputSizeSmall {

}

// Styles applied to the input element if multiline={true}.
.ZuOutlinedInput-inputMultiline {

}

// Styles applied to the input element if startAdornment is provided.
.ZuOutlinedInput-inputAdornmentStart {

}

// Styles applied to the input element if endAdornment is provided.
.ZuOutlinedInput-inputAdornmentEnd {

}

// Styles applied to the input element if type="search".
.ZuOutlinedInput-inputTypeSearch {

}