]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Revert "Revert "Remove IE-specific breadcrumb CSS hack""
authorXhmikosR <xhmikosr@gmail.com>
Mon, 9 Mar 2020 12:52:46 +0000 (14:52 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Wed, 18 Mar 2020 18:59:27 +0000 (20:59 +0200)
This reverts commit 15d242d21ad67fa5b762eb5bdfbcdfb68b9bcce1.

scss/_breadcrumb.scss

index d5c5a9a990ec74e859121e1380bbe3b5b62e327c..69a091407f161d59bac63d424ab79c7270709d95 100644 (file)
     }
   }
 
-  // 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;
   }