diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-24 12:26:10 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-24 12:28:28 +0200 |
commit | 2102ab8fec85a9e06dbca1fc38b4e75a3336b3cd (patch) | |
tree | d5c5ed458fdab4cca32751b8dc5d233a505348f6 /core/css | |
parent | 808e9b0f515585f8d2bb18de94eed994d14f3749 (diff) | |
download | nextcloud-server-2102ab8fec85a9e06dbca1fc38b4e75a3336b3cd.tar.gz nextcloud-server-2102ab8fec85a9e06dbca1fc38b4e75a3336b3cd.zip |
Fix leftcontent/right content, fixes tasks app
Tasks app layout was broken since the controls bar is higher now.
This change should hopefully fix other apps using the same layout.
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/styles.css | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 62ee0e56cae..20357434c13 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -202,7 +202,7 @@ input[type="submit"].enabled { -moz-box-sizing:border-box; box-sizing:border-box; } #leftcontent, .leftcontent { - position:relative; overflow:auto; width:20em; height:100%; + position:relative; overflow:auto; width:256px; height:100%; background:#f8f8f8; border-right:1px solid #ddd; -moz-box-sizing:border-box; box-sizing:border-box; } @@ -211,7 +211,11 @@ input[type="submit"].enabled { #leftcontent li.active, .leftcontent li.active { font-weight:bold; } #leftcontent li:hover, .leftcontent li:hover { color:#333; background:#ddd; } #leftcontent a { height:100%; display:block; margin:0; padding:0 1em 0 0; float:left; } -#rightcontent, .rightcontent { position:fixed; top:6.4em; left:24.5em; overflow:auto } +#rightcontent, .rightcontent { position:fixed; top:89px; left: 336px; overflow:auto } + +#controls + .leftcontent{ + top: 44px; +} #emptycontent { font-size: 1.5em; |