Add + and - on section bars, and added orange/blue bg change test links for the meeting
authorLaury GvR <laury@gaslightmedia.com>
Wed, 8 Aug 2018 18:55:37 +0000 (14:55 -0400)
committerLaury GvR <laury@gaslightmedia.com>
Wed, 8 Aug 2018 18:55:37 +0000 (14:55 -0400)
css/admin.css
views/admin/contacts/edit.html

index 3bc0a6f..990ae6b 100644 (file)
@@ -28,6 +28,9 @@
 .glm-table-section-title {
     border-bottom: 1px solid grey;
     padding-bottom: 6px;
+}
+#glm-admin-contact-wrapper #glm-admin-content-container .glm-contact-content-toggle .section-title {
+
 }
 .glm-contact-content-data {
     margin-top: -5px;
     padding: 10px 20px;
     text-transform: uppercase;
     margin-bottom: 5px;
+    position: relative;
+}
+#glm-table-profile > .glm-contact-content-toggle:after {
+    content: "+";
+    cursor: pointer;
+    right: 30px;
+    top: 15px;
+    font-size: 20px;
+    position: absolute;
+}
+#glm-table-profile > .glm-contact-content-toggle.selected:after {
+    content: "-";
+    top: 17px;
+    right: 32px;
+    font-size: 22px;
 }
 @media only screen and (max-width: 639px) {
     .glm-contact-content-toggle {
@@ -59,6 +77,7 @@
     line-height: 1.6;
     margin-bottom: 2px;
     margin-top: 2px;
+    max-width: 90%;
 }
 
 #glm-contact-fullprofile-toggle.selected {
     box-shadow: 0px -1px 0px darkred;
 }
 
+
 /* Input Fields CSS */
 input::placeholder {
     color: #acacac;
index c0126b0..a6136c7 100644 (file)
 
 
     <div id="glm-contact-fullprofile-toggle" class="">Expand All</div>
+    <div id="tryOrange">Try Orange</div>
+    <div id="tryBlue">Try Blue</div>
     {if $fromMemberMenu}
         <form action="{$thisUrl}?page=glm-members-admin-menu-member" method="post" enctype="multipart/form-data">
             <input type="hidden" name="glm_action" value="contacts">
 <script type="text/javascript">
     jQuery(document).ready(function($) {
 
+        $("#tryOrange").on("click", function () {
+            $("#glm-table-profile .glm-admin-table.glm-admin-table-inner").css("background-color","#FFF5EC");
+        });
+        $("#tryBlue").on("click", function () {
+            $("#glm-table-profile .glm-admin-table.glm-admin-table-inner").css("background-color","#f8ffff");
+        });
+
         /*
          * Edit area tabs
          */