@dataloop-ai/components 0.20.221 → 0.20.222

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": "@dataloop-ai/components",
3
- "version": "0.20.221",
3
+ "version": "0.20.222",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -74,11 +74,12 @@ export default defineComponent({
74
74
  white-space: nowrap;
75
75
  padding: 7px 10px;
76
76
  cursor: pointer;
77
- color: var(--dl-color-darker);
77
+ background-color: var(--dell-white);
78
+ color: var(--dell-gray-800);
78
79
 
79
80
  &-active {
80
- background-color: var(--dl-color-secondary);
81
- color: var(--dl-color-text-buttons);
81
+ background-color: var(--dell-blue-100);
82
+ color: var(--dell-blue-600);
82
83
  }
83
84
 
84
85
  &-disabled {
@@ -100,7 +101,23 @@ export default defineComponent({
100
101
  }
101
102
  }
102
103
 
103
- .card-sidebar--item:not(.card-sidebar--item-disabled):hover {
104
+ .card-sidebar--item:not(.card-sidebar--item-disabled):not(
105
+ .card-sidebar--item-active
106
+ ):hover {
107
+ background-color: var(--dell-blue-100);
108
+ color: var(--dell-gray-800);
109
+
110
+ .card-sidebar--focus_helper {
111
+ opacity: 0.15;
112
+ }
113
+ }
114
+
115
+ .card-sidebar--item:not(.card-sidebar--item-disabled):not(
116
+ .card-sidebar--item-active
117
+ ):active {
118
+ background-color: var(--dell-blue-200);
119
+ color: var(--dell-blue-600);
120
+
104
121
  .card-sidebar--focus_helper {
105
122
  opacity: 0.15;
106
123
  }