@patternfly-java/finder 0.6.1 → 0.6.3
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/finder.css +23 -0
- package/package.json +1 -1
package/finder.css
CHANGED
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
--pf-v6-c-finder__column-header--PaddingInlineEnd: var(--pf-t--global--spacer--200);
|
|
42
42
|
--pf-v6-c-finder__column-header--BorderBottomColor: var(--pf-t--global--border--color--default);
|
|
43
43
|
--pf-v6-c-finder__column-header--BorderBottomWidth: var(--pf-t--global--border--width--100);
|
|
44
|
+
--pf-v6-c-finder__column-header--Height: var(--pf-t--global--spacer--2xl);
|
|
44
45
|
--pf-v6-c-finder__column-title-text--FontWeight: var(--pf-t--global--font--weight--heading--default);
|
|
45
46
|
--pf-v6-c-finder__column-title-text--FontSize: var(--pf-t--global--font--size--md);
|
|
46
47
|
|
|
@@ -142,6 +143,7 @@
|
|
|
142
143
|
padding-inline-start: var(--pf-v6-c-finder__column-header--PaddingInlineStart);
|
|
143
144
|
padding-inline-end: var(--pf-v6-c-finder__column-header--PaddingInlineEnd);
|
|
144
145
|
border-bottom: var(--pf-v6-c-finder__column-header--BorderBottomWidth) solid var(--pf-v6-c-finder__column-header--BorderBottomColor);
|
|
146
|
+
height: var(--pf-v6-c-finder__column-header--Height);
|
|
145
147
|
}
|
|
146
148
|
|
|
147
149
|
.pf-v6-c-finder__column-title-text {
|
|
@@ -352,6 +354,27 @@
|
|
|
352
354
|
color: var(--pf-v6-c-finder__item-folder-icon--m-selected--Color);
|
|
353
355
|
}
|
|
354
356
|
|
|
357
|
+
/* ===================================================================
|
|
358
|
+
Status items
|
|
359
|
+
=================================================================== */
|
|
360
|
+
|
|
361
|
+
.pf-v6-c-finder__item.pf-m-status {
|
|
362
|
+
cursor: default;
|
|
363
|
+
background-color: transparent;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
.pf-v6-c-finder__item.pf-m-status:hover {
|
|
367
|
+
background-color: transparent;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.pf-v6-c-finder__item.pf-m-status .pf-v6-c-finder__item-pin {
|
|
371
|
+
display: none;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.pf-v6-c-finder__item.pf-m-status .pf-v6-c-finder__item-folder-icon {
|
|
375
|
+
display: none;
|
|
376
|
+
}
|
|
377
|
+
|
|
355
378
|
/* ===================================================================
|
|
356
379
|
Preview pane
|
|
357
380
|
=================================================================== */
|
package/package.json
CHANGED