[harmony] topic title in sticky-tools bar
-
@Teemberland you can hide them from the skin switcher via css, if you want to completely remove them you need to write a plugin and filter them out so they are not returned as options.
-
Yes you can create new skins in the ACP and they will show up in the switcher. Removing them requires changing some code to filter out the ones you don't want. Or override/modify https://github.com/NodeBB/nodebb-theme-harmony/blob/main/templates/partials/skin-switcher.tpl to only show the ones you want.
-
@Teemberland This might be of interest
Skins - colors
Is there a way to change colors for specific skins via CSS?
NodeBB Community (community.nodebb.org)
-
i share your doubts. i’m afraid adding/removing skins and all the following has nothing to do with showing the
topic title
on thesticky-tools
bar on top of the screen. -
This post is deleted!
-
@phenomlab said in [harmony] sticky topic:
Skins - colors
we are currently using this in v2. Love this! I read the title of this post and thought this was the main thread for Harmony questions because it shows 'sticky'. I just misunderstood it. I'll create a separate thread for my question.
-
@Teemberland said in [harmony] sticky topic:
we are currently using this in v2. Love this! I read the title of this post and thought this was the main thread for Harmony questions because it shows 'sticky'. I just misunderstood it. I'll create a separate thread for my question.
oooh. you are absolutely right. my fault. i’ll change the topic title.
-
@baris said in [harmony] topic title in sticky-tools bar:
@Teemberland you can hide them from the skin switcher via css, if you want to completely remove them you need to write a plugin and filter them out so they are not returned as options.
is this the correct CSS code to hide some skin options?
.sidebar-toggle-container { [data-value="cerulean"] {display: none;} [data-value="cosmo"] {display: none;} [data-value="flatly"] {display: none;} [data-value="journal"] {display: none;} [data-value="litera"] {display: none;} [data-value="lumen"] {display: none;} [data-value="lux"] {display: none;} [data-value="materia"] {display: none;} [data-value="minty"] {display: none;} [data-value="morph"] {display: none;} [data-value="pulse"] {display: none;} [data-value="sandstone"] {display: none;} [data-value="simplex"] {display: none;} [data-value="sketchy"] {display: none;} [data-value="spacelab"] {display: none;} [data-value="united"] {display: none;} [data-value="yeti"] {display: none;} [data-value="zephyr"] {display: none;} }
it seems that it works, but I wanted to double check not to cause any unwanted change...