Fixed Editor Dropdown Hover Color Hard-Coded Blue

digitalpoint

Well-known member
Licensed customer
Can this be not hard-coded to blue? :)

Code:
    .redactor_dropdown a:hover {
        color: #444;
        text-decoration: none;
        background-color: #dde4ef;
    }

upload_2014-3-27_20-37-37.webp
 
I see this as more of a suggestion, but you can overwrite that with custom CSS:

Code:
.redactor_dropdown a:hover {
    background-color: @inlineMod !important;
}
 
I see this as more of a suggestion, but you can overwrite that with custom CSS:

Code:
.redactor_dropdown a:hover {
    background-color: @inlineMod !important;
}

Not everyone has a blue style, hence it really shouldn't be hard-coded.
 
The same argument can be made for the icons, some of the member card elements, etc.
I too have had to change a lot of hard coded colours and recolour all the sprites as my style is green.
 
Not everyone has a blue style, hence it really shouldn't be hard-coded.

I think Shawn is asking for it NOT to be hard-coded (which it is at the moment); so that it changes colour when you adjust your style palette. (y)
 
Back
Top Bottom