@patternfly-java/finder 0.6.4 → 0.6.6
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 +21 -6
- package/package.json +1 -1
package/finder.css
CHANGED
|
@@ -93,6 +93,8 @@
|
|
|
93
93
|
/* Preview */
|
|
94
94
|
--pf-v6-c-finder__preview--MinWidth: 24rem;
|
|
95
95
|
--pf-v6-c-finder__preview--BackgroundColor: var(--pf-t--global--background--color--primary--default);
|
|
96
|
+
--pf-v6-c-finder__preview--BorderLeftColor: var(--pf-t--global--border--color--default);
|
|
97
|
+
--pf-v6-c-finder__preview--BorderLeftWidth: var(--pf-t--global--border--width--100);
|
|
96
98
|
}
|
|
97
99
|
|
|
98
100
|
/* ===================================================================
|
|
@@ -102,12 +104,15 @@
|
|
|
102
104
|
.pf-v6-c-finder {
|
|
103
105
|
display: flex;
|
|
104
106
|
background-color: var(--pf-v6-c-finder--BackgroundColor);
|
|
105
|
-
border: var(--pf-v6-c-finder--BorderWidth) solid var(--pf-v6-c-finder--BorderColor);
|
|
106
|
-
border-radius: var(--pf-v6-c-finder--BorderRadius);
|
|
107
107
|
font-size: var(--pf-v6-c-finder--FontSize);
|
|
108
108
|
color: var(--pf-v6-c-finder--Color);
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
+
.pf-v6-c-finder.pf-m-bordered {
|
|
112
|
+
border: var(--pf-v6-c-finder--BorderWidth) solid var(--pf-v6-c-finder--BorderColor);
|
|
113
|
+
border-radius: var(--pf-v6-c-finder--BorderRadius);
|
|
114
|
+
}
|
|
115
|
+
|
|
111
116
|
/* ===================================================================
|
|
112
117
|
Columns container (scrollable)
|
|
113
118
|
=================================================================== */
|
|
@@ -237,6 +242,7 @@
|
|
|
237
242
|
display: flex;
|
|
238
243
|
flex-direction: column;
|
|
239
244
|
min-width: 0;
|
|
245
|
+
flex-grow: 1;
|
|
240
246
|
}
|
|
241
247
|
|
|
242
248
|
.pf-v6-c-finder__item-text {
|
|
@@ -259,17 +265,15 @@
|
|
|
259
265
|
}
|
|
260
266
|
|
|
261
267
|
.pf-v6-c-finder__item-actions {
|
|
262
|
-
display:
|
|
268
|
+
display: none;
|
|
263
269
|
align-items: center;
|
|
264
270
|
gap: var(--pf-t--global--spacer--100);
|
|
265
271
|
margin-inline-start: var(--pf-v6-c-finder__item-actions--MarginInlineStart);
|
|
266
272
|
flex-shrink: 0;
|
|
267
|
-
opacity: 0;
|
|
268
273
|
}
|
|
269
274
|
|
|
270
|
-
.pf-v6-c-finder__item:hover .pf-v6-c-finder__item-actions,
|
|
271
275
|
.pf-v6-c-finder__item.pf-m-selected .pf-v6-c-finder__item-actions {
|
|
272
|
-
|
|
276
|
+
display: inline-flex;
|
|
273
277
|
}
|
|
274
278
|
|
|
275
279
|
.pf-v6-c-finder__item-pin {
|
|
@@ -350,6 +354,15 @@
|
|
|
350
354
|
background-color: var(--pf-v6-c-finder__item--m-selected--BackgroundColor);
|
|
351
355
|
}
|
|
352
356
|
|
|
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
|
+
--pf-v6-c-button__icon--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
360
|
+
}
|
|
361
|
+
|
|
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-menu-toggle {
|
|
363
|
+
--pf-v6-c-menu-toggle--Color: var(--pf-v6-c-finder__item--m-selected--Color);
|
|
364
|
+
}
|
|
365
|
+
|
|
353
366
|
.pf-v6-c-finder__column.pf-m-active .pf-v6-c-finder__item.pf-m-selected .pf-v6-c-finder__item-folder-icon {
|
|
354
367
|
color: var(--pf-v6-c-finder__item-folder-icon--m-selected--Color);
|
|
355
368
|
}
|
|
@@ -386,4 +399,6 @@
|
|
|
386
399
|
background-color: var(--pf-v6-c-finder__preview--BackgroundColor);
|
|
387
400
|
flex: 1;
|
|
388
401
|
overflow-y: auto;
|
|
402
|
+
border-left: var(--pf-v6-c-finder__column--BorderRightWidth) solid var(--pf-v6-c-finder__column--BorderRightColor);
|
|
403
|
+
margin-left: calc(var(--pf-v6-c-finder__column--BorderRightWidth) * -1);
|
|
389
404
|
}
|
package/package.json
CHANGED