Changeset - ccf1ccc77ca3
[Not reviewed]
default
0 2 0
domruf - 8 years ago 2017-10-27 21:53:07
dominikruf@gmail.com
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.
2 files changed with 0 insertions and 12 deletions:
0 comments (0 inline, 0 general)
kallithea/public/css/style.css
Show inline comments
 
@@ -96,12 +96,6 @@ nav.navbar #logo > .navbar-brand > img {
 
.form-group > label {
 
  float: left;
 
}
 
label {
 
  font-weight: inherit;
 
}
 
label.control-label {
 
  font-weight: bold;
 
}
 
.groups_breadcrumbs a {
 
  color: #fff;
 
}
kallithea/public/less/style.less
Show inline comments
 
@@ -104,12 +104,6 @@ nav.navbar #logo > .navbar-brand > img {
 
.form-group > label {
 
  float: left;
 
}
 
label {
 
  font-weight: inherit;
 
}
 
label.control-label {
 
  font-weight: bold;
 
}
 
.groups_breadcrumbs a {
 
  color: #fff;
 
}
0 comments (0 inline, 0 general)