mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-26 07:14:35 +02:00
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()
|
public function isValidAuthenticationBackend()
|
||||||
{
|
{
|
||||||
// @TODO fix validation of authentication backends (AK #5712)
|
// @TODO fix validation of authentication backends (AK #5712)
|
||||||
//return true;
|
return true;
|
||||||
try {
|
try {
|
||||||
$name = $this->getBackendName();
|
$name = $this->getBackendName();
|
||||||
$dbBackend = new DbUserBackend(
|
$dbBackend = new DbUserBackend(
|
||||||
|
@ -397,8 +397,7 @@ class GeneralForm extends Form
|
|||||||
'type' => 'submit',
|
'type' => 'submit',
|
||||||
'escape' => false,
|
'escape' => false,
|
||||||
'value' => '1',
|
'value' => '1',
|
||||||
'class' => 'btn btn-cta btn-common',
|
'label' => '<img src="/icingaweb/img/icons/save.png" title="Save Changes" /> Save Changes'
|
||||||
'label' => '<i class="icinga-icon-save"></i> Save Changes'
|
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,9 @@ $createDbBackend = $this->href('/config/createAuthenticationBackend', array('typ
|
|||||||
<b>Backend:</b> <?= $this->escape($backend->name); ?>
|
<b>Backend:</b> <?= $this->escape($backend->name); ?>
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<?= $backend->reorderForm; ?>
|
<div class="config-form-group">
|
||||||
|
<?= $backend->reorderForm; ?>
|
||||||
|
</div>
|
||||||
<a href="<?= $this->href('config/editAuthenticationBackend', array('auth_backend' => $backend->name));?>">
|
<a href="<?= $this->href('config/editAuthenticationBackend', array('auth_backend' => $backend->name));?>">
|
||||||
<?= $this->img('img/icons/edit.png', array('title' => 'Edit')); ?> Edit</a> 
|
<?= $this->img('img/icons/edit.png', array('title' => 'Edit')); ?> Edit</a> 
|
||||||
<?php if (count($this->backends) > 1): ?>
|
<?php if (count($this->backends) > 1): ?>
|
||||||
|
@ -38,7 +38,6 @@ input, select {
|
|||||||
select {
|
select {
|
||||||
/* https://bugzilla.mozilla.org/show_bug.cgi?id=649849 */
|
/* https://bugzilla.mozilla.org/show_bug.cgi?id=649849 */
|
||||||
-moz-appearance: none;
|
-moz-appearance: none;
|
||||||
text-indent: 5px;
|
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
text-overflow: '';
|
text-overflow: '';
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user