Source code
Revision control
Copy as Markdown
Other Tools
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
/**
* eyebuydirect.ca - PayPal button is unclickable
*
* The site uses Zoid components for the PayPal button, which gives opacity:0 to
* its containing element, which makes it unclickable in Firefox. We should be able
* to simply remove that opacity:0 for now.
*/
[id^="zoid-paypal-buttons-"] {
opacity: unset !important;
}