GTK3: add shadows to lightdm widgets

This commit is contained in:
Daniel Ruiz de Alegría
2020-04-09 20:31:20 +02:00
parent b8ae7734b0
commit 9db22036c5
4 changed files with 33 additions and 27 deletions
@@ -68,20 +68,23 @@ wnck-pager {
border: 0;
background-color: $panel_bg;
border-radius: $button_radius;
box-shadow: inset 1px 1px transparentize(white, .95);
box-shadow: inset 0 1px transparentize(white, .85);
entry {
background: if($variant=='light', white, transparentize(black, .3));
border-color: transparent;
background: transparentize($bg_color, .6);
border-color: transparentize($bg_color, .7);
min-height: 32px;
box-shadow: inset 0 1px transparentize(white, .95),
0 1px 2px opacify($shadow_color, 0.1);
}
#buttonbox_frame {
padding-top: 20px;
background: $panel_bg;
background: $bg_color;
border-top: 1px solid transparentize(black, .9);
border-radius: 0 0 $button_radius $button_radius;
box-shadow: inset 0 -4px transparentize(black, .8);
box-shadow: inset 0 -4px transparentize(black, .8),
inset 0 1px 2px transparentize($shadow_color, 0.03);
button {
border: 0;
@@ -90,7 +93,7 @@ wnck-pager {
}
#cancel_button {
background: transparentize(black, if($variant=='light', .95, .5));
background: transparentize($shadow_color, 0.03);
box-shadow: none;
color: $fg_color;
}