diff options
author | Jacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home> | 2016-01-18 15:58:15 -0500 |
---|---|---|
committer | Jacob Schatz <jacobschatz@Jacobs-MBP.fios-router.home> | 2016-01-18 15:58:15 -0500 |
commit | ea44742b47bcb9dec75ba73793b1235863f04728 (patch) | |
tree | 2752f67b627f70c253a9c6258a62cc2e6185f192 | |
parent | 1d5f96cf971d44a3c0f6ca650c755f820bfd74bb (diff) | |
download | gitlab-ce-ea44742b47bcb9dec75ba73793b1235863f04728.tar.gz |
Fix positioning issues with browse files buttonbrowse-issues-incorrect-positioning-in-firefox-on-commit-page
Issue is that in Firefox clipboard is blocking the browse files
from moving all the way to the right.
Move clipboard up 1px into -1px to unblock browse files
-rw-r--r-- | app/assets/stylesheets/pages/commits.scss | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/commits.scss b/app/assets/stylesheets/pages/commits.scss index 800df95cff3..818fd03e2ae 100644 --- a/app/assets/stylesheets/pages/commits.scss +++ b/app/assets/stylesheets/pages/commits.scss @@ -36,6 +36,10 @@ li.commit { line-height: 20px; margin-bottom: 2px; + .btn-clipboard { + margin-top: -1px; + } + .notes_count { float: right; margin-right: 10px; |