From 6926990fea28ac6f953959486f7d79d29aa24198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ana=20Mar=C3=ADa=20Mart=C3=ADnez=20G=C3=B3mez?= Date: Tue, 26 Mar 2019 13:40:38 +0100 Subject: [PATCH] Fix overlay of carousel controls Events on the last column where not clickable because the carousel controls where render on top. Make them narrower to solve it. This bug was a side effect of using a carousel for rendering the schedule. There are strong arguments to think this is not the best design and a better solution is being discussed: https://github.com/openSUSE/osem/issues/2421 Fixes https://github.com/openSUSE/osem/issues/2434 Co-authored-by: @sncarnera --- app/assets/stylesheets/osem-schedule.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/assets/stylesheets/osem-schedule.scss b/app/assets/stylesheets/osem-schedule.scss index 4d1989aa..1cf1efec 100644 --- a/app/assets/stylesheets/osem-schedule.scss +++ b/app/assets/stylesheets/osem-schedule.scss @@ -1,3 +1,12 @@ +#schedule-content .carousel-control{ + width: 12%; +} + +@media (min-width: 768px){ + #schedule-content .carousel-control{ + width: 5%; + } +} .room-name{ font-weight: bold;