Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use numerical values for font-weight instead of keyword values #18613

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion less/code.less
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ kbd {
kbd {
padding: 0;
font-size: 100%;
font-weight: bold;
font-weight: 700;
box-shadow: none;
}
}
Expand Down
2 changes: 1 addition & 1 deletion less/forms.less
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ label {
display: inline-block;
max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)
margin-bottom: 5px;
font-weight: bold;
font-weight: 700;
}


Expand Down
2 changes: 1 addition & 1 deletion less/labels.less
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
font-weight: 700;
line-height: 1;
color: @label-color;
text-align: center;
Expand Down
2 changes: 1 addition & 1 deletion less/type.less
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ dd {
line-height: @line-height-base;
}
dt {
font-weight: bold;
font-weight: 700;
}
dd {
margin-left: 0; // Undo browser default
Expand Down
6 changes: 3 additions & 3 deletions less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -622,7 +622,7 @@

@alert-padding: 15px;
@alert-border-radius: @border-radius-base;
@alert-link-font-weight: bold;
@alert-link-font-weight: 700;

@alert-success-bg: @state-success-bg;
@alert-success-text: @state-success-text;
Expand Down Expand Up @@ -778,7 +778,7 @@
//** Badge background color in active nav link
@badge-active-bg: #fff;

@badge-font-weight: bold;
@badge-font-weight: 700;
@badge-line-height: 1;
@badge-border-radius: 10px;

Expand Down Expand Up @@ -820,7 +820,7 @@
//
//##

@close-font-weight: bold;
@close-font-weight: 700;
@close-color: #000;
@close-text-shadow: 0 1px 0 #fff;

Expand Down