# HG changeset patch # User domruf # Date 1509133987 -7200 # Node ID ccf1ccc77ca3da6244c8b626fea1f3d7c3322de3 # Parent d1609414c3e80fb88ed9cd987b86404481c710f2 less: don't override default label font-weight Bootstrap makes it bold by default. Use that so we don't have to specify bold when we need it. The places where we don't want bold, the styling must be overridden. diff -r d1609414c3e8 -r ccf1ccc77ca3 kallithea/public/css/style.css --- a/kallithea/public/css/style.css Fri Oct 27 21:35:20 2017 +0200 +++ b/kallithea/public/css/style.css Fri Oct 27 21:53:07 2017 +0200 @@ -96,12 +96,6 @@ .form-group > label { float: left; } -label { - font-weight: inherit; -} -label.control-label { - font-weight: bold; -} .groups_breadcrumbs a { color: #fff; } diff -r d1609414c3e8 -r ccf1ccc77ca3 kallithea/public/less/style.less --- a/kallithea/public/less/style.less Fri Oct 27 21:35:20 2017 +0200 +++ b/kallithea/public/less/style.less Fri Oct 27 21:53:07 2017 +0200 @@ -104,12 +104,6 @@ .form-group > label { float: left; } -label { - font-weight: inherit; -} -label.control-label { - font-weight: bold; -} .groups_breadcrumbs a { color: #fff; }