diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-08-31 14:19:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-31 14:19:06 +0200 |
commit | 3693d9568ea29076f5c3944dc30bc5bf59896d1f (patch) | |
tree | 6ecc81095ae689bebef3fbedc046632fb748935b /core | |
parent | f4ffa1737eaef0e90f88537245e27adaf2277074 (diff) | |
parent | 27f14cf91bdebf22abc4b27acb37dc08c8117af0 (diff) | |
download | nextcloud-server-3693d9568ea29076f5c3944dc30bc5bf59896d1f.tar.gz nextcloud-server-3693d9568ea29076f5c3944dc30bc5bf59896d1f.zip |
Merge pull request #10944 from nextcloud/content-list-overflow-fix
Fix overflow x scroll on app content list
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 { |