Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2017-07-19 19:24:49 +0300
committerFilipa Lacerda <filipa@gitlab.com>2017-07-19 19:24:49 +0300
commitf6ec2816794dc2708c34a96541082facd782573f (patch)
tree9afc1fdad2a3316c82e3cd254b5327e45effcb4d /app/assets/stylesheets/new_nav.scss
parentc6e979587af7cf8d85b4e97a8771d44aa04f3ef4 (diff)
parent46b38e4bbd08ecf9ce0c6ea7c39e3ab3c0045dc8 (diff)
Merge branch 'new-nav-fix-contextual-breadcrumbs' into 'master'
Contextual breadcrumb title fixes Closes #34030 and #34033 See merge request !12602
Diffstat (limited to 'app/assets/stylesheets/new_nav.scss')
-rw-r--r--app/assets/stylesheets/new_nav.scss13
1 files changed, 12 insertions, 1 deletions
diff --git a/app/assets/stylesheets/new_nav.scss b/app/assets/stylesheets/new_nav.scss
index 393d5006e24..2ee831e5e32 100644
--- a/app/assets/stylesheets/new_nav.scss
+++ b/app/assets/stylesheets/new_nav.scss
@@ -330,7 +330,7 @@ header.navbar-gitlab-new {
white-space: nowrap;
> a {
- &:last-of-type {
+ &:last-of-type:not(:first-child) {
font-weight: 600;
}
}
@@ -384,6 +384,7 @@ header.navbar-gitlab-new {
&::after {
content: "/";
margin: 0 2px 0 5px;
+ color: rgba($black, .65);
}
}
@@ -396,3 +397,13 @@ header.navbar-gitlab-new {
color: $gl-text-color;
}
}
+
+.top-area {
+ .nav-controls-new-nav {
+ .dropdown {
+ @media (min-width: $screen-sm-min) {
+ margin-right: 0;
+ }
+ }
+ }
+}