Fix checkbox labels font size in Options views

This commit is contained in:
Giuseppe Criscione 2018-07-07 00:15:14 +02:00
parent 1aa6b7c8c6
commit 330d8ed3cc
5 changed files with 5 additions and 5 deletions

View File

@ -1557,7 +1557,7 @@ label {
color: #e74c3b;
content: '*'; }
.system-options-form .checkbox-label {
.options-form .checkbox-label {
margin-bottom: 0.5rem;
font-size: 1rem; }

File diff suppressed because one or more lines are too long

View File

@ -149,7 +149,7 @@ label {
content: '*';
}
.system-options-form .checkbox-label {
.options-form .checkbox-label {
margin-bottom: 0.5rem;
font-size: 1rem;
}

View File

@ -1,7 +1,7 @@
<div class="component">
<h3 class="caption"><?= $this->label('options.options') ?></h3>
<?= $tabs ?>
<form method="post" data-form="site-options-form">
<form method="post" class="options-form" data-form="site-options-form">
<?= $fields ?>
<div class="separator-l"></div>
<input type="hidden" name="csrf-token" value="<?= $csrfToken ?>">

View File

@ -1,7 +1,7 @@
<div class="component">
<h3 class="caption"><?= $this->label('options.options') ?></h3>
<?= $tabs ?>
<form method="post" data-form="system-options-form">
<form method="post" class="options-form" data-form="system-options-form">
<?= $fields ?>
<div class="separator-l"></div>
<input type="hidden" name="csrf-token" value="<?= $csrfToken ?>">