diff options
| author | Filipa Lacerda <filipa@gitlab.com> | 2017-07-31 10:53:00 +0000 | 
|---|---|---|
| committer | Filipa Lacerda <filipa@gitlab.com> | 2017-07-31 10:53:00 +0000 | 
| commit | 2f4491649dfddd17cb9100f9023e142156d127de (patch) | |
| tree | 80c5bcdedf1e79431d1603a0017d8918e75edad4 | |
| parent | 3275e94ac2d7d5061b0287b6fa19211f71e6fc51 (diff) | |
| parent | 2307eb80b576b4537e96e551bd17e2eced1d04a3 (diff) | |
| download | gitlab-ce-2f4491649dfddd17cb9100f9023e142156d127de.tar.gz | |
Merge branch 'breadcrumbs-collapsed-title-width-fix' into 'master'
Fixed breadcrumb titles aggressively collapsing
Closes #35323
See merge request !13166
| -rw-r--r-- | app/assets/stylesheets/new_nav.scss | 3 | ||||
| -rw-r--r-- | changelogs/unreleased/breadcrumbs-collapsed-title-width-fix.yml | 4 | 
2 files changed, 6 insertions, 1 deletions
| diff --git a/app/assets/stylesheets/new_nav.scss b/app/assets/stylesheets/new_nav.scss index 360ffda8d71..781d4cc8833 100644 --- a/app/assets/stylesheets/new_nav.scss +++ b/app/assets/stylesheets/new_nav.scss @@ -325,6 +325,7 @@ header.navbar-gitlab-new {  .breadcrumbs-links {    flex: 1; +  min-width: 0;    align-self: center;    color: $gl-text-color-quaternary; @@ -343,7 +344,7 @@ header.navbar-gitlab-new {    }    .title { -    white-space: nowrap; +    display: inline-block;      > a {        &:last-of-type:not(:first-child) { diff --git a/changelogs/unreleased/breadcrumbs-collapsed-title-width-fix.yml b/changelogs/unreleased/breadcrumbs-collapsed-title-width-fix.yml new file mode 100644 index 00000000000..988fdacb5fd --- /dev/null +++ b/changelogs/unreleased/breadcrumbs-collapsed-title-width-fix.yml @@ -0,0 +1,4 @@ +--- +title: Fixed breadcrumbs title aggressively collapsing +merge_request: +author: | 
