# HG changeset patch # User domruf # Date 1509280582 -3600 # Node ID 42932bee7a370638daa115eae66570a005f599b9 # Parent 6f0b598499d8fc72c1f7b78e8e749ce818a67cb4 less: avoid gaps from rounded corners above the navbar and below the footer diff -r 6f0b598499d8 -r 42932bee7a37 kallithea/public/css/style.css --- a/kallithea/public/css/style.css Sun Oct 29 12:04:01 2017 +0100 +++ b/kallithea/public/css/style.css Sun Oct 29 13:36:22 2017 +0100 @@ -1905,6 +1905,15 @@ 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 -r 6f0b598499d8 -r 42932bee7a37 kallithea/public/less/style.less --- a/kallithea/public/less/style.less Sun Oct 29 12:04:01 2017 +0100 +++ b/kallithea/public/less/style.less Sun Oct 29 13:36:22 2017 +0100 @@ -1579,6 +1579,16 @@ 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 -r 6f0b598499d8 -r 42932bee7a37 kallithea/templates/base/root.html --- a/kallithea/templates/base/root.html Sun Oct 29 12:04:01 2017 +0100 +++ b/kallithea/templates/base/root.html Sun Oct 29 13:36:22 2017 +0100 @@ -113,7 +113,7 @@ <%block name="head_extra"/> -