Version 1
[yaffs-website] / vendor / twbs / bootstrap-sass / assets / stylesheets / bootstrap / mixins / _tab-focus.scss
diff --git a/vendor/twbs/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_tab-focus.scss b/vendor/twbs/bootstrap-sass/assets/stylesheets/bootstrap/mixins/_tab-focus.scss
new file mode 100644 (file)
index 0000000..f16ed64
--- /dev/null
@@ -0,0 +1,9 @@
+// WebKit-style focus
+
+@mixin tab-focus() {
+  // WebKit-specific. Other browsers will keep their default outline style.
+  // (Initially tried to also force default via `outline: initial`,
+  // but that seems to erroneously remove the outline in Firefox altogether.)
+  outline: 5px auto -webkit-focus-ring-color;
+  outline-offset: -2px;
+}