summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Schatz <jschatz@gitlab.com>2016-06-29 21:34:18 +0000
committerJacob Schatz <jschatz@gitlab.com>2016-06-29 21:34:18 +0000
commit47648a50d7bfab644de96025a3001a666cfe7653 (patch)
tree7511c0279f4be23c49909825c9b76c4e7211a2c1
parentd3d9df5a10d62cc90e9e6c22a6637587c393bb72 (diff)
parenta6045538909ac9171bbeb5bf664f63ae9e71c3ff (diff)
downloadgitlab-ce-47648a50d7bfab644de96025a3001a666cfe7653.tar.gz
Merge branch 'button-focus-style' into 'master'
Adds focus state style to markdown area buttons. ## What does this MR do? It makes it possible to see when the button is focused when tabbing through the interface. This is for the new markdown buttons in the comment field. See merge request !4867
-rw-r--r--app/assets/stylesheets/framework/markdown_area.scss3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/markdown_area.scss b/app/assets/stylesheets/framework/markdown_area.scss
index fd8eaa8a691..5d3273ea64d 100644
--- a/app/assets/stylesheets/framework/markdown_area.scss
+++ b/app/assets/stylesheets/framework/markdown_area.scss
@@ -125,7 +125,8 @@
border: 0;
outline: 0;
- &:hover {
+ &:hover,
+ &:focus {
color: $gl-link-color;
}
}