Skip to content

Commit

Permalink
Fix bug #4459: first char of expanded DB could be not clickable.
Browse files Browse the repository at this point in the history
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
  • Loading branch information
Tithugues committed Jul 15, 2014
1 parent fe160ae commit eab2da4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
6 changes: 6 additions & 0 deletions themes/original/css/navigation.css.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,10 @@
position: absolute;
height: 100%;
}
#pma_navigation_tree_content a.hover_show_full {
position: relative;
z-index: 9999;
}
#pma_navigation_tree a {
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
}
Expand Down Expand Up @@ -199,6 +203,8 @@
#pma_navigation_tree div.block i {
border-<?php echo $left; ?>: 1px solid #666;
border-bottom: 1px solid #666;
position: relative;
z-index: 0;
}
#pma_navigation_tree div.block i.first { /* Removes top segment */
border-<?php echo $left; ?>: 0;
Expand Down
6 changes: 6 additions & 0 deletions themes/pmahomme/css/navigation.css.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@
position: absolute;
height: 100%;
}
#pma_navigation_tree_content a.hover_show_full {
position: relative;
z-index: 9999;
}
#pma_navigation_tree a {
color: <?php echo $GLOBALS['cfg']['NaviColor']; ?>;
}
Expand Down Expand Up @@ -189,6 +193,8 @@
display: block;
border-<?php echo $left; ?>: 1px solid #666;
border-bottom: 1px solid #666;
position: relative;
z-index: 0;
}
#pma_navigation_tree div.block i.first { /* Removes top segment */
border-<?php echo $left; ?>: 0;
Expand Down

0 comments on commit eab2da4

Please sign in to comment.