Make select forms look like select forms
This commit is contained in:
parent
e0616f42b0
commit
a2f83eba05
|
@ -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(
|
||||
|
|
|
@ -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'
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
|
@ -29,7 +29,9 @@ $createDbBackend = $this->href('/config/createAuthenticationBackend', array('typ
|
|||
<b>Backend:</b> <?= $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> 
|
||||
<?php if (count($this->backends) > 1): ?>
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue