Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <markdotto@gmail.com>2018-09-18 01:29:54 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-02-20 23:05:45 +0300
commit9fda96e197abc9eba24962443ed79bc11fef485c (patch)
tree1bd95b2d79f59bf15e5f519ad248c06e6f26f5d6 /scss/_breadcrumb.scss
parent2b8eebb4b89b8c2006dbfb80ccda576b32e04c57 (diff)
Remove IE-specific breadcrumb CSS hack
Diffstat (limited to 'scss/_breadcrumb.scss')
-rw-r--r--scss/_breadcrumb.scss10
1 files changed, 0 insertions, 10 deletions
diff --git a/scss/_breadcrumb.scss b/scss/_breadcrumb.scss
index 38f668153b..dd856bbed7 100644
--- a/scss/_breadcrumb.scss
+++ b/scss/_breadcrumb.scss
@@ -21,16 +21,6 @@
}
}
- // IE9-11 hack to properly handle hyperlink underlines for breadcrumbs built
- // without `<ul>`s. The `::before` pseudo-element generates an element
- // *within* the .breadcrumb-item and thereby inherits the `text-decoration`.
- //
- // To trick IE into suppressing the underline, we give the pseudo-element an
- // underline and then immediately remove it.
- + .breadcrumb-item:hover::before {
- text-decoration: underline;
- }
- // stylelint-disable-next-line no-duplicate-selectors
+ .breadcrumb-item:hover::before {
text-decoration: none;
}