Tag tree style improvements
authorColeman Watts <coleman@civicrm.org>
Thu, 14 Aug 2014 18:26:59 +0000 (19:26 +0100)
committerColeman Watts <coleman@civicrm.org>
Thu, 14 Aug 2014 18:26:59 +0000 (19:26 +0100)
css/civicrm.css
templates/CRM/Tag/Form/Tag.tpl

index e6e14e6c30e9c25414cd839cc5308a8eade19c18..00dda45966b09496bef53c9cbbb1d3ebca7a0a86 100644 (file)
@@ -2942,6 +2942,7 @@ div.grippie {
   opacity: .7;
   position: relative;
   top: 2px;
+  padding: 0;
 }
 
 div.crm-accordion-header a.helpicon {
index 87a98301855fe565866f040574e35745b7c2b801..9dca5a9c279cc8df363617082d1479ceafe3dd90 100644 (file)
   #tagtree .highlighted > label {
     background-color: #FEFD7B;
   }
+  #tagtree .helpicon ins {
+    display: none;
+  }
+  #tagtree ins.jstree-icon {
+    cursor: pointer;
+  }
 </style>
 <script type="text/javascript">
   (function($, _){{/literal}
 
       //load js tree.
       $("#tagtree").jstree({
-        "plugins" : ["themes", "html_data"],
-        "themes": {"url": CRM.config.resourceBase + 'packages/jquery/plugins/jstree/themes/default/style.css'}
+        plugins : ["themes", "html_data"],
+        themes: {
+          "theme": 'classic',
+          "dots": false,
+          "icons": false,
+          "url": CRM.config.resourceBase + 'packages/jquery/plugins/jstree/themes/classic/style.css'
+        }
       });
 
       {/literal}