extract list-header css component to match header from namespace-picker
This commit is contained in:
parent
439287b88f
commit
9049898b4c
|
@ -45,13 +45,6 @@
|
|||
}
|
||||
}
|
||||
|
||||
.namespace-header {
|
||||
margin: $size-9 $size-9 0;
|
||||
color: $grey;
|
||||
font-size: $size-8;
|
||||
font-weight: $font-weight-semibold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.current-namespace {
|
||||
border-bottom: 1px solid rgba($black, 0.1);
|
||||
}
|
||||
|
|
|
@ -4,7 +4,15 @@
|
|||
&:before {
|
||||
font-size: $size-5;
|
||||
color: $white-ter;
|
||||
content: '|';
|
||||
content: "|";
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
.list-header {
|
||||
margin: $size-9 $size-9 0;
|
||||
color: $grey;
|
||||
font-size: $size-8;
|
||||
font-weight: $font-weight-semibold;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<header class="current-namespace">
|
||||
<h5 class="namespace-header">Current namespace</h5>
|
||||
<h5 class="list-header">Current namespace</h5>
|
||||
<div class="level is-mobile namespace-link">
|
||||
<span class="level-left">{{if namespacePath (concat namespacePath "/") "root"}}</span>
|
||||
<ICon @glyph="checkmark-circled-outline" @size="16" @class="has-text-success level-right" />
|
||||
|
|
Loading…
Reference in New Issue