Fix activation css to use wp-admin-theme-color

This commit is contained in:
Panos (Panagiotis) Synetos 2023-07-11 19:21:37 +03:00 committed by Kyle Nel
parent dbffd6b5c9
commit ea19b23e54
No known key found for this signature in database
1 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ div.woocommerce-message {
position: relative;
&.updated {
border-left-color: #7F54B3 !important;
border-left-color: var(--wp-admin-theme-color) !important;
}
}
@ -19,8 +19,8 @@ p.woocommerce-actions,
.woocommerce-message {
.button-primary {
background: #7F54B3;
border-color: #7F54B3;
background: var(--wp-admin-theme-color);
border-color: var(--wp-admin-theme-color);
box-shadow: 0 0 0;
color: #fff;
text-shadow: none;
@ -28,8 +28,8 @@ p.woocommerce-actions,
&:hover,
&:focus,
&:active {
background: #674399;
border-color: #674399;
background: var(--wp-admin-theme-color-darker-10);
border-color: var(--wp-admin-theme-color-darker-10);
box-shadow: 0 0 0;
}
}