From 636c150a117202f0029d08082d70b4eef0e5bab2 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Mon, 24 Sep 2018 14:09:35 -0400 Subject: [PATCH] Front end changes Adjust style for View Hide event details. Update text for popup. --- css/front.css | 5 +++++ views/front/registrations/registration.html | 17 ++++++++--------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/css/front.css b/css/front.css index 19c4794..32dba28 100644 --- a/css/front.css +++ b/css/front.css @@ -32,6 +32,10 @@ .glm-reg-event-descr-container{ margin-bottom: 15px; } +#glm-reg-event-detail-link { + text-decoration: underline; + font-size: 18px; +} .glm-reg-read-more{ border: 2px solid #55b776; border-radius: 4px; @@ -65,6 +69,7 @@ float: left; color: #008CBA; border-right: 1px solid white; + text-decoration: underline; } .glm-reg-event-profile-details H4{ color: #363636; diff --git a/views/front/registrations/registration.html b/views/front/registrations/registration.html index a4d0637..a7088f1 100755 --- a/views/front/registrations/registration.html +++ b/views/front/registrations/registration.html @@ -28,7 +28,7 @@
-

Select {/literal}{$terms.reg_term_registration_cap} {$terms.reg_term_level_cap}{literal}

+

{/literal}{$terms.reg_term_registration_cap} Options{literal}

@@ -471,11 +471,10 @@ {if $settings.reg_not_submitted_dialog}

- Your registrations have not yet been submitted! + Your registration is not complete!

- To complete your registrations, please click on the "Continue" button - to proceed to the "Selected {$terms.reg_term_registration_plur_cap}" page. + Click "{terms.reg_term_button_attendee_page_continue}" to finalize your contact/billing information.

{/if} @@ -632,12 +631,12 @@ jQuery(function($){ var map = "#glm-reg-map"; var mapNewH = 0; var mapOverflow = 'hidden'; - var mapBtnTxt = 'view map'; + var mapBtnTxt = 'View map'; if ($(map_container).height() == 0) { mapNewH = 250; mapV = 'visible'; - mapBtnTxt = 'hide map' + mapBtnTxt = 'Hide map' } $(map_container).animate({ overflow: mapOverflow, @@ -715,9 +714,9 @@ jQuery(function($){ detailPart.toggleClass('glm-hidden'); //detailPart.toggle('2000'); if ( detailPart.hasClass('glm-hidden') ) { - $(this).html('Click to view ' + '{$terms.reg_term_event}' + ' details'); + $(this).html('View ' + '{$terms.reg_term_event}' + ' details'); } else { - $(this).html('Click to hide ' + '{$terms.reg_term_event}' + ' details'); + $(this).html('Hide ' + '{$terms.reg_term_event}' + ' details'); } }); -- 2.17.1