Inspired by the cyberpunk genre, I created a Discourse theme to capture the sense of rebellion and dystopian city landscape by introducing subtle glitches in the interface, neon colors, semi-transparent gradients and animated elements.
To also remove it from navigation bars (including the main one)
.nav-pills, .admin-controls .nav-pills {
>li>a:hover, >li.active>a, >li>a.active {
box-shadow: none;
}
}
// On mobile only
.nav-pills > li.navigation-toggle {
box-shadow: none;
}
To change the background color of the topic editor, I suggest you look at the theme’s source code and search for where the $bios sass variable is used. For example, to change the background color of the composer to a red color
#reply-control {
background: red;
}
If you do that, you probably also want to change the composer popup’s background as well (it pops up when you start typing and doesn’t show up on mobile)
// On desktop only
#composer-popup {
background: red;
}
Hi @melhosseiny , I added topic list previews plugin to your theme, and if I select “topic tiles” layout, it forces all of the posts to the left-hand-side, stacked on top of one another instead of filling them out masonry-style. This doesn’t happen with any of the other themes I’ve tried – just ghost.
Ghost changes some topic templates and make a bunch of stuff flex, so it will be incompatible with any other plugin or theme that expects the standard Discourse topic template. Getting it to play with other plugins is not planned and out of scope of this theme.