@patternfly/patternfly 4.184.0 → 4.184.1
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/components/Accordion/accordion.css +1 -0
- package/components/Accordion/accordion.scss +1 -0
- package/docs/components/Accordion/examples/Accordion.md +16 -3
- package/package.json +1 -1
- package/patternfly-no-reset.css +1 -0
- package/patternfly.css +1 -0
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
|
@@ -121,6 +121,7 @@
|
|
|
121
121
|
right: 0;
|
|
122
122
|
bottom: 0;
|
|
123
123
|
left: 0;
|
|
124
|
+
pointer-events: none;
|
|
124
125
|
content: "";
|
|
125
126
|
border-bottom: var(--pf-c-accordion--m-bordered__expanded-content--m-expanded__expanded-content-body--last-child--after--BorderBottomWidth) solid var(--pf-c-accordion--m-bordered__expanded-content--m-expanded__expanded-content-body--last-child--after--BorderBottomColor);
|
|
126
127
|
}
|
|
@@ -140,6 +140,7 @@
|
|
|
140
140
|
right: 0;
|
|
141
141
|
bottom: 0;
|
|
142
142
|
left: 0;
|
|
143
|
+
pointer-events: none;
|
|
143
144
|
content: "";
|
|
144
145
|
border-bottom: var(--pf-c-accordion--m-bordered__expanded-content--m-expanded__expanded-content-body--last-child--after--BorderBottomWidth) solid var(--pf-c-accordion--m-bordered__expanded-content--m-expanded__expanded-content-body--last-child--after--BorderBottomColor);
|
|
145
146
|
}
|
|
@@ -275,9 +275,9 @@ cssPrefix: pf-c-accordion
|
|
|
275
275
|
</button>
|
|
276
276
|
</h3>
|
|
277
277
|
<div class="pf-c-accordion__expanded-content pf-m-expanded">
|
|
278
|
-
<div
|
|
279
|
-
|
|
280
|
-
|
|
278
|
+
<div class="pf-c-accordion__expanded-content-body">
|
|
279
|
+
<a href="#">Lorem ipsum</a> dolor sit amet, consectetur adipiscing elit. Duis molestie lorem lacinia dolor aliquet faucibus. Suspendisse gravida imperdiet accumsan. Aenean auctor lorem justo, vitae tincidunt enim blandit vel. Aenean quis tempus dolor. Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
280
|
+
</div>
|
|
281
281
|
</div>
|
|
282
282
|
|
|
283
283
|
<h3>
|
|
@@ -293,6 +293,19 @@ cssPrefix: pf-c-accordion
|
|
|
293
293
|
<div class="pf-c-accordion__expanded-content-body">This text is hidden</div>
|
|
294
294
|
</div>
|
|
295
295
|
|
|
296
|
+
<h3>
|
|
297
|
+
<button class="pf-c-accordion__toggle" type="button" aria-expanded="false">
|
|
298
|
+
<span class="pf-c-accordion__toggle-text">Item four</span>
|
|
299
|
+
|
|
300
|
+
<span class="pf-c-accordion__toggle-icon">
|
|
301
|
+
<i class="fas fa-angle-right" aria-hidden="true"></i>
|
|
302
|
+
</span>
|
|
303
|
+
</button>
|
|
304
|
+
</h3>
|
|
305
|
+
<div class="pf-c-accordion__expanded-content" hidden>
|
|
306
|
+
<div class="pf-c-accordion__expanded-content-body">This text is hidden</div>
|
|
307
|
+
</div>
|
|
308
|
+
|
|
296
309
|
<h3>
|
|
297
310
|
<button class="pf-c-accordion__toggle" type="button" aria-expanded="false">
|
|
298
311
|
<span class="pf-c-accordion__toggle-text">Item five</span>
|
package/package.json
CHANGED
package/patternfly-no-reset.css
CHANGED
|
@@ -5702,6 +5702,7 @@ html {
|
|
|
5702
5702
|
right: 0;
|
|
5703
5703
|
bottom: 0;
|
|
5704
5704
|
left: 0;
|
|
5705
|
+
pointer-events: none;
|
|
5705
5706
|
content: "";
|
|
5706
5707
|
border-bottom: var(--pf-c-accordion--m-bordered__expanded-content--m-expanded__expanded-content-body--last-child--after--BorderBottomWidth) solid var(--pf-c-accordion--m-bordered__expanded-content--m-expanded__expanded-content-body--last-child--after--BorderBottomColor);
|
|
5707
5708
|
}
|
package/patternfly.css
CHANGED
|
@@ -5824,6 +5824,7 @@ a {
|
|
|
5824
5824
|
right: 0;
|
|
5825
5825
|
bottom: 0;
|
|
5826
5826
|
left: 0;
|
|
5827
|
+
pointer-events: none;
|
|
5827
5828
|
content: "";
|
|
5828
5829
|
border-bottom: var(--pf-c-accordion--m-bordered__expanded-content--m-expanded__expanded-content-body--last-child--after--BorderBottomWidth) solid var(--pf-c-accordion--m-bordered__expanded-content--m-expanded__expanded-content-body--last-child--after--BorderBottomColor);
|
|
5829
5830
|
}
|