Selaa lähdekoodia

Text area trailing text looks better miniaturized

pdontthink 17 vuotta sitten
vanhempi
commit
c72eb92339
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      templates/default/options.tpl

+ 1 - 1
templates/default/options.tpl

@@ -52,7 +52,7 @@ foreach ($options as $option) {
                 echo '<label for="new_' . $opt->name . '">'
                    . $opt->caption . '</label>';
             } else if ($opt->type == SMOPT_TYPE_TEXTAREA && !empty($opt->trailing_text)) {
-                echo $opt->caption . '<br />' . $opt->trailing_text;
+                echo $opt->caption . '<br /><small>' . $opt->trailing_text . '</small>';
             } else {
                 echo $opt->caption;
             }