]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Remove IE-specific breadcrumb CSS hack
authorMark Otto <markdotto@gmail.com>
Mon, 17 Sep 2018 22:29:54 +0000 (15:29 -0700)
committerXhmikosR <xhmikosr@gmail.com>
Wed, 20 Feb 2019 20:05:45 +0000 (22:05 +0200)
scss/_breadcrumb.scss

index 38f668153bcb4bd66c8aecddd30d5160c1c6bfbe..dd856bbed7fbd79a8d6e2fba0d871351d79ca0f4 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;
   }