diff options
author | Rigel Kent <sendmemail@rigelk.eu> | 2018-09-02 19:22:34 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-09-03 08:49:29 +0200 |
commit | a54991da4224534bf4beaf994d99e4ce5a0a54f7 (patch) | |
tree | fc6f342b96eac331a54b75c468555bf945af2d03 /client/src/app/menu/menu.component.scss | |
parent | c28beaea83abf32e4f0588895e961b8137ec5121 (diff) | |
download | PeerTube-a54991da4224534bf4beaf994d99e4ce5a0a54f7.tar.gz PeerTube-a54991da4224534bf4beaf994d99e4ce5a0a54f7.tar.zst PeerTube-a54991da4224534bf4beaf994d99e4ce5a0a54f7.zip |
make left menu show the scrollbar on hover/focus
add hotkey to the overview page
Diffstat (limited to 'client/src/app/menu/menu.component.scss')
-rw-r--r-- | client/src/app/menu/menu.component.scss | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/client/src/app/menu/menu.component.scss b/client/src/app/menu/menu.component.scss index f8c7d8519..941c208e2 100644 --- a/client/src/app/menu/menu.component.scss +++ b/client/src/app/menu/menu.component.scss | |||
@@ -18,12 +18,16 @@ menu { | |||
18 | overflow: hidden; | 18 | overflow: hidden; |
19 | z-index: 1000; | 19 | z-index: 1000; |
20 | color: $menu-color; | 20 | color: $menu-color; |
21 | overflow-y: auto; | ||
22 | display: flex; | 21 | display: flex; |
23 | flex-direction: column; | 22 | flex-direction: column; |
24 | 23 | ||
24 | &:focus, &:hover { | ||
25 | overflow-y: auto; | ||
26 | } | ||
27 | |||
25 | .top-menu { | 28 | .top-menu { |
26 | flex-grow: 1; | 29 | flex-grow: 1; |
30 | width: $menu-width; | ||
27 | } | 31 | } |
28 | 32 | ||
29 | .logged-in-block { | 33 | .logged-in-block { |