Commit d7512e80 authored by Lukas Eipert's avatar Lukas Eipert

Update snapshots and startup CSS

Seems our latest GitLab UI changes are forcing us to update breadcrumbs
snapshots and the media query related changes in startup CSS.
parent 8d33020f
...@@ -1935,7 +1935,7 @@ body.gl-dark { ...@@ -1935,7 +1935,7 @@ body.gl-dark {
.gl-display-none { .gl-display-none {
display: none; display: none;
} }
@media (min-width: 36rem) { @media (min-width: 576px) {
.gl-sm-display-block { .gl-sm-display-block {
display: block; display: block;
} }
......
...@@ -1621,7 +1621,7 @@ svg.s16 { ...@@ -1621,7 +1621,7 @@ svg.s16 {
.gl-display-none { .gl-display-none {
display: none; display: none;
} }
@media (min-width: 36rem) { @media (min-width: 576px) {
.gl-sm-display-block { .gl-sm-display-block {
display: block; display: block;
} }
......
...@@ -776,7 +776,7 @@ svg { ...@@ -776,7 +776,7 @@ svg {
.gl-mb-5 { .gl-mb-5 {
margin-bottom: 1rem; margin-bottom: 1rem;
} }
@media (min-width: 36rem) { @media (min-width: 576px) {
.gl-sm-mt-0 { .gl-sm-mt-0 {
margin-top: 0; margin-top: 0;
} }
......
...@@ -1935,7 +1935,7 @@ body.gl-dark { ...@@ -1935,7 +1935,7 @@ body.gl-dark {
.gl-display-none { .gl-display-none {
display: none; display: none;
} }
@media (min-width: 36rem) { @media (min-width: 576px) {
.gl-sm-display-block { .gl-sm-display-block {
display: block; display: block;
} }
......
...@@ -1621,7 +1621,7 @@ svg.s16 { ...@@ -1621,7 +1621,7 @@ svg.s16 {
.gl-display-none { .gl-display-none {
display: none; display: none;
} }
@media (min-width: 36rem) { @media (min-width: 576px) {
.gl-sm-display-block { .gl-sm-display-block {
display: block; display: block;
} }
......
...@@ -776,7 +776,7 @@ svg { ...@@ -776,7 +776,7 @@ svg {
.gl-mb-5 { .gl-mb-5 {
margin-bottom: 1rem; margin-bottom: 1rem;
} }
@media (min-width: 36rem) { @media (min-width: 576px) {
.gl-sm-mt-0 { .gl-sm-mt-0 {
margin-top: 0; margin-top: 0;
} }
......
...@@ -4,10 +4,10 @@ exports[`Registry Breadcrumb when is not rootRoute renders 1`] = ` ...@@ -4,10 +4,10 @@ exports[`Registry Breadcrumb when is not rootRoute renders 1`] = `
<div <div
class="gl-breadcrumbs" class="gl-breadcrumbs"
> >
<ol <ol
class="breadcrumb gl-breadcrumb-list" class="breadcrumb gl-breadcrumb-list"
> >
<li <li
class="breadcrumb-item gl-breadcrumb-item" class="breadcrumb-item gl-breadcrumb-item"
> >
...@@ -15,24 +15,28 @@ exports[`Registry Breadcrumb when is not rootRoute renders 1`] = ` ...@@ -15,24 +15,28 @@ exports[`Registry Breadcrumb when is not rootRoute renders 1`] = `
class="" class=""
href="/" href="/"
target="_self" target="_self"
/>
</li>
<span
class="gl-breadcrumb-separator"
data-testid="separator"
>
<svg
aria-hidden="true"
class="gl-icon s8"
data-testid="angle-right-icon"
role="img"
> >
<use <span>
href="#angle-right"
/> </span>
</svg>
</span> <span
class="gl-breadcrumb-separator"
data-testid="separator"
>
<svg
aria-hidden="true"
class="gl-icon s8"
data-testid="angle-right-icon"
role="img"
>
<use
href="#angle-right"
/>
</svg>
</span>
</a>
</li>
<li <li
class="breadcrumb-item gl-breadcrumb-item" class="breadcrumb-item gl-breadcrumb-item"
> >
...@@ -40,10 +44,14 @@ exports[`Registry Breadcrumb when is not rootRoute renders 1`] = ` ...@@ -40,10 +44,14 @@ exports[`Registry Breadcrumb when is not rootRoute renders 1`] = `
class="" class=""
href="#" href="#"
target="_self" target="_self"
/> >
<span>
</span>
<!---->
</a>
</li> </li>
<!---->
</ol> </ol>
</div> </div>
`; `;
...@@ -52,10 +60,10 @@ exports[`Registry Breadcrumb when is rootRoute renders 1`] = ` ...@@ -52,10 +60,10 @@ exports[`Registry Breadcrumb when is rootRoute renders 1`] = `
<div <div
class="gl-breadcrumbs" class="gl-breadcrumbs"
> >
<ol <ol
class="breadcrumb gl-breadcrumb-list" class="breadcrumb gl-breadcrumb-list"
> >
<li <li
class="breadcrumb-item gl-breadcrumb-item" class="breadcrumb-item gl-breadcrumb-item"
> >
...@@ -63,10 +71,14 @@ exports[`Registry Breadcrumb when is rootRoute renders 1`] = ` ...@@ -63,10 +71,14 @@ exports[`Registry Breadcrumb when is rootRoute renders 1`] = `
class="" class=""
href="/" href="/"
target="_self" target="_self"
/> >
<span>
</span>
<!---->
</a>
</li> </li>
<!---->
</ol> </ol>
</div> </div>
`; `;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment