From 899a5a87cdb283f634268da189cac051b405a4b5 Mon Sep 17 00:00:00 2001
From: Kris Aubuchon <shout@k-ris.com>
Date: Wed, 5 Mar 2014 22:18:42 -0500
Subject: [PATCH] adding basic :focus style in for buttons in Firefox

---
 app/assets/stylesheets/desktop/discourse.scss | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/app/assets/stylesheets/desktop/discourse.scss b/app/assets/stylesheets/desktop/discourse.scss
index 1925931f2db..be62c64784a 100644
--- a/app/assets/stylesheets/desktop/discourse.scss
+++ b/app/assets/stylesheets/desktop/discourse.scss
@@ -13,8 +13,6 @@ body {
   min-width: $large-width;
 }
 
-
-
 .container {
   @extend .clearfix;
   max-width: $large-width;
@@ -35,12 +33,8 @@ body {
   .full-width {
     width: $medium-width;
   }
-
-
 }
 
-/**/
-
 
 @include small-width {
   body {
@@ -50,7 +44,6 @@ body {
   .full-width {
     width: $small-width;
   }
-
 }
 
 a.no-href {
@@ -79,6 +72,12 @@ body {
       color: $tertiary_text_color;
     }
   }
+
+  // tab focus in firefox
+  button:focus::-moz-focus-inner {
+  border: 1px dotted;
+  }
+
   .coldmap-high {
     color: $coldmap-high !important;
   }