mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:40:42 +08:00
36 lines
609 B
SCSS
36 lines
609 B
SCSS
.sidebar-custom-sections {
|
|
.sidebar-section-wrapper {
|
|
padding-bottom: 0;
|
|
}
|
|
.sidebar-section-header {
|
|
display: flex;
|
|
}
|
|
|
|
.sidebar-section-link-prefix.icon {
|
|
cursor: move;
|
|
}
|
|
.sidebar-section[data-section-name="community"]
|
|
.sidebar-section-link-prefix.icon {
|
|
cursor: pointer;
|
|
}
|
|
|
|
a {
|
|
-webkit-touch-callout: none !important;
|
|
@include unselectable;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.sidebar-section-wrapper.disabled {
|
|
a {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
}
|
|
.discourse-touch {
|
|
.sidebar-custom-sections {
|
|
a:hover {
|
|
background: none !important;
|
|
}
|
|
}
|
|
}
|