diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-06-04 13:17:47 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-06-04 14:38:25 +0200 |
commit | 7cdd4fee9a84a093f73ee046df81c1c5a630f09c (patch) | |
tree | 21884d770c423806408726dd551ecb93af7431c7 | |
parent | 3b3b0f6e2eddd838f49a52eac5fa06524115b461 (diff) | |
download | nextcloud-server-7cdd4fee9a84a093f73ee046df81c1c5a630f09c.tar.gz nextcloud-server-7cdd4fee9a84a093f73ee046df81c1c5a630f09c.zip |
separate home icon and menu toggle
-rw-r--r-- | core/css/header.css | 6 | ||||
-rw-r--r-- | core/templates/layout.user.php | 2 |
2 files changed, 8 insertions, 0 deletions
diff --git a/core/css/header.css b/core/css/header.css index 51c5a4e9d28..5225dbd446c 100644 --- a/core/css/header.css +++ b/core/css/header.css @@ -22,6 +22,12 @@ height: 32px; } +#header .menutoggle { + display: inline-block; + position: absolute; + left: 70px; + top: 18px; +} /* show appname next to logo */ .header-appname { diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php index 389f1fda50a..bc4578d2694 100644 --- a/core/templates/layout.user.php +++ b/core/templates/layout.user.php @@ -47,6 +47,8 @@ <header><div id="header"> <a href="<?php print_unescaped(link_to('', 'index.php')); ?>" title="" id="owncloud"> <div class="logo-icon svg"></div> + </a> + <a href="#" class="menutoggle"> <div class="header-appname"> <?php p(!empty($_['application'])?$_['application']:''); ?> </div> |