diff options
Diffstat (limited to 'assets/css/_schedule.less')
-rw-r--r-- | assets/css/_schedule.less | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/assets/css/_schedule.less b/assets/css/_schedule.less index 7031e59..67f723d 100644 --- a/assets/css/_schedule.less +++ b/assets/css/_schedule.less @@ -104,9 +104,16 @@ body .schedule { text-shadow: 0 0 3px @schedule-daychange; } - &.pause { - background-color: @schedule-pause-bg; + &.pause, &.optout { color: @schedule-pause; + background-color: @schedule-pause-bg; + background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent); + background-size: 100px; + + /* and now for small screens: */ + @media (max-width: @screen-xs-max) { + background-size: 72px; + } } } |