summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/assets/stylesheets/framework/buttons.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/buttons.scss b/app/assets/stylesheets/framework/buttons.scss
index 58ac4d46765..6ace51284e1 100644
--- a/app/assets/stylesheets/framework/buttons.scss
+++ b/app/assets/stylesheets/framework/buttons.scss
@@ -25,6 +25,11 @@
color: $hover-text;
border-color: $hover-border;;
}
+
+ &:focus {
+ outline: none;
+ border-color: darken($border, 15%);
+ }
}
@mixin btn-color($light, $border-light, $normal, $border-normal, $dark, $border-dark, $color) {
@@ -46,6 +51,11 @@
border-color: $border-dark;
color: $color;
}
+
+ &:focus {
+ outline: none;
+ border-color: $border-dark;
+ }
}
@mixin btn-green {