Browse Source

minor adjustments

Stephen Ficklin 7 years ago
parent
commit
1cad56d5e3

+ 2 - 2
tripal/theme/css/tripal.css

@@ -8,7 +8,7 @@
   * site administrator
   */
 
-div.messages.tripal-site-admin-only{
+div.messages.tripal-site-admin-only {
   background-image: url("../images/TripalLogo-sm.png");
   background-repeat: no-repeat;
   background-color: #cce3ff;
@@ -80,7 +80,7 @@ div.messages.tripal-site-admin-only{
 
 
  /******************************************************************************
-  * Format for tripal dashbaord chart
+  * Format for tripal dashboard chart
   *****************************************************************************/
  #tripal-entity-type-chart .bar text.value {
    fill: white;

+ 2 - 2
tripal_chado/includes/tripal_chado.phylotree.inc

@@ -24,7 +24,7 @@ function tripal_phylogeny_prepare_tree_viewer($phylotree) {
 
   // Don't show tick marks for the taxonomy tree.
   $skip_ticks = 0;
-  if ($phylotree->type_id->name == 'taxonomy' or $phylotree->type_id->name == 'Speces tree') {
+  if ($phylotree->type_id->name == 'taxonomy' or $phylotree->type_id->name == 'Species tree') {
     $skip_ticks = 1;
   }
 
@@ -46,7 +46,7 @@ function tripal_phylogeny_prepare_tree_viewer($phylotree) {
       'tree_options' => array(
         'phylogram_width' => variable_get('tripal_phylogeny_default_phylogram_width', 350),
         'root_node_size' => variable_get('tripal_phylogeny_default_root_node_size', 3),
-        'interior_node_size' => variable_get('tripal_phylogeny_default_interior_node_size', 0),
+        'interior_node_size' => variable_get('tripal_phylogeny_default_interior_node_size', 1),
         'leaf_node_size' => variable_get('tripal_phylogeny_default_leaf_node_size', 6),
         'skipTicks' => $skip_ticks,
       ),

+ 12 - 0
tripal_chado/theme/css/tripal_phylogeny.css

@@ -0,0 +1,12 @@
+.pylotree-tooltip { 
+    position: absolute;
+    text-align: center;
+    width: 60px;
+    height: 28px;
+    padding: 2px;
+    font: 12px sans-serif;
+    background: lightsteelblue;
+    border: 0px;
+    border-radius: 8px;
+    pointer-events: none;
+}

+ 2 - 2
tripal_ds/theme/css/tripal_ds.css

@@ -1,11 +1,11 @@
 
 .ds-right {
-  width: 75%;
+  width: 85%;
   float: right;
 }
 
 .ds-left {
-  width: 23%;
+  width: 12%;
   float: left;
 }