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

Replace ellipsis Unicode symbol with three dots. #31774

Merged
merged 2 commits into from
Sep 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion scss/_functions.scss
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ $_luminance-list: .0008 .001 .0011 .0013 .0015 .0017 .002 .0022 .0025 .0027 .003
}
}

@warn "Found no color leading to #{$min-contrast-ratio}:1 contrast ratio against #{$background}";
@warn "Found no color leading to #{$min-contrast-ratio}:1 contrast ratio against #{$background}...";

@return $max-ratio-color;
}
Expand Down
4 changes: 2 additions & 2 deletions site/content/docs/5.0/components/alerts.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ Bootstrap's alert plugin exposes a few events for hooking into alert functionali
{{< highlight js >}}
var myAlert = document.getElementById('myAlert')
myAlert.addEventListener('closed.bs.alert', function () {
// do something for instance, explicitly move focus to the most appropriate element,
// do something, for instance, explicitly move focus to the most appropriate element,
// so it doesn't get lost/reset to the start of the page
// document.getElementById('').focus()
// document.getElementById('...').focus()
})
{{< /highlight >}}