Added custom style for the "Delete" and "Save" buttons from the delete confirmation page. (#123)

![Confirmation page](https://i.imgur.com/h4hflxu.png)
This commit is contained in:
Natán
2021-04-07 15:09:20 +02:00
committed by GitHub
parent 36971ad662
commit d338e5914e
@@ -274,19 +274,22 @@
.admin-interface .button.default:hover,
.admin-interface input[type=submit].default:active,
.admin-interface input[type=submit].default:focus,
.admin-interface input[type=submit].default:hover {
.admin-interface input[type=submit].default:hover,
.delete-confirmation form .cancel-link:hover {
background:{{ theme.css_save_button_background_hover_color }};
color:{{ theme.css_save_button_text_color }};
outline: none;
}
.admin-interface .submit-row a.deletelink:link,
.admin-interface .submit-row a.deletelink:visited {
.admin-interface .submit-row a.deletelink:visited,
.delete-confirmation form input[type="submit"] {
background:{{ theme.css_delete_button_background_color }};
color:{{ theme.css_delete_button_text_color }};
}
.admin-interface .submit-row a.deletelink:hover {
.admin-interface .submit-row a.deletelink:hover,
.delete-confirmation form input[type="submit"]:hover {
background:{{ theme.css_delete_button_background_hover_color }};
color:{{ theme.css_delete_button_text_color }};
}