diff options
author | Wu Cheng-Han | 2017-01-13 00:03:29 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2017-01-13 00:03:29 +0800 |
commit | 86f0b10775ec85fa3ee0d5c64a814ab34e17f3d6 (patch) | |
tree | 3f44e8207cd0a6d710ad121604c5f7790137770d /public/css | |
parent | 6be875263a3c0ee849b023983032d8f55e28a2e0 (diff) |
Fix permission dropdown text might out of range in smaller screen
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/index.css | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/public/css/index.css b/public/css/index.css index da1823f2..8f483aa7 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -240,6 +240,9 @@ body { } .dropdown-menu > li > a { cursor: pointer; + text-overflow: ellipsis; + max-width: calc(100vw - 30px); + overflow: hidden; } .dropdown-menu.CodeMirror-other-cursor { transition: none; |