| 1 |
<?php namespace TierPricingTable\Integrations\Themes; |
| 2 |
|
| 3 |
class OceanWp { |
| 4 |
|
| 5 |
public function __construct() { |
| 6 |
add_action('wp_head', function () { |
| 7 |
?> |
| 8 |
<style> |
| 9 |
.tiered-pricing--active .amount { |
| 10 |
color: #fff; |
| 11 |
} |
| 12 |
.tiered-pricing-table tr { |
| 13 |
background: #fff; |
| 14 |
} |
| 15 |
.tiered-pricing-tooltip-icon { |
| 16 |
vertical-align: text-top; |
| 17 |
} |
| 18 |
</style> |
| 19 |
<?php |
| 20 |
}); |
| 21 |
} |
| 22 |
} |
| 23 |
|