comand-component-library 3.2.6 → 3.2.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "comand-component-library",
3
- "version": "3.2.06",
3
+ "version": "3.2.08",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -354,7 +354,7 @@ export default {
354
354
  border-top-left-radius: var(--border-radius);
355
355
  border-top-right-radius: var(--border-radius);
356
356
  padding: calc(var(--default-padding) / 2) var(--default-padding);
357
- background: var(--medium-gray);
357
+ background: var(--secondary-color);
358
358
  color: var(--pure-white);
359
359
  text-decoration: none;
360
360
 
@@ -207,7 +207,7 @@ export default {
207
207
  & + span[class*="icon"] {
208
208
  &:last-child {
209
209
  border-color: var(--border-color);
210
- background: var(--medium-gray);
210
+ background: var(--secondary-color);
211
211
  }
212
212
  }
213
213
  }
@@ -133,6 +133,18 @@ export default {
133
133
  cursor: pointer;
134
134
  color: var(--hyperlink-color);
135
135
  border-color: var(--hyperlink-color);
136
+
137
+ span, span[class*="icon"] {
138
+ color: inherit;
139
+ }
140
+ }
141
+
142
+ &.active {
143
+ color: var(--pure-white);
144
+
145
+ &:hover, &:active, &:focus {
146
+ color: var(--hyperlink-color);
147
+ }
136
148
  }
137
149
  }
138
150
  }