Skip to content

Commit 3a323fe

Browse files
authored
Merge pull request #10562 from IgniteUI/mpopov/outline-button-focus
fix(button): remove unused theme prop for outline focus style
2 parents 8608eb2 + f6cd2e1 commit 3a323fe

File tree

1 file changed

+1
-9
lines changed
  • projects/igniteui-angular/src/lib/core/styles/themes/schemas/light

1 file changed

+1
-9
lines changed

projects/igniteui-angular/src/lib/core/styles/themes/schemas/light/_button.scss

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
/// @type {Map}
1212
/// @prop {Color} shadow-color [transparent] - The shadow color of the button.
1313
/// @prop {Color} border-color [transparent] - The outline color of the button.
14-
/// @prop {Color} focus-border-color [transparent] - The focused border color of the button.
1514
/// @prop {Color} disabled-border-color [transparent] - The disabled border color of the button.
1615
/// @prop {Color} disabled-background [igx-color: ('grays', 300)] - The disabled background color of the button.
1716
/// @prop {Color} disabled-foreground [igx-color: ('grays', 500)] - The disabled foreground color of the button.
@@ -22,8 +21,6 @@ $material-base-button: (
2221

2322
border-color: transparent,
2423

25-
focus-border-color: transparent,
26-
2724
disabled-border-color: transparent,
2825

2926
disabled-background: (
@@ -80,7 +77,6 @@ $material-flat-button: extend(
8077

8178
/// @type {Map}
8279
/// @prop {Map} border-color [igx-color: ('secondary', 500)] - The outline color of the button.
83-
/// @prop {Map} focus-border-color [igx-color: ('grays', 300)] - The focused border color of the button.
8480
/// @prop {Map} disabled-border-color [igx-color: ('grays', 300)] - The disabled focused border color of the button.
8581
/// @requires {function} extend
8682
/// @requires {Map} $material-flat-button
@@ -90,11 +86,7 @@ $material-outlined-button: extend(
9086
selector: '[igxButton="outlined"], .igx-button--outlined',
9187

9288
border-color: (
93-
igx-color: ('secondary', 300)
94-
),
95-
96-
focus-border-color: (
97-
igx-color: ('grays', 300)
89+
igx-color: ('secondary', 500)
9890
),
9991

10092
disabled-border-color: (

0 commit comments

Comments
 (0)