Skip to content

Commit fc8b07a

Browse files
committed
Quickfix css specificity introduces with 2.1.0
1 parent 144165e commit fc8b07a

4 files changed

+5
-5
lines changed

dist/css/sm-colors-custom-properties-rtl.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ html {
5353
--sm-current-fg2-color: var(--sm-fg2-color-1); }
5454

5555
html,
56-
[class*="sm-variation-"]:not(.sm-color-signal-0) {
56+
[class*="sm-variation-"]:where(:not(.sm-color-signal-0)) {
5757
background-color: var(--sm-current-bg-color);
5858
color: var(--sm-current-fg1-color); }
5959

dist/css/sm-colors-custom-properties.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ html {
5353
--sm-current-fg2-color: var(--sm-fg2-color-1); }
5454

5555
html,
56-
[class*="sm-variation-"]:not(.sm-color-signal-0) {
56+
[class*="sm-variation-"]:where(:not(.sm-color-signal-0)) {
5757
background-color: var(--sm-current-bg-color);
5858
color: var(--sm-current-fg1-color); }
5959

src/_scss/sm-colors-custom-properties.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ html {
2828
}
2929

3030
html,
31-
[class*="sm-variation-"]:not(.sm-color-signal-0) {
31+
[class*="sm-variation-"]:where(:not(.sm-color-signal-0)) {
3232
background-color: var(--sm-current-bg-color);
3333
color: var(--sm-current-fg1-color);
3434
}

style-manager.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Plugin Name: Style Manager
77
* Plugin URI: https://wordpress.org/plugins/style-manager
88
* Description: Auto-magical system to style your WordPress site.
9-
* Version: 2.1.0
9+
* Version: 2.1.1
1010
* Author: Pixelgrade
1111
* Author URI: https://pixelgrade.com
1212
* Author Email: [email protected]
@@ -35,7 +35,7 @@
3535
*
3636
* @var string
3737
*/
38-
const VERSION = '2.1.0';
38+
const VERSION = '2.1.1';
3939

4040
/**
4141
* Plugin required minimal PHP version.

0 commit comments

Comments
 (0)