]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix reboot for placeholder links (#29162)
authorPatrick H. Lauke <redux@splintered.co.uk>
Mon, 29 Jul 2019 08:27:14 +0000 (09:27 +0100)
committerXhmikosR <xhmikosr@gmail.com>
Wed, 31 Jul 2019 08:37:39 +0000 (11:37 +0300)
Backport of #29140

scss/_reboot.scss

index bdb53f346a85a6d68463e2e194fb99734b2d3b36..e436e14ef8297ce710dcab5ad9465c1c8f9bbcf6 100644 (file)
@@ -194,13 +194,12 @@ a {
   }
 }
 
-// And undo these styles for placeholder links/named anchors (without href)
-// which have not been made explicitly keyboard-focusable (without tabindex).
+// And undo these styles for placeholder links/named anchors (without href).
 // It would be more straightforward to just use a[href] in previous block, but that
 // causes specificity issues in many other styles that are too complex to fix.
 // See https://github.com/twbs/bootstrap/issues/19402
 
-a:not([href]):not([tabindex]) {
+a:not([href]) {
   color: inherit;
   text-decoration: none;