diff options
-rw-r--r-- | core/css/guest.css | 13 | ||||
-rw-r--r-- | core/templates/installation.php | 2 |
2 files changed, 10 insertions, 5 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index f7d9280f9a7..032398ad750 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -534,15 +534,20 @@ form #selectDbType label { color:#888; cursor:pointer; border: 1px solid #ddd; -} -form #selectDbType label span { - cursor: pointer; padding: 10px 17px; } form #selectDbType label.ui-state-hover, form #selectDbType label.ui-state-active { + font-weight: normal; color:#000; - background-color:#e8e8e8; } + background-color:#e8e8e8; +} +form #selectDbType .ui-visual-focus { + box-shadow: none; +} +form #selectDbType label span { + display: none; +} /* Nicely grouping input field sets */ .grouptop, diff --git a/core/templates/installation.php b/core/templates/installation.php index 29c6bd352f4..7203f3c9e79 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -57,7 +57,7 @@ script('core', [ <?php if(!$_['directoryIsSet'] OR !$_['dbIsSet'] OR count($_['errors']) > 0): ?> <fieldset id="advancedHeader"> - <legend><a id="showAdvanced" tabindex="0" href="#"><?php p($l->t( 'Storage & database' )); ?> <img src="<?php print_unescaped(image_path('', 'actions/caret-white.svg')); ?>" /></a></legend> + <legend><a id="showAdvanced" tabindex="0" href="#"><?php p($l->t( 'Storage & database' )); ?><img src="<?php print_unescaped(image_path('', 'actions/caret-white.svg')); ?>" /></a></legend> </fieldset> <?php endif; ?> |