diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-02-09 14:23:19 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-02-09 14:23:19 +0100 |
commit | 0d8b3afc32f15b1582bbf555796b9d112a91a4ef (patch) | |
tree | 9959ffabd582607476ff42810f0ded70826fcc3b /core | |
parent | 2bb65dd9b1604a6b9f1f73d83aa23483efb5c025 (diff) | |
parent | 8b2e09a77e22d234b48ee572b13e69001f1a3e54 (diff) | |
download | nextcloud-server-0d8b3afc32f15b1582bbf555796b9d112a91a4ef.tar.gz nextcloud-server-0d8b3afc32f15b1582bbf555796b9d112a91a4ef.zip |
Merge pull request #13958 from owncloud/fix-resize-overlap
Avoid dropdown to float under sidebar for mid narrow screens
Diffstat (limited to 'core')
-rw-r--r-- | core/css/share.css | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/core/css/share.css b/core/css/share.css index de909219b76..3ebf3a4b220 100644 --- a/core/css/share.css +++ b/core/css/share.css @@ -16,6 +16,13 @@ padding:16px; } +@media only screen and (min-width: 768px) and (max-width: 990px) { + #dropdown { + /* this limits the dropdown to float below the sidebar for mid narrow screens */ + left: 20px; + } +} + #dropdown.shareDropDown .unshare.icon-loading-small { margin-top: 1px; } |