1/* Screen Shield */
2
3.unlock-dialog-clock {
4  color: white;
5  font-weight: 300;
6  text-align: center;
7  spacing: 24px;
8  padding-bottom: 2.5em;
9}
10
11.unlock-dialog-clock-time {
12  font-size: 64pt;
13  padding-top: 42px;
14  font-feature-settings: "tnum";
15}
16
17.unlock-dialog-clock-date {
18  font-size: 16pt;
19  font-weight: normal;
20}
21
22.unlock-dialog-clock-hint {
23  font-weight: normal;
24  padding-top: 48px;
25}
26
27.unlock-dialog-notifications-container {
28  margin: 12px 0;
29  spacing: 6px;
30  width: 23em;
31  background-color: transparent;
32
33  .summary-notification-stack-scrollview {
34    padding-top: 0;
35    padding-bottom: 0;
36  }
37
38  .notification,
39  .unlock-dialog-notification-source {
40    padding: 12px 6px;
41    border: none;
42    background-color: $dark_bg_color;
43    color: $light_fg_color;
44    border-radius: $bt_radius;
45
46    &.critical { background-color: $alt_dark_bg_color; }
47  }
48}
49
50.unlock-dialog-notification-label {
51  padding: 0px 0px 0px 12px;
52}
53
54.unlock-dialog-notification-count-text {
55  weight: bold;
56  padding: 0 6px;
57  color: white;
58  background-color: $primary_color;
59  border-radius: 99px;
60  margin-right: 12px;
61}
62
63.screen-shield-background { //just the shadow, really
64  background: black;
65  box-shadow: 0 2px 3px 0 rgba(black, 0.15);
66}
67
68#unlockDialogNotifications {
69  StButton#vhandle, StButton#hhandle {
70    background-color: transparentize($bg_color,0.7);
71    &:hover, &:focus { background-color: transparentize($bg_color,0.5); }
72    &:active { background-color: transparentize($selected_bg_color,0.5); }
73  }
74}
75