Skip to content

Commit

Permalink
Quickfix css specificity introduces with 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
razwan committed Dec 14, 2021
1 parent 144165e commit fc8b07a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/css/sm-colors-custom-properties-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ html {
--sm-current-fg2-color: var(--sm-fg2-color-1); }

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

Expand Down
2 changes: 1 addition & 1 deletion dist/css/sm-colors-custom-properties.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ html {
--sm-current-fg2-color: var(--sm-fg2-color-1); }

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

Expand Down
2 changes: 1 addition & 1 deletion src/_scss/sm-colors-custom-properties.scss
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ html {
}

html,
[class*="sm-variation-"]:not(.sm-color-signal-0) {
[class*="sm-variation-"]:where(:not(.sm-color-signal-0)) {
background-color: var(--sm-current-bg-color);
color: var(--sm-current-fg1-color);
}
Expand Down
4 changes: 2 additions & 2 deletions style-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Plugin Name: Style Manager
* Plugin URI: https://wordpress.org/plugins/style-manager
* Description: Auto-magical system to style your WordPress site.
* Version: 2.1.0
* Version: 2.1.1
* Author: Pixelgrade
* Author URI: https://pixelgrade.com
* Author Email: [email protected]
Expand Down Expand Up @@ -35,7 +35,7 @@
*
* @var string
*/
const VERSION = '2.1.0';
const VERSION = '2.1.1';

/**
* Plugin required minimal PHP version.
Expand Down

0 comments on commit fc8b07a

Please sign in to comment.