diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-12-22 19:33:10 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-12-22 19:33:10 +0100 |
commit | 532cdf4bb82ab7cc6fa7659d9aec3ce122b2ec52 (patch) | |
tree | 801e0385f82d4e7e7888a80da645ef511cb1379e /app/view/templates/edittopbar.php | |
parent | 0e95eb5121b2f4be63591705c367a0de10046133 (diff) | |
download | wcms-532cdf4bb82ab7cc6fa7659d9aec3ce122b2ec52.tar.gz wcms-532cdf4bb82ab7cc6fa7659d9aec3ce122b2ec52.zip |
bug fix : medi preg match
Diffstat (limited to 'app/view/templates/edittopbar.php')
-rw-r--r-- | app/view/templates/edittopbar.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/view/templates/edittopbar.php b/app/view/templates/edittopbar.php index 5c1e43c..c547572 100644 --- a/app/view/templates/edittopbar.php +++ b/app/view/templates/edittopbar.php @@ -24,15 +24,15 @@ </span> <span id="headid"><?= $art->id() ?></span> -<span id="fontsize"> + <span id="fontsize"> <label for="fontsize">Font-size</label> - <input type="number" name="fontsize" value="<?= Config::fontsize() ?>" id="fontsize"> + <input type="number" name="fontsize" value="<?= Config::fontsize() ?>" id="fontsize" min="5" max="99"> </span> -<span id="menu"> +<span id="menu" style="display: none;"> <?php if($user->iseditor()) { ?> <a href="<?= $this->url('font') ?>"><span class="symbol">📝</span><span class="text">font</span></a> |