MyBB Community Forums

Full Version: Change green text in ACP after a Template is modified
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When a user goes into Admin CP and modifies a template, the text becomes dark green, which doesn't bode well with themes. How can I change it?

Thanks.
where does the text turn into green ? can you add a screenshot ...
(2019-11-21, 01:48 AM).m. Wrote: [ -> ]where does the text turn into green ? can you add a screenshot ...
[Image: unknown.png]

You got it. Like I said, it's hard to see.
file : /admin/modules/style/templates.php
find two occurrences of color: green; and change to required color eg. color: red;

for firefox browser, I use below style code with Stylish extension
@-moz-document regexp("(?=.*?\style-templates).*") {
span[style="color: green;"] {color: red!important;}
(2019-11-21, 04:27 AM).m. Wrote: [ -> ]file : /admin/modules/style/templates.php
find two occurrences of color: green; and change to required color eg. color: red;

for firefox browser, I use below style code with Stylish extension
@-moz-document regexp("(?=.*?\style-templates).*") {
span[style="color: green;"] {color: red!important;}
Do I need to have it as red, or may I choose a different color?
^ you can change to required color. red is given as an example.

[html color codes for reference] | [colors appearance on black background]
I see. Thank you.