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"/> -