discourse/app/assets/stylesheets/desktop/sidebar-section.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
558 B
SCSS
Raw Normal View History

#main-outlet-wrapper {
.sidebar-wrapper {
.sidebar-section-header-button,
.sidebar-section-header-caret,
.sidebar-section-header-dropdown {
.discourse-no-touch & {
opacity: 0;
transition: opacity 0.25s;
transition-delay: 0.5s;
}
}
.discourse-no-touch & {
&:focus-within,
&:hover {
.sidebar-section-header-button,
.sidebar-section-header-caret,
.sidebar-section-header-dropdown {
opacity: 1;
transition-delay: 0s;
}
}
}
}
}