1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2024-12-28 08:40:41 +01:00

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

@ -1160,3 +1160,10 @@ div.tip {
font-size: 2.4em; 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 // Gestione grafica dell'attributo required
if (in_array('required', $extras)) { if (in_array('required', $extras)) {
if (!empty($values['label'])) { if (!empty($values['label'])) {
$values['label'] .= '*'; $values['label'] .= '<span class="text-red" >*</span>';
} elseif (!empty($values['placeholder'])) { } elseif (!empty($values['placeholder'])) {
$values['placeholder'] .= '*'; $values['placeholder'] .= '*';
} }