Front end changes
authorSteve Sutton <steve@gaslightmedia.com>
Mon, 24 Sep 2018 18:09:35 +0000 (14:09 -0400)
committerSteve Sutton <steve@gaslightmedia.com>
Mon, 24 Sep 2018 18:09:35 +0000 (14:09 -0400)
Adjust style for View Hide event details.
Update text for popup.

css/front.css
views/front/registrations/registration.html

index 19c4794..32dba28 100644 (file)
 .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;
index a4d0637..a7088f1 100755 (executable)
@@ -28,7 +28,7 @@
     <div class="row">
         <div class="columns small-12  glm-reg-event-profile">
             <h1 id="glm-reg-event-name"><%= event_name %></h1>
-            <a id="glm-reg-event-detail-link">Click to view {/literal}{$terms.reg_term_event}{literal} details</a>
+            <a id="glm-reg-event-detail-link">View {/literal}{$terms.reg_term_event}{literal} details</a>
             <div id="glm-reg-details" class="row glm-hidden">
                 {/literal}
                 {if $regEvent.image}
             </div>
         </div>
         <div class="columns small-12">
-            <h3>Select {/literal}{$terms.reg_term_registration_cap} {$terms.reg_term_level_cap}{literal}</h3>
+            <h3>{/literal}{$terms.reg_term_registration_cap} Options{literal}</h3>
         </div>
         <div class="columns small-12 glm-reg-classes"></div>
         <div class="columns small-12">
   {if $settings.reg_not_submitted_dialog}
     <div id="regNotSubmittedDialog" title="PLEASE NOTE!">
         <p class="glm-reg-warning">
-            Your registrations have not yet been submitted!
+            Your registration is not complete!
         </p>
         <p>
-            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.
         </p>
     </div>
   {/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');
         }
     });