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 .summary-notification-stack-scrollview { 33 padding-top: 0; 34 padding-bottom: 0; 35 } 36 37 .notification, 38 .unlock-dialog-notification-source { 39 padding: 12px 6px; 40 border: none; 41 background-color: transparentize($osd_bg_color,0.7); 42 color: $osd_fg_color; 43 border-radius: $modal_radius; 44 45 &.critical { background-color: transparentize($osd_bg_color,0.1) } 46 } 47} 48 49.unlock-dialog-notification-label { 50 padding: 0px 0px 0px 12px; 51} 52 53.unlock-dialog-notification-count-text { 54 weight: bold; 55 padding: 0 6px; 56 color: $osd_bg_color; 57 background-color: transparentize($osd_fg_color, 0.7); 58 border-radius: 99px; 59 margin-right: 12px; 60 61} 62 63.screen-shield-background { //just the shadow, really 64 background: black; 65 box-shadow: 0px 2px 4px rgba(0,0,0,0.6); 66} 67 68#lockDialogGroup { 69 background-color: $system_bg_color; 70} 71 72#unlockDialogNotifications { 73 StButton#vhandle, StButton#hhandle { 74 background-color: transparentize($bg_color,0.7); 75 &:hover, &:focus { background-color: transparentize($bg_color,0.5); } 76 &:active { background-color: transparentize($selected_bg_color,0.5); } 77 } 78} 79