mirror of
https://github.com/discourse/discourse.git
synced 2025-01-25 11:54:17 +08:00
UX: Refactor nav stack active element (#30601)
* UX: Add a grey background and bold text to highlight the active element in the nav stack
This commit is contained in:
parent
7df1fac68b
commit
fd909dd348
|
@ -780,12 +780,6 @@ $mobile-breakpoint: 700px;
|
||||||
|
|
||||||
a.active {
|
a.active {
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
background-color: var(--d-sidebar-admin-background);
|
|
||||||
font-weight: 700;
|
|
||||||
|
|
||||||
&::after {
|
|
||||||
display: none; // Hides the arrow
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -92,19 +92,15 @@
|
||||||
color: var(--primary);
|
color: var(--primary);
|
||||||
@include ellipsis;
|
@include ellipsis;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background: var(--d-sidebar-highlight-background);
|
||||||
|
}
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
position: relative;
|
position: relative;
|
||||||
--arrow-thickness: 8px;
|
color: var(--primary);
|
||||||
background: var(--d-selected);
|
background-color: var(--d-selected);
|
||||||
|
font-weight: bold;
|
||||||
&::after {
|
|
||||||
position: absolute;
|
|
||||||
right: 0;
|
|
||||||
top: calc(50% - var(--arrow-thickness));
|
|
||||||
content: " ";
|
|
||||||
border: var(--arrow-thickness) solid transparent;
|
|
||||||
border-left-color: var(--secondary);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -29,20 +29,6 @@
|
||||||
padding-left: 1.4em;
|
padding-left: 1.4em;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
|
||||||
color: var(--primary-medium);
|
|
||||||
|
|
||||||
&.active {
|
|
||||||
color: var(--primary);
|
|
||||||
font-weight: bold;
|
|
||||||
background-color: transparent;
|
|
||||||
|
|
||||||
&:after {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.select-kit + .messages-nav {
|
.select-kit + .messages-nav {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user