Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions core/css/guest.css
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion core/templates/installation.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@

<?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; ?>

Expand Down