diff options
author | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2016-11-02 09:19:47 -0500 |
---|---|---|
committer | Annabel Dunstone Gray <annabel.dunstone@gmail.com> | 2016-11-03 12:32:03 -0500 |
commit | ca1a64c072b6fbf39b15ddb4e777bb99a98d2162 (patch) | |
tree | f1995f89d1dd9c1c7bbc4b61000728ef015f446c /app/assets | |
parent | 651bdd7c34c9ebf686b8357d8fc3ca4d0a58792e (diff) | |
download | gitlab-ce-ca1a64c072b6fbf39b15ddb4e777bb99a98d2162.tar.gz |
Remove underline focus state on statusesbuild-status-focus-state
Diffstat (limited to 'app/assets')
-rw-r--r-- | app/assets/stylesheets/pages/pipelines.scss | 5 | ||||
-rw-r--r-- | app/assets/stylesheets/pages/status.scss | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss index a8e8bbcb208..4f3a6d01625 100644 --- a/app/assets/stylesheets/pages/pipelines.scss +++ b/app/assets/stylesheets/pages/pipelines.scss @@ -85,6 +85,11 @@ } .commit-link { + a { + &:focus { + text-decoration: none; + } + } .ci-status { diff --git a/app/assets/stylesheets/pages/status.scss b/app/assets/stylesheets/pages/status.scss index 01426e28e92..92997eae8b9 100644 --- a/app/assets/stylesheets/pages/status.scss +++ b/app/assets/stylesheets/pages/status.scss @@ -6,7 +6,8 @@ white-space: nowrap; border-radius: 4px; - &:hover { + &:hover, + &:focus { text-decoration: none; } |