dee738e24f
Use the plain background color. Closes: https://gitlab.gnome.org/GNOME/gnome-shell/issues/2174 https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/872
68 lines
1.4 KiB
SCSS
68 lines
1.4 KiB
SCSS
/* Screen Shield */
|
|
|
|
.unlock-dialog-clock {
|
|
color: white;
|
|
font-weight: 300;
|
|
text-align: center;
|
|
padding-bottom: 2.5em;
|
|
}
|
|
|
|
.unlock-dialog-clock-time {
|
|
font-size: 64pt;
|
|
padding-bottom: 24px;
|
|
font-feature-settings: "tnum";
|
|
}
|
|
|
|
.unlock-dialog-clock-date {
|
|
font-size: 16pt;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.unlock-dialog-notifications-container {
|
|
margin: 12px 0;
|
|
spacing: 6px;
|
|
width: 23em;
|
|
background-color: transparent;
|
|
.summary-notification-stack-scrollview {
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.notification,
|
|
.unlock-dialog-notification-source {
|
|
padding: 12px 6px;
|
|
border: 1px solid $osd_outer_borders_color;
|
|
background-color: transparentize($osd_bg_color,0.5);
|
|
color: $osd_fg_color;
|
|
border-radius: 4px;
|
|
|
|
&.critical { background-color: transparentize($osd_bg_color,0.1) }
|
|
}
|
|
}
|
|
|
|
.unlock-dialog-notification-label {
|
|
padding: 0px 0px 0px 12px;
|
|
}
|
|
|
|
.unlock-dialog-notification-count-text {
|
|
weight: bold;
|
|
padding: 0px 12px;
|
|
}
|
|
|
|
.screen-shield-background { //just the shadow, really
|
|
background: black;
|
|
box-shadow: 0px 2px 4px rgba(0,0,0,0.6);
|
|
}
|
|
|
|
#lockDialogGroup {
|
|
background-color: lighten(#2e3436, 8%);
|
|
}
|
|
|
|
#unlockDialogNotifications {
|
|
StButton#vhandle, StButton#hhandle {
|
|
background-color: transparentize($bg_color,0.7);
|
|
&:hover, &:focus { background-color: transparentize($bg_color,0.5); }
|
|
&:active { background-color: transparentize($selected_bg_color,0.5); }
|
|
}
|
|
}
|