File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
projects/igniteui-angular/src/lib/core/styles/components/toast Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 16
16
///
17
17
/// @param {Color} $background [null] - The background color used for the toast.
18
18
/// @param {Color} $text-color [null] - The text-color used for the toast.
19
+ /// @param {Color} $border-color [null] - The border-color used for the toast.
19
20
///
20
21
/// @param {List} $border-radius [null] - The border radius used for the toast component.
21
22
/// @param {box-shadow} $shadow [null] - Sets a shadow to be used for the toast.
30
31
$schema : $light-material-schema ,
31
32
32
33
$border-radius : null ,
34
+ $border-color : null ,
33
35
$background : null ,
34
36
$text-color : null ,
35
37
$shadow : null ,
60
62
background : $background ,
61
63
border-radius : $border-radius ,
62
64
text- color: $text-color ,
65
+ border-color : $border-color ,
63
66
shadow : $shadow ,
64
67
_meta: map .merge (if ($meta , $meta , ()), (
65
68
variant : map .get ($schema , ' _meta' , ' theme' )
83
86
' indigo-design' : rem (14px ) rem (24px )
84
87
), $variant );
85
88
86
- $border : map .get ((
87
- ' material' : none ,
88
- ' fluent' : none ,
89
- ' bootstrap' : rem (1px ) solid color (null , ' gray' , 300 ),
90
- ' indigo-design' : none
91
- ), $variant );
92
-
93
89
%igx-toast-display {
94
90
display : inline-flex ;
95
91
justify-content : center ;
99
95
min-width : $width ;
100
96
color : var-get ($theme , ' text-color' );
101
97
background : var-get ($theme , ' background' );
102
- border : $ border ;
98
+ border : rem ( 1 px ) solid var-get ( $theme , ' border-color ' ) ;
103
99
border-radius : var-get ($theme , ' border-radius' );
104
100
box-shadow : map .get ($theme , ' shadow' );
105
101
backdrop-filter : blur (10px );
You can’t perform that action at this time.
0 commit comments