From e7c6a517605785899ddd4ac675ebf0800e54b3b3 Mon Sep 17 00:00:00 2001 From: Sam Date: Mon, 2 Jun 2014 15:48:44 +1000 Subject: [PATCH] BUGFIX: overflow auto makes more sense here. --- app/assets/stylesheets/desktop/topic-list.scss | 2 +- app/assets/stylesheets/mobile/topic-list.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/app/assets/stylesheets/desktop/topic-list.scss b/app/assets/stylesheets/desktop/topic-list.scss index 03f7eee49c5..d67a87e7be0 100644 --- a/app/assets/stylesheets/desktop/topic-list.scss +++ b/app/assets/stylesheets/desktop/topic-list.scss @@ -484,7 +484,7 @@ ol.category-breadcrumb { .category-dropdown-menu { overflow-x: hidden; - overflow-y: scroll; + overflow-y: auto; position: absolute; border: 1px solid scale-color-diff(); background-color: $secondary; diff --git a/app/assets/stylesheets/mobile/topic-list.scss b/app/assets/stylesheets/mobile/topic-list.scss index 435c0e79187..18010ed49d3 100644 --- a/app/assets/stylesheets/mobile/topic-list.scss +++ b/app/assets/stylesheets/mobile/topic-list.scss @@ -448,7 +448,7 @@ ol.category-breadcrumb { .category-dropdown-menu { overflow-x: hidden; - overflow-y: scroll; + overflow-y: auto; position: absolute; border: 1px solid scale-color-diff(); background-color: $secondary; @@ -477,4 +477,4 @@ ol.category-breadcrumb { .category-notification-menu { display: none; -} \ No newline at end of file +}