# HG changeset patch # User domruf # Date 2017-10-29 13:36:22 # Node ID 42932bee7a370638daa115eae66570a005f599b9 # Parent 6f0b598499d8fc72c1f7b78e8e749ce818a67cb4 less: avoid gaps from rounded corners above the navbar and below the footer diff --git a/kallithea/public/css/style.css b/kallithea/public/css/style.css --- a/kallithea/public/css/style.css +++ b/kallithea/public/css/style.css @@ -1905,6 +1905,15 @@ input.perm_filter { width: 14px; height: 14px; } +/* avoid gaps between the navbar and browser */ +.navbar.mainmenu { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.navbar.footer { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} /* bootstrap progress bar has margin-bottom we don't want that in files list */ .cs_files .progress { margin-bottom: 0; diff --git a/kallithea/public/less/style.less b/kallithea/public/less/style.less --- a/kallithea/public/less/style.less +++ b/kallithea/public/less/style.less @@ -1579,6 +1579,16 @@ input.perm_filter { height: 14px; } +/* avoid gaps between the navbar and browser */ +.navbar.mainmenu { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.navbar.footer { + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; +} + @import "kallithea-diff.less"; /* show some context of link targets - but only works when the link target diff --git a/kallithea/templates/base/root.html b/kallithea/templates/base/root.html --- a/kallithea/templates/base/root.html +++ b/kallithea/templates/base/root.html @@ -113,7 +113,7 @@ <%block name="head_extra"/> -