chore(input): lint styles and add TODO for future work

This commit is contained in:
Brandy Carney
2024-04-23 16:01:12 -04:00
parent d7eb539131
commit c6127e91f0
4 changed files with 4 additions and 5 deletions

View File

@ -80,7 +80,6 @@
min-height: 40px;
}
// Input Fill: Outline, Outline Container
// ----------------------------------------------------------------
@ -98,7 +97,6 @@
border: var(--border-width) var(--border-style) var(--border-color);
}
// Input Fill: Outline, Label Placement: Stacked
// ----------------------------------------------------------------
@ -136,7 +134,8 @@
:host(.input-fill-outline.input-disabled) .native-wrapper {
--background: #{$ionic-color-neutral-10};
border-radius: inherit;
@include border-radius(inherit);
background: var(--background);
}

View File

@ -34,7 +34,7 @@
}
.input-clear-icon.ion-focused {
border-radius: #{$ionic-border-radius-rounded-small};
@include border-radius($ionic-border-radius-rounded-small);
outline: #{$ionic-border-size-medium} solid #{$ionic-color-primary-100};

View File

@ -1,3 +1,2 @@
// Ionic Input
// --------------------------------------------------

View File

@ -499,6 +499,7 @@ export class Input implements ComponentInterface {
return labelPlacement;
}
// TODO(FW-6201): Remove this method when size is supported in ios and md
private getSize() {
const theme = getIonTheme(this);
const { size } = this;