aboutsummaryrefslogtreecommitdiff
path: root/assets/css/src/lustige-styles.scss
diff options
context:
space:
mode:
authorMaZderMind2014-11-08 12:23:58 +0100
committerMaZderMind2014-11-08 12:23:58 +0100
commit88ea11761fef1622e29947ced1451841c4ab6fe6 (patch)
treeaa39e1afd646bb6324356f218832cd39784c7245 /assets/css/src/lustige-styles.scss
parent7a1b70bf164358281a701c87ede07205fbb47984 (diff)
highlight current room in program strip
Diffstat (limited to '')
-rw-r--r--assets/css/src/lustige-styles.scss12
1 files changed, 10 insertions, 2 deletions
diff --git a/assets/css/src/lustige-styles.scss b/assets/css/src/lustige-styles.scss
index 7cee60a..d07f8e9 100644
--- a/assets/css/src/lustige-styles.scss
+++ b/assets/css/src/lustige-styles.scss
@@ -555,6 +555,10 @@ a.inverted {
}
.program {
+ $now: red;
+ $hightlight: #96d600;
+ $daychange: $brand-primary;
+
&.scroll-container {
overflow: hidden;
overflow-x: scroll;
@@ -573,7 +577,7 @@ a.inverted {
left: 0;
width: 150px;
height: 500px;
- background-color: transparentize(red, 0.5);
+ background-color: transparentize($now, 0.5);
font-size: 14px;
span {
@@ -627,11 +631,15 @@ a.inverted {
&.daychange {
background-image: url(../img/stripes/gap.png);
- background-color: transparentize($brand-primary, 0.3);
+ background-color: transparentize($daychange, 0.3) !important;
}
&.pause {
background-color: rgba(255,255,255,0.3);
}
}
+
+ .room.highlight .block {
+ background-color: $hightlight;
+ }
}