@dataloop-ai/components 0.20.225 → 0.20.226
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,8 +1,8 @@
|
|
|
1
1
|
export const itemHoverColor = (isActionable: boolean) =>
|
|
2
|
-
isActionable ? 'var(--
|
|
2
|
+
isActionable ? 'var(--dell-blue-100)' : 'transparent'
|
|
3
3
|
|
|
4
4
|
export const itemActiveColor = (isActionable: boolean) =>
|
|
5
|
-
isActionable ? 'var(--
|
|
5
|
+
isActionable ? 'var(--dell-blue-100)' : 'transparent'
|
|
6
6
|
|
|
7
7
|
export const itemCursor = (actionable: boolean, disabled: boolean) =>
|
|
8
8
|
actionable ? 'pointer' : disabled ? 'not-allowed' : 'cursor'
|
|
@@ -281,7 +281,7 @@ export default defineComponent({
|
|
|
281
281
|
right: 0;
|
|
282
282
|
bottom: 0;
|
|
283
283
|
left: 0;
|
|
284
|
-
background-color: var(--
|
|
284
|
+
background-color: var(--dell-overlay);
|
|
285
285
|
z-index: var(
|
|
286
286
|
--dialog-z-index
|
|
287
287
|
); // todo: check if this should be overlay instead.
|
|
@@ -292,7 +292,7 @@ export default defineComponent({
|
|
|
292
292
|
width: 100%;
|
|
293
293
|
background-color: var(--dl-color-panel-background);
|
|
294
294
|
border: 1px solid var(--dl-color-separator);
|
|
295
|
-
color: var(--dell-gray-
|
|
295
|
+
color: var(--dell-gray-800);
|
|
296
296
|
display: flex;
|
|
297
297
|
flex-direction: column;
|
|
298
298
|
z-index: var(--dialog-z-index);
|