diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-08-31 09:17:54 +0200 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-08-31 09:17:54 +0200 |
commit | 27f14cf91bdebf22abc4b27acb37dc08c8117af0 (patch) | |
tree | e8aec5cfaf435e33f63916e9cda4d50ebf5140f4 /core | |
parent | 25857c49008df3bbb799522c8c70b876ee396495 (diff) | |
download | nextcloud-server-27f14cf91bdebf22abc4b27acb37dc08c8117af0.tar.gz nextcloud-server-27f14cf91bdebf22abc4b27acb37dc08c8117af0.zip |
Fix overflow x scroll on app content list
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.scss | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/css/apps.scss b/core/css/apps.scss index 92fec46c99d..3a56d72ecd1 100644 --- a/core/css/apps.scss +++ b/core/css/apps.scss @@ -1078,10 +1078,10 @@ $popovericon-size: 16px; order: 4; width: 24px; height: 24px; - margin: -10px; + margin: -7px; // right padding of item padding: 22px; opacity: .3; - cursor: pointer; + cursor: pointer; &:hover, &:focus { opacity: .7; @@ -1196,7 +1196,7 @@ $popovericon-size: 16px; opacity: .5; order: 3; flex: 1 0; - flex-basis: calc(100% - 24px); + flex-basis: calc(100% - 44px); } .app-content-list-item-details { |