Skip to content

Commit

Permalink
Fix primefaces#3331: Overlay flickering fix
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Sep 16, 2022
1 parent dc7720f commit 07797e0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/lib/dialog/Dialog.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}

/* Github #3122: Prevent animation flickering */
.p-dialog:not([class*='p-dialog-']) {
.p-dialog:not([class*='p-dialog-']):not([class*='p-component']) {
display: none;
}

Expand Down
2 changes: 1 addition & 1 deletion components/lib/overlaypanel/OverlayPanel.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}

/* Github #3122: Prevent animation flickering */
.p-overlaypanel:not([class*='p-overlaypanel-']) {
.p-overlaypanel:not([class*='p-overlaypanel-']):not([class*='p-component']) {
display: none;
}

Expand Down
2 changes: 1 addition & 1 deletion components/lib/sidebar/Sidebar.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}

/* Github #3122: Prevent animation flickering */
.p-sidebar:not([class*="p-sidebar-"]){
.p-sidebar:not([class*="p-sidebar-"]):not([class*='p-component']){
display: none;
}

Expand Down

0 comments on commit 07797e0

Please sign in to comment.