Migliorie grafiche minori

This commit is contained in:
Luca 2023-03-10 10:31:55 +01:00
parent b3f2d6bd78
commit 8bacd51c38
2 changed files with 8 additions and 1 deletions

View File

@ -1159,4 +1159,11 @@ div.tip {
html body.sidebar-mini.sidebar-mini.sidebar-collapse i.fa.fa-user-circle-o.fa-3x.pull-left {
font-size: 2.4em;
}
}
/*
* Colore help icon
*/
.tip.tooltipstered>.fa-question-circle-o {
color: dodgerblue;
}

View File

@ -457,7 +457,7 @@ class HTMLBuilder
// Gestione grafica dell'attributo required
if (in_array('required', $extras)) {
if (!empty($values['label'])) {
$values['label'] .= '*';
$values['label'] .= '<span class="text-red" >*</span>';
} elseif (!empty($values['placeholder'])) {
$values['placeholder'] .= '*';
}