From 541fb31f479b2dcb9d1347c856c9a7eb6760a423 Mon Sep 17 00:00:00 2001 From: didimmova Date: Thu, 5 Feb 2026 09:11:23 +0200 Subject: [PATCH] fix(input/combo/select): fix cursor behaviour --- .../lib/core/styles/components/combo/_combo-theme.scss | 9 +++++++++ .../core/styles/components/input/_input-group-theme.scss | 4 ++-- .../lib/core/styles/components/select/_select-theme.scss | 9 +++++++++ 3 files changed, 20 insertions(+), 2 deletions(-) diff --git a/projects/igniteui-angular/src/lib/core/styles/components/combo/_combo-theme.scss b/projects/igniteui-angular/src/lib/core/styles/components/combo/_combo-theme.scss index 7cab448d4b7..a32aa8c8c46 100644 --- a/projects/igniteui-angular/src/lib/core/styles/components/combo/_combo-theme.scss +++ b/projects/igniteui-angular/src/lib/core/styles/components/combo/_combo-theme.scss @@ -178,6 +178,7 @@ .igx-input-group { %igx-combo__toggle-button { + cursor: pointer; background: var-get($theme, 'toggle-button-background'); color: var-get($theme, 'toggle-button-foreground'); } @@ -286,4 +287,12 @@ } } } + + igx-combo { + %form-group-input, + %form-group-prefix, + %form-group-suffix { + cursor: pointer; + } + } } diff --git a/projects/igniteui-angular/src/lib/core/styles/components/input/_input-group-theme.scss b/projects/igniteui-angular/src/lib/core/styles/components/input/_input-group-theme.scss index b9195e04ce7..99b11c40b1b 100644 --- a/projects/igniteui-angular/src/lib/core/styles/components/input/_input-group-theme.scss +++ b/projects/igniteui-angular/src/lib/core/styles/components/input/_input-group-theme.scss @@ -149,6 +149,7 @@ [igxPrefix] { @extend %form-group-prefix; outline-style: none; + cursor: default; &:first-child { @if $variant == 'fluent' { @@ -164,6 +165,7 @@ [igxSuffix] { @extend %form-group-suffix; outline-style: none; + cursor: default; &:last-child { @if $variant == 'fluent' { @@ -1425,7 +1427,6 @@ } %form-group-input--hover { - cursor: pointer; color: var-get($theme, 'filled-text-hover-color'); &::placeholder { @@ -1434,7 +1435,6 @@ } %form-group-input--focus { - cursor: text; color: var-get($theme, 'focused-text-color'); &::placeholder { diff --git a/projects/igniteui-angular/src/lib/core/styles/components/select/_select-theme.scss b/projects/igniteui-angular/src/lib/core/styles/components/select/_select-theme.scss index 55092b0b220..aca394245c0 100644 --- a/projects/igniteui-angular/src/lib/core/styles/components/select/_select-theme.scss +++ b/projects/igniteui-angular/src/lib/core/styles/components/select/_select-theme.scss @@ -15,6 +15,7 @@ .igx-input-group { %igx-select__toggle-button { + cursor: pointer; background: var-get($theme, 'toggle-button-background'); color: var-get($theme, 'toggle-button-foreground'); } @@ -60,4 +61,12 @@ color: var-get($theme, 'toggle-button-foreground-disabled'); } } + + igx-select { + %form-group-input, + %form-group-prefix, + %form-group-suffix { + cursor: pointer; + } + } }