Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sidebar collapse < hover effect (Sugarcube 2.11.0)

I want to remove the background hover effect for the little < character that collapses the sidebar, but I don't know how to write the selector.

I've tried:
#ui-bar-toggle::before:hover {text-decoration: none;}
But it didn't work.

Comments

  • I believe you are look for the following:
    #ui-bar-toggle:hover {
        background-color: #444;
        border-color: #eee;
    }
    
    ... simple change the background and border colours to what you want them to be.
  • Yep! Thank you, again.
Sign In or Register to comment.