Skip to content

Commit bbf79fd

Browse files
- lint.fix;
1 parent d2e3c29 commit bbf79fd

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

core/src/components/input/input.ionic.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@
109109
background: var(--background);
110110
}
111111

112-
113112
// Ionic Input Sizes
114113
// --------------------------------------------------
115114

core/src/components/input/input.ionic.solid.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
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

@@ -21,15 +21,15 @@
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
}
@@ -46,6 +46,6 @@
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
}

core/src/components/input/input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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();

0 commit comments

Comments
 (0)