With the new PHPMyAdmin they changed a whole lot, and I like the new version! However everytime when I want to see details (like keys/indexes, etc) I needed to click on 'Details' or 'Options' to show all available details/options
Probably done to save space, but I just want to see it unfold by default. I couldn't find a configuration setting for it, but I found the use of "$GLOBALS['cfg']['InitialSlidersState'] == 'closed'" somewhere (libraries/common.lib.php:2390), so I added:
$cfg['InitialSlidersState'] = 'open';
To the config.inc.php and voila! If you find the correct way of doing this, let me know. In the mean while I'll use this.