Initialised variable for notification opacity
This commit is contained in:
parent
abb1482456
commit
469dee36ee
|
@ -79,7 +79,7 @@
|
||||||
|
|
||||||
@include border-radius($notificationBorderRadius);
|
@include border-radius($notificationBorderRadius);
|
||||||
@include box-shadow(1px, 1px, 2px, rgba(0,0,0,0.3));
|
@include box-shadow(1px, 1px, 2px, rgba(0,0,0,0.3));
|
||||||
@include opacity(0.9);
|
@include opacity($notificationOpacity);
|
||||||
}
|
}
|
||||||
|
|
||||||
.toast:hover {
|
.toast:hover {
|
||||||
|
|
|
@ -72,9 +72,10 @@ $notificationColor: #FFFFFF;
|
||||||
$notificationBackground: $tooltipBg;
|
$notificationBackground: $tooltipBg;
|
||||||
$notificationTitleColor: $notificationColor;
|
$notificationTitleColor: $notificationColor;
|
||||||
$notificationMessageColor: $notificationColor;
|
$notificationMessageColor: $notificationColor;
|
||||||
|
$notificationLinkColor: $notificationColor;
|
||||||
|
$notificationOpacity: 0.9;
|
||||||
$notificationPadding: 15px 20px;
|
$notificationPadding: 15px 20px;
|
||||||
$notificationBorderRadius: 4px;
|
$notificationBorderRadius: 4px;
|
||||||
$notificationLinkColor: $notificationColor;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Misc.
|
* Misc.
|
||||||
|
|
Loading…
Reference in New Issue