mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
2f5cb0a280
Bring back CSS which was removed here 10dce46886 (diff-fa3cff3fcf18e3677f75fd71989c9bbd1b9940a5ce73f9c9efa6c4cbb0123b97L34)
50 lines
993 B
SCSS
50 lines
993 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;
|
|
}
|
|
.sidebar-section-link-wrapper {
|
|
.sidebar-section-link-prefix.icon,
|
|
.sidebar-section-link {
|
|
background: none;
|
|
color: var(--primary-low-mid);
|
|
}
|
|
.sidebar-section-link.drag {
|
|
font-weight: bold;
|
|
color: var(--primary-high);
|
|
.sidebar-section-link-prefix.icon {
|
|
color: var(--primary-high);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.discourse-touch {
|
|
.sidebar-custom-sections {
|
|
a:hover {
|
|
background: none !important;
|
|
}
|
|
}
|
|
}
|