This topic is locked
[SOLVED]

 Change Color for checkmark and Cancel

11/16/2013 10:51:30 PM
PHPRunner General questions
P
procheck author

Hi,

As the title says, I would like to change the colour for the checkmark (save) and Cancel buttons.

In PHPRunner they are grey and I would like to make them more visible.
Thanks

C
cgphp 11/17/2013

You can apply your custom styles in the style editor http://xlinesoft.com/phprunner/docs/style_editor.htm

P
procheck author 11/19/2013

Yes I know about that page but I don't know what to change for the check mark.

Sergey Kornilov admin 11/20/2013
.saveEditing {

color:green;

}

.revertEditing {

color: red;

}


How do I find this. Quite simple if you have Chrome or Firefox with Firebug installed. Simply right click on the element you looking for like checkmark and choose 'Inspect element'.
This screenshot explains how it supposed to look. Class name (saveEditing) is what you looking for in this case.

P
procheck author 11/23/2013

Thanks for the tip