How can I change default blue admin color for selected button or checkmark in Wordpress standard login page with CSS?
This is the default blue color I mean, used for selected button border and chekmark... I don't mean the normal button border color, but the color around it after you click on it or used for the selected checkmark...
EDIT: you can ignore customizations shown in the pic above. Standard Wordpress login is the same and uses that default blue color I'd like to change for button outline and checkmarks in the login/lost pass page:
How can I change default blue admin color for selected button or checkmark in Wordpress standard login page with CSS?
This is the default blue color I mean, used for selected button border and chekmark... I don't mean the normal button border color, but the color around it after you click on it or used for the selected checkmark...
EDIT: you can ignore customizations shown in the pic above. Standard Wordpress login is the same and uses that default blue color I'd like to change for button outline and checkmarks in the login/lost pass page:
Share Improve this question asked May 19, 2020 at 13:28 hexaaehexaae 1011 Answer
Reset to default 0Try this
.wp-core-ui .button-primary.focus, .wp-core-ui .button-primary:focus {
box-shadow: 0 0 0 1px #fff, 0 0 0 0px #007cba !important;
}
or replace the color with something that goes with your background:
#007cba
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1742419267a4440352.html
评论列表(0条)