0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00

Merge pull request #21730 from patrickhlauke/v4-docs-focus-styles

[Docs] Add missing :focus styles
This commit is contained in:
Patrick H. Lauke 2017-01-15 01:46:33 +00:00 committed by GitHub
commit 25f81e1fe6
3 changed files with 9 additions and 3 deletions

View File

@ -13,7 +13,8 @@
font-weight: 500;
color: $gray;
&:hover {
&:hover,
&:focus {
color: $link-color;
}
}

View File

@ -39,7 +39,8 @@
color: $bd-yellow;
border-color: $bd-yellow;
&:hover {
&:hover,
&:focus {
color: $bd-graphite;
background-color: $bd-yellow;
border-color: $bd-yellow;

View File

@ -6,8 +6,12 @@
color: #555;
}
.team-member:hover {
.team-member:hover,
.team-member:focus {
color: #333;
}
.team-member:hover {
text-decoration: none;
}