A little darker font color in admin area please

bobs409

Active member
I'd like to suggest a small tweak. On the admin/home/options page, there is a small description of what each link does but the text is so light, I can't even read them. Just something to consider...

Thanks,

Bob
 
I'd like to suggest a small tweak. On the admin/home/options page, there is a small description of what each link does but the text is so light, I can't even read them. Just something to consider...

Thanks,

Bob

The contrast of the links with the overall background is fine in my opinion. Can you please post a screenshot of your Acp area? Maybe this is a local thing.
 
Sure, here's a screen shot:View attachment 15258

I see what you mean. Hopefully the developers will take this into consideration. But in meanwhile, if you would like to change them temporarily, find this code at the admin.css template:

Code:
#sideNav a
        {
            color: @primaryLighter;
            font-size: 11px;
            display: block;
            padding-left: 10px;
            padding-right: 25px;
            padding-top: 1px;
            padding-bottom: 1px;
            outline: 0;
            border-radius: 2px;
        }

And change

Code:
color: @primaryLighter;

to this:

Code:
color: #FFFFFF;
 
you need to change

HTML:
.FilterList h4 a dfn {
    color: #C8C8C8;
    font-size: 11px;
}

to
HTML:
.FilterList h4 a dfn {
    color: #737373;
    font-size: 11px;
}

note the color change from #c8c8c8 to #737373, you can use every color you like, but not #fcfcff

737373.webp
 
Top Bottom