Added custom style for the "Delete" and "Save" buttons from the delete confirmation page.

![Confirmation page](https://i.imgur.com/h4hflxu.png)
pull/123/head
Natán 2021-04-01 17:12:50 +02:00 committed by GitHub
parent 36971ad662
commit 093e58d821
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 3 deletions

View File

@ -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 }};
}