discourse/app/assets/stylesheets/common/base/sidebar-custom-section.scss
Krzysztof Kotlarek 265b8bf987
UX: normal cursor on custom sidebar link icon (#24427)
Recently, we disabled the option to reorder links directly from the sidebar. Instead, user has to go to edit modal.

https://github.com/discourse/discourse/pull/24188

However, move cursor was left, which is misleading.
2023-11-20 09:13:08 +11:00

46 lines
932 B
SCSS

.sidebar-custom-sections {
.sidebar-section-wrapper {
padding-bottom: 0;
}
.sidebar-section-header {
display: flex;
}
.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;
}
}
}