Menu

#3276 Create Table Button hover broken (Fix included)

3.4.0
out-of-date
nobody
Interface (555)
5
2013-06-11
2011-04-22
Benjam
No

When using the new pmahomme theme and you hover over the create table button in the left nav (when viewing a database) the button gets an extra background color that overlaps the rounded corners and looks ugly.

To fix this, I've added the following lines to the theme_left.css.php file...

Just after line 232 which reads:
<?php if ($GLOBALS['cfg']['LeftPointerEnable']) { ?>
div#left_tableList > ul li:hover > a,
div#left_tableList > ul li:hover {
background: #e4e4e4;
color: <?php echo $GLOBALS['cfg']['NaviPointerColor']; ?>;
}

I added the following CSS before the closing curly brace of that if statement block:
div#left_tableList > ul#newtable li:hover > a,
div#left_tableList > ul#newtable li:hover {
background-color: transparent;
}

Discussion

  • Benjam

    Benjam - 2011-04-22

    as a side note... the whole button has a hover state, but only the text is clickable. This is confusing. The whole button should be clickable. This can be acheived by making the A tag have display: block, and adjust as needed to make everything else fit.

     
  • Marc Delisle

    Marc Delisle - 2011-04-22
    • status: open --> pending-out-of-date
     
  • Marc Delisle

    Marc Delisle - 2011-04-22

    I no longer see this problem in current development version (master git).

     
  • SourceForge Robot

    This Tracker item was closed automatically by the system. It was
    previously set to a Pending status, and the original submitter
    did not respond within 14 days (the time period specified by
    the administrator of this Tracker).

     
  • SourceForge Robot

    • status: pending-out-of-date --> closed-out-of-date
     
  • Michal Čihař

    Michal Čihař - 2013-06-11
    • Status: closed-out-of-date --> out-of-date