ajwillia-ms pushed a commit to branch master. http://git.enlightenment.org/website/www.git/commit/?id=d7ffa0f88b22321a4fc9bed63969ed17c37745f2
commit d7ffa0f88b22321a4fc9bed63969ed17c37745f2 Author: Andy Williams <[email protected]> Date: Mon Nov 20 16:47:04 2017 +0000 Make E logo clickable and correctly go home --- public_html/lib/tpl/e/css/modifications.css | 6 ++++++ public_html/lib/tpl/e/main.php | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/public_html/lib/tpl/e/css/modifications.css b/public_html/lib/tpl/e/css/modifications.css index 4f565a19..e8e33475 100644 --- a/public_html/lib/tpl/e/css/modifications.css +++ b/public_html/lib/tpl/e/css/modifications.css @@ -284,6 +284,12 @@ a.media, a.navbar-brand { border-bottom: none; } +.navbar>.container a.navbar-brand { + margin-left: 0; + width: 40px; + height: 40px; +} + abbr[title], abbr[data-original-title] { border-bottom: 1px solid #404040; diff --git a/public_html/lib/tpl/e/main.php b/public_html/lib/tpl/e/main.php index 4d3b0575..98e9a255 100644 --- a/public_html/lib/tpl/e/main.php +++ b/public_html/lib/tpl/e/main.php @@ -58,7 +58,7 @@ $showSidebar = $hasSidebar && ($ACT=='show'); <span class="icon-bar"></span> <span class="icon-bar"></span> </button> - <a class="navbar-brand" href="./"><?php echo $conf['title']; ?></a> + <a class="navbar-brand" href="/"><?php echo $conf['title']; ?></a> </div> <div class="collapse navbar-collapse"> <ul class="nav navbar-nav navbar-left"> --
