@geoffcox/sterling-svelte-themes 2.0.5 → 2.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -22,6 +22,10 @@ https://github.com/GeoffCox/sterling-svelte-themes
22
22
 
23
23
  ## Change Log
24
24
 
25
+ ### 2.0.6
26
+
27
+ - Fixed a few of invalid CSS declarations for background and border colors
28
+
25
29
  ### 2.0.5
26
30
 
27
31
  - Fixed issue with new button disabled state not applying due to specificity of colors and variants
@@ -1,7 +1,7 @@
1
1
  /* ----- blue ----- */
2
2
 
3
3
  .sterling-button.secondary.blue:not(:disabled) {
4
- background-color: none;
4
+ background-color: transparent;
5
5
  border-color: var(--stsv-button__border-color--blue);
6
6
  color: var(--stsv-button__border-color--blue);
7
7
  }
@@ -27,7 +27,7 @@
27
27
  /* ----- green ----- */
28
28
 
29
29
  .sterling-button.secondary.green:not(:disabled) {
30
- background-color: none;
30
+ background-color: transparent;
31
31
  border-color: var(--stsv-button__border-color--green);
32
32
  color: var(--stsv-button__border-color--green);
33
33
  }
@@ -53,7 +53,7 @@
53
53
  /* ----- orange ----- */
54
54
 
55
55
  .sterling-button.secondary.orange:not(:disabled) {
56
- background-color: none;
56
+ background-color: transparent;
57
57
  border-color: var(--stsv-button__border-color--orange);
58
58
  color: var(--stsv-button__border-color--orange);
59
59
  }
@@ -79,7 +79,7 @@
79
79
  /* ----- red ----- */
80
80
 
81
81
  .sterling-button.secondary.red:not(:disabled){
82
- background-color: none;
82
+ background-color: transparent;
83
83
  border-color: var(--stsv-button__border-color--red);
84
84
  color: var(--stsv-button__border-color--red);
85
85
  }
@@ -1,12 +1,12 @@
1
1
  /* ----- blue ----- */
2
2
 
3
3
  .sterling-button.tool.blue:not(:disabled) {
4
- background-color: none;
5
- border-color: none;
4
+ background-color: transparent;
5
+ border-color: transparent;
6
6
  color: var(--stsv-button__border-color--blue);
7
7
  }
8
8
 
9
- .sterling-button.tool.blue::not(:disabled)hover {
9
+ .sterling-button.tool.blue:not(:disabled):hover {
10
10
  background-color: var(--stsv-button__background-color--blue--hover);
11
11
  color: var(--stsv-button__color--blue--hover);
12
12
  }
@@ -24,8 +24,8 @@
24
24
  /* ----- green ----- */
25
25
 
26
26
  .sterling-button.tool.green:not(:disabled) {
27
- background-color: none;
28
- border-color: none;
27
+ background-color: transparent;
28
+ border-color: transparent;
29
29
  color: var(--stsv-button__border-color--green);
30
30
  }
31
31
 
@@ -47,8 +47,8 @@
47
47
  /* ----- orange ----- */
48
48
 
49
49
  .sterling-button.tool.orange:not(:disabled) {
50
- background-color: none;
51
- border-color: none;
50
+ background-color: transparent;
51
+ border-color: transparent;
52
52
  color: var(--stsv-button__border-color--orange);
53
53
  }
54
54
 
@@ -70,8 +70,8 @@
70
70
  /* ----- red ----- */
71
71
 
72
72
  .sterling-button.tool.red:not(:disabled) {
73
- background-color: none;
74
- border-color: none;
73
+ background-color: transparent;
74
+ border-color: transparent;
75
75
  color: var(--stsv-button__border-color--red);
76
76
  }
77
77
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geoffcox/sterling-svelte-themes",
3
- "version": "2.0.5",
3
+ "version": "2.0.6",
4
4
  "author": "Geoff Cox",
5
5
  "description": "A modern theme for the sterling-svelte component library.",
6
6
  "license": "MIT",