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:
authorPhil Hughes <me@iamphill.com>2017-08-16 11:14:06 +0300
committerPhil Hughes <me@iamphill.com>2017-08-18 13:06:13 +0300
commit52252e70e8222e573901632a03d408f3f8698f63 (patch)
treec835228a66d45f7d0e52189b717ee79e82790d52 /app/assets/stylesheets/new_nav.scss
parent63812b2fb2dc53f94ab452761553e8cc5f046f2c (diff)
Improvements to breadcrumbs
Closes #35269
Diffstat (limited to 'app/assets/stylesheets/new_nav.scss')
-rw-r--r--app/assets/stylesheets/new_nav.scss42
1 files changed, 16 insertions, 26 deletions
diff --git a/app/assets/stylesheets/new_nav.scss b/app/assets/stylesheets/new_nav.scss
index 3e2f23e6b2a..f39ccaac287 100644
--- a/app/assets/stylesheets/new_nav.scss
+++ b/app/assets/stylesheets/new_nav.scss
@@ -402,6 +402,20 @@ header.navbar-gitlab-new {
}
}
+.breadcrumbs-list {
+ display: flex;
+ margin-bottom: 0;
+
+ > li {
+ display: flex;
+ align-items: center;
+ }
+
+ a {
+ color: $gl-text-color;
+ }
+}
+
.breadcrumbs-extra {
display: flex;
flex: 0 0 auto;
@@ -409,34 +423,10 @@ header.navbar-gitlab-new {
}
.breadcrumbs-sub-title {
- margin: 2px 0;
- font-size: 16px;
+ margin: 0;
+ font-size: $gl-font-size;
font-weight: normal;
line-height: 1;
-
- ul {
- margin: 0;
- }
-
- li {
- display: inline-block;
-
- &:not(:last-child) {
- &::after {
- content: "/";
- margin: 0 2px 0 5px;
- color: rgba($black, .65);
- }
- }
-
- &:last-child a {
- font-weight: 600;
- }
- }
-
- a {
- color: $gl-text-color;
- }
}
.top-area {