Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@

.igx-input-group--disabled {
%igx-combo__toggle-button {
background: var-get($theme, 'toggle-button-background-disabled') !important;
color: var-get($theme, 'toggle-button-foreground-disabled') !important;
background: var-get($theme, 'toggle-button-background-disabled');
color: var-get($theme, 'toggle-button-foreground-disabled');
}

%igx-combo__clear-button {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,12 @@
box-shadow: none !important;
border: none !important;
}

.igx-input-group--disabled,
.igx-input-group--disabled igx-prefix,
.igx-input-group--disabled igx-suffix {
color: var-get($theme, 'cell-disabled-color');
}
}

@if $variant != 'indigo' {
Expand Down Expand Up @@ -1196,6 +1202,21 @@
align-items: center;
outline-style: none;

@extend %cell-input-overrides;
Copy link
Contributor

@desig9stein desig9stein Nov 17, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Since you are extending this here, you can remove that same extend from igx-grid-td--editing since the base class igx-grid_td is always present


> igx-input-group,
igx-combo,
igx-simple-combo,
igx-select,
igx-date-picker,
igx-time-picker {
height: auto;
}

igx-input-group {
background: transparent;
}

@if $variant != 'indigo' {
padding-inline: pad-inline(
map.get($grid-cell-padding-inline, 'compact'),
Expand Down Expand Up @@ -1411,8 +1432,6 @@
&%grid-cell-number {
justify-content: flex-start !important;
}

@extend %cell-input-overrides;
}

%grid-cell--pinned {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@
%form-group-display--disabled {
pointer-events: none;
user-select: none;
color: var-get($theme, 'disabled-text-color') !important;
color: var-get($theme, 'disabled-text-color');

igx-prefix,
[igxPrefix] {
Expand Down Expand Up @@ -1445,7 +1445,7 @@
%form-group-input--disabled {
cursor: default;

color: var-get($theme, 'disabled-text-color') !important;
color: var-get($theme, 'disabled-text-color');

&::placeholder {
color: var-get($theme, 'disabled-placeholder-color');
Expand Down Expand Up @@ -1495,7 +1495,7 @@
}

%form-group-textarea--disabled {
color: var-get($theme, 'disabled-text-color') !important;
color: var-get($theme, 'disabled-text-color');
cursor: default;

&::placeholder {
Expand Down Expand Up @@ -2073,7 +2073,7 @@
}

%fluent-label-disabled {
color: var-get($theme, 'disabled-text-color') !important;
color: var-get($theme, 'disabled-text-color');
}

%fluent-label-filled {
Expand Down
Loading