aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2018-12-03 18:09:58 +0200
committerXhmikosR <[email protected]>2018-12-10 11:08:34 +0200
commitbf69f1fceca428777ab8e1da4cb2ae8bd900029d (patch)
tree20c2890f01a336d17288bd825b818497e73dd28d
parentdd23bb5c1207123d581794323311f6d1e369b97d (diff)
downloadbootstrap-bf69f1fceca428777ab8e1da4cb2ae8bd900029d.tar.xz
bootstrap-bf69f1fceca428777ab8e1da4cb2ae8bd900029d.zip
Backport the `abbr` fix from the updated normalize.css.
-rw-r--r--less/normalize.less7
1 files changed, 5 insertions, 2 deletions
diff --git a/less/normalize.less b/less/normalize.less
index 0240d72e9..68f9c2144 100644
--- a/less/normalize.less
+++ b/less/normalize.less
@@ -106,11 +106,14 @@ a:hover {
// ==========================================================================
//
-// Address styling not present in IE 8/9/10/11, Safari, and Chrome.
+// 1. Remove the bottom border in Chrome 57- and Firefox 39-.
+// 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
//
abbr[title] {
- border-bottom: 1px dotted;
+ border-bottom: none; // 1
+ text-decoration: underline; // 2
+ text-decoration: underline dotted; // 2
}
//