Various tweaks

This commit is contained in:
Satyajit Sahoo
2015-08-07 01:09:22 +05:30
parent bf32925cb7
commit 7f0f008de0
14 changed files with 952 additions and 935 deletions
+22 -22
View File
@@ -6,33 +6,33 @@
**********/
@include exports("infobar") {
GtkInfoBar {
border: none;
GtkInfoBar {
border: none;
$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 ),
);
$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 ),
);
@each $type, $colors in $types {
$fg_color: nth($colors, 1);
$bg_color: nth($colors, 2);
@each $type, $colors in $types {
$fg_color: nth($colors, 1);
$bg_color: nth($colors, 2);
&.#{$type} {
@include linear-gradient($bg_color);
&.#{$type} {
@include linear-gradient($bg_color);
border: 1px solid shade($bg_color, 0.8);
color: $fg_color;
border: 1px solid shade($bg_color, 0.8);
color: $fg_color;
.button {
@include button($bg_color, $fg_color);
.button {
@include button($bg_color, $fg_color);
&.close { @extend %close_button; }
}
}
}
}
&.close { @extend %close_button; }
}
}
}
}
}