summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Greiling <mike@pixelcog.com>2016-08-31 21:16:04 -0500
committerMike Greiling <mike@pixelcog.com>2016-08-31 22:55:14 -0500
commit523002e40f79ad85ffa6ce74b8ff405c17429cb6 (patch)
tree67f2dbd522f0fdbf19ebeaf16265ec1cc3c857ac
parent91c215f9a7c5f1bd33eee4d8587bc80a92863071 (diff)
downloadgitlab-ce-523002e40f79ad85ffa6ce74b8ff405c17429cb6.tar.gz
prevent project dropdown chevron from disappearing in small viewports
-rw-r--r--CHANGELOG1
-rw-r--r--app/assets/stylesheets/framework/header.scss10
2 files changed, 7 insertions, 4 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 9837b2edb9d..78c430a60af 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -31,6 +31,7 @@ v 8.12.0 (unreleased)
- Add horizontal scrolling to all sub-navs on mobile viewports (ClemMakesApps)
- Fix markdown help references (ClemMakesApps)
- Add last commit time to repo view (ClemMakesApps)
+ - Fix accessibility and visibility of project list dropdown button !6140
- Added project specific enable/disable setting for LFS !5997
- Don't expose a user's token in the `/api/v3/user` API (!6047)
- Remove redundant js-timeago-pending from user activity log (ClemMakesApps)
diff --git a/app/assets/stylesheets/framework/header.scss b/app/assets/stylesheets/framework/header.scss
index e981de241ce..d3e787937e6 100644
--- a/app/assets/stylesheets/framework/header.scss
+++ b/app/assets/stylesheets/framework/header.scss
@@ -136,6 +136,8 @@ header {
}
.title {
+ position: relative;
+ padding-right: 20px;
margin: 0;
font-size: 19px;
max-width: 400px;
@@ -163,11 +165,11 @@ header {
color: $gl-text-color;
border: transparent;
background: transparent;
- position: relative;
- top: -2px;
+ position: absolute;
+ right: 3px;
width: 12px;
- line-height: 12px;
- margin-left: 5px;
+ line-height: 19px;
+ margin-top: (($header-height - 19) / 2);
padding: 0;
font-size: 10px;
text-align: center;