mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:29:54 +08:00
36 lines
634 B
SCSS
36 lines
634 B
SCSS
.new-user-wrapper {
|
|
.user-nav-dropdown-button {
|
|
background: transparent;
|
|
}
|
|
|
|
.user-nav-dropdown-submenu {
|
|
background: var(--secondary);
|
|
list-style-type: none;
|
|
margin: 0;
|
|
|
|
li a {
|
|
padding: 0.5em 1em;
|
|
color: var(--primary);
|
|
|
|
.discourse-no-touch & {
|
|
&:hover {
|
|
background: var(--highlight-medium);
|
|
color: currentColor;
|
|
}
|
|
}
|
|
|
|
&.active {
|
|
background: var(--tertiary-low);
|
|
color: currentColor;
|
|
}
|
|
|
|
&:first-of-type {
|
|
padding-top: 0.5em;
|
|
}
|
|
&:last-of-type {
|
|
padding-bottom: 0.5em;
|
|
}
|
|
}
|
|
}
|
|
}
|