File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed
Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " @patternfly/elements " : patch
3+ ---
4+
5+ ` <pf-tooltip> ` : hide content when copy/pasting tooltip elements
Original file line number Diff line number Diff line change 2121# tooltip {
2222 --_timestamp-text-decoration : none;
2323 --_timestamp-text-underline-offset : initial;
24+ user-select : none;
2425 display : block;
2526 opacity : 0 ;
2627 pointer-events : none;
7071
7172.open # tooltip {
7273 opacity : 1 ;
74+ user-select : initial;
7375}
7476
7577/* LEFT */
Original file line number Diff line number Diff line change @@ -189,7 +189,7 @@ export class PfTooltip extends LitElement {
189189 aria-labelledby ="tooltip ">
190190 < slot id ="invoker " @slotchange ="${ this . #invokerChanged} "> </ slot >
191191 </ div >
192- < div aria-hidden ="${ String ( ! open ) as 'true' | 'false' } ">
192+ < div ?inert ="${ ! open } ">
193193 < slot id ="tooltip " name ="content "> ${ this . content } </ slot >
194194 </ div >
195195 </ div >
You can’t perform that action at this time.
0 commit comments