Signed-off-by: Jan C. Borchardt <hey@jancborchardt.net>
This commit is contained in:
parent
e14ba58b6d
commit
b9807e0633
|
@ -433,7 +433,7 @@ nav[role='navigation'] {
|
||||||
li {
|
li {
|
||||||
position: relative;
|
position: relative;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
margin: 0 2px;
|
padding: 0 2px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
|
||||||
|
@ -446,6 +446,9 @@ nav[role='navigation'] {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
opacity: .6;
|
opacity: .6;
|
||||||
|
// Make sure most app names don’t ellipsize
|
||||||
|
letter-spacing: -0.5px;
|
||||||
|
font-size: 12px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* focused app visual feedback */
|
/* focused app visual feedback */
|
||||||
|
@ -453,19 +456,28 @@ nav[role='navigation'] {
|
||||||
a:focus,
|
a:focus,
|
||||||
a.active {
|
a.active {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Text size back to normal for hover/focus
|
||||||
|
&:hover a,
|
||||||
|
a:focus {
|
||||||
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover a + span,
|
&:hover a + span,
|
||||||
a:focus + span,
|
a:focus + span,
|
||||||
&:hover span,
|
&:hover span,
|
||||||
&:focus span,
|
&:focus span,
|
||||||
a:focus span {
|
a:focus span,
|
||||||
|
a.active span {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
text-overflow: initial;
|
text-overflow: initial;
|
||||||
width: auto;
|
width: auto;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 0 5px;
|
padding: 0 5px;
|
||||||
z-index: 2;
|
z-index: 2;
|
||||||
|
margin-bottom: -1px; // for vertical alignment
|
||||||
}
|
}
|
||||||
|
|
||||||
/* hidden apps menu */
|
/* hidden apps menu */
|
||||||
|
@ -482,7 +494,7 @@ nav[role='navigation'] {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
color: var(--color-primary-text);
|
color: var(--color-primary-text);
|
||||||
bottom: 2px;
|
bottom: 2px;
|
||||||
width: calc(100% - 4px);
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
Loading…
Reference in New Issue