Skip to content

Commit c774857

Browse files
authored
fix(ESF): buttons border styles (#14313)
1 parent e77d5aa commit c774857

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

projects/igniteui-angular/src/lib/core/styles/components/grid/_excel-filtering-theme.scss

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,35 @@
113113
--item-hover-background: #{color($color: 'gray', $variant: 100)};
114114
--item-selected-background: #{color($color: 'gray', $variant: 100)};
115115
--item-text-color: #{color($color: 'gray', $variant: 700)};
116+
--item-icon-color: #{color($color: 'gray', $variant: 700)};
116117
--item-hover-text-color: #{color($color: 'gray', $variant: 800)};
118+
--item-hover-icon-color: #{color($color: 'gray', $variant: 800)};
117119
--item-selected-text-color: #{if(
118120
$variant == 'indigo-design',
119121
contrast-color($color: 'surface'),
120122
color($color: 'secondary', $variant: 500)
121123
)};
124+
--item-selected-icon-color: #{if(
125+
$variant == 'indigo-design',
126+
contrast-color($color: 'surface'),
127+
color($color: 'secondary', $variant: 500)
128+
)};
129+
--item-selected-hover-icon-color: #{if(
130+
$variant == 'fluent',
131+
color($color: 'secondary', $variant: 500),
132+
contrast-color($color: 'gray', $variant: 50)
133+
)};
122134
--item-border-color: transparent;
135+
--item-hover-border-color: transparent;
136+
--item-focused-border-color: #{if(
137+
$variant == 'fluent',
138+
color($color: 'gray', $variant: 700),
139+
transparent
140+
)};
123141
--item-selected-border-color: transparent;
142+
--item-selected-hover-border-color: transparent;
124143
--item-disabled-border: transparent;
144+
--disabled-selected-border-color: transparent;
125145
}
126146

127147
@include tree(tree-theme(

0 commit comments

Comments
 (0)