69 lines
1.2 KiB
SCSS
69 lines
1.2 KiB
SCSS
/**
|
|
* activation.scss
|
|
* Styles applied to elements displayed on activation
|
|
*/
|
|
|
|
/**
|
|
* Styling begins
|
|
*/
|
|
div.woocommerce-message {
|
|
overflow: hidden;
|
|
position: relative;
|
|
|
|
&.updated {
|
|
border-left-color: var(--wp-admin-theme-color, #720EEC) !important;
|
|
}
|
|
}
|
|
|
|
p.woocommerce-actions,
|
|
.woocommerce-message {
|
|
|
|
a.woocommerce-message-close {
|
|
position: static;
|
|
float: right;
|
|
top: 0;
|
|
right: 0;
|
|
padding: 0 15px 10px 28px;
|
|
margin-top: -10px;
|
|
font-size: 13px;
|
|
line-height: 1.23076923;
|
|
text-decoration: none;
|
|
|
|
&::before {
|
|
position: relative;
|
|
top: 18px;
|
|
left: -20px;
|
|
transition: all 0.1s ease-in-out;
|
|
}
|
|
}
|
|
|
|
.button-primary,
|
|
.button-secondary {
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
.twitter-share-button {
|
|
margin-top: -3px;
|
|
margin-left: 3px;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|
|
p.woocommerce-actions,
|
|
.woocommerce-about-text {
|
|
margin-bottom: 1em !important;
|
|
}
|
|
|
|
// WP 7.0 changed .notice-dismiss to display:flex, width:24px, height:24px.
|
|
// Reset these so the floated .woocommerce-message-close layout still works and the X icon aligns.
|
|
.wc-wp-version-gte-70 .woocommerce-message a.woocommerce-message-close {
|
|
display: inline;
|
|
width: auto;
|
|
height: auto;
|
|
color: #1e1e1e;
|
|
|
|
&::before {
|
|
top: 18px;
|
|
}
|
|
}
|