File tree Expand file tree Collapse file tree 3 files changed +5
-6
lines changed
core/src/components/input Expand file tree Collapse file tree 3 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 109109 background : var (--background );
110110}
111111
112-
113112// Ionic Input Sizes
114113// --------------------------------------------------
115114
Original file line number Diff line number Diff line change 1212 * border should reflect that as a color.
1313 */
1414:host (.has-focus.input-fill-solid.ion-valid ) .native-wrapper ,
15- :host (.input-fill-solid.ion-touched.ion-invalid ) .native-wrapper {
15+ :host (.input-fill-solid.ion-touched.ion-invalid ) .native-wrapper {
1616 --border-color : var (--highlight-color );
1717}
1818
2121 * slightly darker on hover.
2222 */
2323@media (any-hover : hover) {
24- :host (:hover ){
24+ :host (:hover ) {
2525 --border-color : #{globals .$ion-border-focus-default } ;
2626 }
2727}
2828
2929// Input - Disabled
3030// ----------------------------------------------------------------
3131
32- :host (.input-fill-solid.input-disabled ){
32+ :host (.input-fill-solid.input-disabled ) {
3333 --background : #{globals .$ion-bg-input-bold-disabled } ;
3434 --placeholder-color : #{globals .$ion-text-disabled } ;
3535}
4646 * Background and border should be
4747 * much darker on focus.
4848 */
49- :host (.input-fill-solid.has-focus ){
49+ :host (.input-fill-solid.has-focus ) {
5050 --border-color : #{globals .$ion-border-focus-default } ;
5151}
Original file line number Diff line number Diff line change @@ -847,7 +847,7 @@ export class Input implements ComponentInterface {
847847 const size = this . getSize ( ) ;
848848 const shape = this . getShape ( ) ;
849849 const inItem = hostContext ( 'ion-item' , this . el ) ;
850- const shouldRenderHighlight = ( theme === 'md' ) && fill !== 'outline' && ! inItem ;
850+ const shouldRenderHighlight = theme === 'md' && fill !== 'outline' && ! inItem ;
851851 const labelPlacement = this . getLabelPlacement ( ) ;
852852
853853 const hasValue = this . hasValue ( ) ;
You can’t perform that action at this time.
0 commit comments