diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-14 11:37:26 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-14 16:29:33 +0200 |
commit | c60f52ddf7e3377f2e23ed3277dc323abdb9ae7f (patch) | |
tree | c9507d20889db4a549e031b644aeedd46545a1a4 /settings | |
parent | de920736c5f7e156e555e25ea7168fcae170868d (diff) | |
download | nextcloud-server-c60f52ddf7e3377f2e23ed3277dc323abdb9ae7f.tar.gz nextcloud-server-c60f52ddf7e3377f2e23ed3277dc323abdb9ae7f.zip |
Fixed app list right container to not overlap left container scrollbar
- Container widths in apps list now use pixels instead of em
- Container widths now match properly and rightcontainer doesn't overlap
the scrollbar any more
Diffstat (limited to 'settings')
-rw-r--r-- | settings/css/settings.css | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css index ba3d235cf01..f6e03b60eab 100644 --- a/settings/css/settings.css +++ b/settings/css/settings.css @@ -54,7 +54,11 @@ tr:hover>td.remove>a, tr:hover>td.password>img,tr:hover>td.displayName>img, tr:h tr:hover>td.remove>a { float:right; } li.selected { background-color:#ddd; } table.grid { width:100%; } -#rightcontent { padding-left: 1em; } +#leftcontent, .leftcontent { + width: 256px; +} +#rightcontent, .rightcontent { top: 80px; left: 336px; } +#rightcontent { padding-left: 10px; } div.quota { float: right; display: block; |