color: #444444;
}
-#crm-container.crm-public .price-set-row.highlight label {
+#crm-container.crm-public .price-set-row .highlight label {
color: #000000;
font-weight: bold;
}
-#crm-container.crm-public .price-set-row.highlight .crm-price-amount-label {
+#crm-container.crm-public .price-set-row .highlight .crm-price-amount-label {
color: #222222;
}
CRM.$(function($) {
// highlight price sets
function updatePriceSetHighlight() {
- cj('#priceset .price-set-row').removeClass('highlight');
- cj('#priceset .price-set-row input:checked').parent().parent().addClass('highlight');
+ cj('#priceset .price-set-row span').removeClass('highlight');
+ cj('#priceset .price-set-row input:checked').parent().addClass('highlight');
}
cj('#priceset input[type="radio"]').change(updatePriceSetHighlight);
updatePriceSetHighlight();