Fixed Editor Dropdown Hover Color Hard-Coded Blue

digitalpoint

Well-known member
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.
 
Top Bottom