-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Lightbox trigger BUTTON visibility issue on an Image lightbox when Picture Element is enabled #1814
Fix Lightbox trigger BUTTON visibility issue on an Image lightbox when Picture Element is enabled #1814
Changes from all commits
53c410a
6222df1
0c57433
d1cc1f5
8982faf
876205e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -168,3 +168,26 @@ | |||||
$image | ||||||
); | ||||||
} | ||||||
|
||||||
/** | ||||||
* Adds CSS to make Lightbox trigger BUTTON visible on an Image lightbox when Picture Element is enabled. | ||||||
* | ||||||
* @since n.e.x.t | ||||||
*/ | ||||||
function webp_make_lightbox_trigger_button_visible(): void { | ||||||
if ( has_filter( 'render_block_core/image', 'block_core_image_render_lightbox' ) ) { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't know why, but the
Suggested change
|
||||||
echo '<style> .wp-lightbox-container > picture + button { opacity: 1 } </style>'; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Without the |
||||||
} | ||||||
} | ||||||
|
||||||
/** | ||||||
* Add an action to wp_footer conditionally for lighbox trigger button visibility. | ||||||
* | ||||||
* @since n.e.x.t | ||||||
*/ | ||||||
function webp_add_footer_action_for_lightbox_button_visibility(): void { | ||||||
if ( webp_uploads_is_picture_element_enabled() ) { | ||||||
add_action( 'wp_footer', 'webp_make_lightbox_trigger_button_visible' ); | ||||||
} | ||||||
} | ||||||
add_action( 'init', 'webp_add_footer_action_for_lightbox_button_visibility' ); | ||||||
Comment on lines
+183
to
+193
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do we really need two functions for this? I think it would be fine to unconditionally add the A related question is: Should this be in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For classic themes this needs to be in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Makes sense, let's stick with |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please review the code linting failures, see https://github.com/WordPress/performance/actions/runs/12910976968/job/36002299388?pr=1814.