Files
numix-blue-gtk-theme/gtk-3.0/scss/_infobar.scss
T

41 lines
740 B
SCSS
Raw Normal View History

2014-12-08 23:58:57 +05:30
@import "functions";
@import "global";
2014-12-09 00:42:07 +05:30
@import "button";
2014-12-08 23:58:57 +05:30
/*********
! Infobar
**********/
@include exports("infobar") {
GtkInfoBar {
border: none;
2014-12-08 23:58:57 +05:30
$types: (
info: ( $info_fg_color, $info_bg_color ),
warning: ( $warning_fg_color, $warning_bg_color ),
question: ( $question_fg_color, $question_bg_color ),
error: ( $error_fg_color, $error_bg_color ),
);
2014-12-08 23:58:57 +05:30
@each $type, $colors in $types {
$fg_color: nth($colors, 1);
$bg_color: nth($colors, 2);
2014-12-08 23:58:57 +05:30
&.#{$type} {
border: 1px solid shade($bg_color, 0.8);
background-color: $bg_color;
background-image: none;
color: $fg_color;
2014-12-08 23:58:57 +05:30
.button {
@include button($bg_color, $fg_color);
2014-12-08 23:58:57 +05:30
&.close { @extend %close_button; }
}
2014-12-08 23:58:57 +05:30
}
}
}
}