@patternfly-java/finder 0.6.6 → 0.6.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/README.md +6 -3
- package/finder.css +18 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# PatternFly Java Finder
|
|
2
2
|
|
|
3
|
-
CSS styles for the [PatternFly Java](https://patternfly-java.github.io/) finder extension. The finder is a macOS Finder-style column browser for hierarchical navigation.
|
|
3
|
+
CSS styles for the [PatternFly Java](https://patternfly-java.github.io/extensions/finder) finder extension. The finder is a macOS Finder-style column browser for hierarchical navigation.
|
|
4
4
|
|
|
5
|
-
This package provides the CSS only. It is meant to be used together with the
|
|
5
|
+
This package provides the CSS only. It is meant to be used together with the
|
|
6
|
+
[
|
|
7
|
+
`org.patternfly:patternfly-java-finder`](https://central.sonatype.com/artifact/org.patternfly/patternfly-java-finder) Maven artifact, which contains the Java component implementation.
|
|
6
8
|
|
|
7
9
|
## Installation
|
|
8
10
|
|
|
@@ -22,7 +24,8 @@ Import the CSS in your stylesheet or JavaScript entry point:
|
|
|
22
24
|
|
|
23
25
|
## Requirements
|
|
24
26
|
|
|
25
|
-
This package requires [PatternFly 6](https://www.patternfly.org/) CSS (
|
|
27
|
+
This package requires [PatternFly 6](https://www.patternfly.org/) CSS ([
|
|
28
|
+
`@patternfly/patternfly`](https://www.npmjs.com/package/@patternfly/patternfly)) to be present, as it references PatternFly design tokens for colors, spacing, borders, and typography.
|
|
26
29
|
|
|
27
30
|
## License
|
|
28
31
|
|
package/finder.css
CHANGED
|
@@ -355,12 +355,27 @@
|
|
|
355
355
|
}
|
|
356
356
|
|
|
357
357
|
.pf-v6-c-finder__column.pf-m-active .pf-v6-c-finder__item.pf-m-selected .pf-v6-c-finder__item-actions .pf-v6-c-button {
|
|
358
|
-
--pf-v6-c-button--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
359
358
|
--pf-v6-c-button__icon--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
359
|
+
--pf-v6-c-button--m-link--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
360
|
+
--pf-v6-c-button--m-plain--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
361
|
+
--pf-v6-c-button--m-plain--hover--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
362
|
+
--pf-v6-c-button--m-plain--m-clicked--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
360
363
|
}
|
|
361
364
|
|
|
362
|
-
.pf-v6-c-finder__column.pf-m-active .pf-v6-c-finder__item.pf-m-selected .pf-v6-c-finder__item-actions .pf-v6-c-
|
|
363
|
-
--pf-v6-c-
|
|
365
|
+
.pf-v6-c-finder__column.pf-m-active .pf-v6-c-finder__item.pf-m-selected .pf-v6-c-finder__item-actions .pf-v6-c-button.pf-m-link {
|
|
366
|
+
--pf-v6-c-button--hover--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
367
|
+
--pf-v6-c-button--m-clicked--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.pf-v6-c-finder__column.pf-m-active .pf-v6-c-finder__item.pf-m-selected .pf-v6-c-finder__item-actions .pf-v6-c-menu-toggle.pf-m-plain {
|
|
371
|
+
--pf-v6-c-menu-toggle--m-plain--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
372
|
+
--pf-v6-c-menu-toggle--hover--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
373
|
+
--pf-v6-c-menu-toggle--expanded--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.pf-v6-c-finder__column.pf-m-active .pf-v6-c-finder__item.pf-m-selected .pf-v6-c-finder__item-actions .pf-v6-c-menu-toggle.pf-m-split {
|
|
377
|
+
--pf-v6-c-menu-toggle--hover--Color: var(--pf-v6-c-menu-toggle--m-primary--hover--Color);
|
|
378
|
+
--pf-v6-c-menu-toggle--expanded--Color: var(--pf-v6-c-menu-toggle--m-primary--expanded--Color);
|
|
364
379
|
}
|
|
365
380
|
|
|
366
381
|
.pf-v6-c-finder__column.pf-m-active .pf-v6-c-finder__item.pf-m-selected .pf-v6-c-finder__item-folder-icon {
|
package/package.json
CHANGED