Merge pull request #388 from SammysHP/app-notification

Fix #387: app notification border and button style
pull/394/head
Satyajit Sahoo 2016-04-28 19:39:02 +05:30
commit 7a7994b9f1
1 changed files with 15 additions and 11 deletions

View File

@ -69,18 +69,22 @@
**********************/ **********************/
@include exports("notifications") { @include exports("notifications") {
.app-notification { frame.app-notification {
&, &.frame { border-style: solid;
border-style: solid; border-color: border_normal($osd_bg);
border-color: border_normal($osd_bg); border-width: 0 1px 1px;
border-width: 0 1px 1px; border-radius: 0 0 $roundness $roundness;
border-radius: 0 0 $roundness $roundness; padding: $spacing * 2;
padding: $spacing * 2; background-color: $osd_bg;
background-color: $osd_bg; background-image: none;
background-image: none; color: $osd_fg;
color: $osd_fg;
.button { @include button($osd_bg, $osd_fg); } button {
@include button($osd_bg, $osd_fg);
}
border {
border: 0;
} }
} }
} }