Commit 084bb6b1fc2a352857d8bc9c243003c029b17a3e
1 parent
fd76f497
Exists in
spb-stable
and in
3 other branches
Small css fixes
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
Showing
2 changed files
with
4 additions
and
3 deletions
Show diff stats
app/assets/stylesheets/sections/header.scss
... | ... | @@ -19,7 +19,7 @@ header { |
19 | 19 | line-height: 32px; |
20 | 20 | padding: 6px 10px; |
21 | 21 | |
22 | - &:hover { | |
22 | + &:hover, &:focus, &:active { | |
23 | 23 | background: none; |
24 | 24 | } |
25 | 25 | } |
... | ... | @@ -192,7 +192,8 @@ header { |
192 | 192 | color: #AAA; |
193 | 193 | text-shadow: 0 1px 0 #444; |
194 | 194 | |
195 | - &:hover { | |
195 | + &:hover, &:focus, &:active { | |
196 | + background: none; | |
196 | 197 | color: #FFF; |
197 | 198 | } |
198 | 199 | } | ... | ... |
app/views/projects/commits/_commit.html.haml
... | ... | @@ -5,7 +5,7 @@ |
5 | 5 | %span.str-truncated |
6 | 6 | = link_to_gfm commit.title, project_commit_path(project, commit.id), class: "commit-row-message" |
7 | 7 | - if commit.description? |
8 | - %a.label-default.text-expander.js-toggle-button ... | |
8 | + %a.text-expander.js-toggle-button ... | |
9 | 9 | |
10 | 10 | = link_to "Browse Code »", project_tree_path(project, commit), class: "pull-right" |
11 | 11 | .notes_count | ... | ... |