Blankstate buttons follow theme colors

This commit is contained in:
Panos (Panagiotis) Synetos 2023-07-11 16:34:24 +03:00 committed by Kyle Nel
parent 20d9981b71
commit 5c1dfade05
No known key found for this signature in database
1 changed files with 7 additions and 8 deletions

View File

@ -902,20 +902,19 @@
.woocommerce-BlankState {
a.button-primary,
button.button-primary {
background: #bb77ae;
border-color: #a36597;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 #a36597;
background: var(--wp-admin-theme-color);
border-color: var(--wp-admin-theme-color);
box-shadow: 0 0 0;
color: #fff;
text-shadow: 0 -1px 1px #a36597, 1px 0 1px #a36597, 0 1px 1px #a36597,
-1px 0 1px #a36597;
text-shadow: none;
display: inline-block;
&:hover,
&:focus,
&:active {
background: #a36597;
border-color: #a36597;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 0 #a36597;
background: var(--wp-admin-theme-color-darker-10);
border-color: var(--wp-admin-theme-color-darker-10);
box-shadow: 0 0 0;
}
}
}