We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 01be344 + c4b0870 commit 40c81c2Copy full SHA for 40c81c2
scss/_reboot.scss
@@ -171,6 +171,25 @@ a {
171
}
172
173
174
+// and undo these styles for placeholder links/named anchors (without href)
175
+// would be more straightforward to just use a[href] in previous block, but this
176
+// causes specificity issues in many other styles that are too complex to fix
177
+// see https://github.com/twbs/bootstrap/issues/19402
178
+
179
+a:not([href]) {
180
+ color: inherit;
181
+ text-decoration: none;
182
183
+ @include hover-focus {
184
185
186
+ }
187
188
+ &:focus {
189
+ outline: none;
190
191
+}
192
193
194
//
195
// Code
0 commit comments