diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-07-14 12:02:42 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2015-07-14 12:02:42 +0200 |
commit | 2def2cc60abeeb22c1f77e93b7c437ddcf7aa68c (patch) | |
tree | f7eb11fbc2612750aa05f8961909a05c9d039b5d /app | |
parent | c013a9de148c7a4557c0ae80449ba4c7fbf2746b (diff) | |
download | gitlab-ce-2def2cc60abeeb22c1f77e93b7c437ddcf7aa68c.tar.gz |
Hide scrollbar from sidebar when external mouse is connected to OSX
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/generic/sidebar.scss | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/stylesheets/generic/sidebar.scss b/app/assets/stylesheets/generic/sidebar.scss index 4e9daa5ea34..b96664d30db 100644 --- a/app/assets/stylesheets/generic/sidebar.scss +++ b/app/assets/stylesheets/generic/sidebar.scss @@ -3,7 +3,8 @@ position: fixed; top: 0; bottom: 0; - overflow-y: scroll; + overflow-y: auto; + overflow-x: hidden; left: 0; height: 100%; transition-duration: .3s; |