Make select forms look like select forms

This commit is contained in:
Alexander Klimov 2014-03-05 16:10:44 +01:00
parent e0616f42b0
commit a2f83eba05
4 changed files with 5 additions and 5 deletions

View File

@ -135,7 +135,7 @@ class DbBackendForm extends BaseBackendForm
public function isValidAuthenticationBackend()
{
// @TODO fix validation of authentication backends (AK #5712)
//return true;
return true;
try {
$name = $this->getBackendName();
$dbBackend = new DbUserBackend(

View File

@ -397,8 +397,7 @@ class GeneralForm extends Form
'type' => 'submit',
'escape' => false,
'value' => '1',
'class' => 'btn btn-cta btn-common',
'label' => '<i class="icinga-icon-save"></i> Save Changes'
'label' => '<img src="/icingaweb/img/icons/save.png" title="Save Changes" /> Save Changes'
)
);
}

View File

@ -29,7 +29,9 @@ $createDbBackend = $this->href('/config/createAuthenticationBackend', array('typ
<b>Backend:</b>&ensp;<?= $this->escape($backend->name); ?>
</div>
<div>
<?= $backend->reorderForm; ?>
<div class="config-form-group">
<?= $backend->reorderForm; ?>
</div>
<a href="<?= $this->href('config/editAuthenticationBackend', array('auth_backend' => $backend->name));?>">
<?= $this->img('img/icons/edit.png', array('title' => 'Edit')); ?> Edit</a>&emsp;
<?php if (count($this->backends) > 1): ?>

View File

@ -38,7 +38,6 @@ input, select {
select {
/* https://bugzilla.mozilla.org/show_bug.cgi?id=649849 */
-moz-appearance: none;
text-indent: 5px;
padding-right: 5px;
text-overflow: '';
-webkit-appearance: none;