[Redizajn 1ka] Typography popravki

This commit is contained in:
tejagerjovic 2021-12-24 00:51:42 +01:00
parent 034efd004c
commit 439506e994
4 changed files with 25 additions and 20 deletions

View File

@ -1025,7 +1025,7 @@ class SurveyAdminSettings {
foreach($vrednosti as $vrednost){ foreach($vrednosti as $vrednost){
echo '<tr>'; echo '<tr>';
echo '<td>'.$vrednost['naslov'].'</td>'; echo '<td>'.$vrednost['naslov'].'</td>';
echo '<td class="right"><button class="table-inline blue" type="button" onclick="delete_skupina(\'2\', \''.$vrednost['id'].'\');">'.strtoupper($lang['srv_password_remove']).'</button></td>'; echo '<td class="right"><button class="table-inline blue caps" type="button" onclick="delete_skupina(\'2\', \''.$vrednost['id'].'\');">'.$lang['srv_password_remove'].'</button></td>';
echo '</tr>'; echo '</tr>';
} }
} }

View File

@ -332,7 +332,7 @@ class SurveySkupine {
//Gesla //Gesla
if($skupine == 2){ if($skupine == 2){
echo '<td>'.stripslashes($naslov_vrednost).'</td>'; echo '<td>'.stripslashes($naslov_vrednost).'</td>';
echo '<td class="right"><button class="table-inline blue" type="button" onclick="delete_skupina(\''.$skupine.'\', \''.$vre_id.'\');">'.strtoupper($lang['srv_password_remove']).'</button></td>'; echo '<td class="right"><button class="table-inline blue caps" type="button" onclick="delete_skupina(\''.$skupine.'\', \''.$vre_id.'\');">'.$lang['srv_password_remove'].'</button></td>';
} }
echo '</tr>'; echo '</tr>';

View File

@ -5057,16 +5057,21 @@ p, span {
margin-block-start: 0; margin-block-start: 0;
margin-block-end: 0; margin-block-end: 0;
} }
p.warning, p.red, span.warning, span.red {
.warning,
.red {
color: #FF0000; color: #FF0000;
} }
p.italic, span.italic {
.italic {
font-style: italic; font-style: italic;
} }
p.bold, span.bold {
.bold {
font-weight: 800; font-weight: 800;
} }
p.caps, span.caps {
.caps {
text-transform: uppercase; text-transform: uppercase;
} }

View File

@ -3,21 +3,21 @@ p,span {
font-size: 16px; font-size: 16px;
margin-block-start: 0; margin-block-start: 0;
margin-block-end: 0; margin-block-end: 0;
}
&.warning,
&.red {
color: $red;
}
&.italic { .warning,
font-style: italic; .red {
} color: $red;
}
&.bold { .italic {
font-weight: $extra-bold; font-style: italic;
} }
&.caps { .bold {
text-transform: uppercase; font-weight: $extra-bold;
} }
.caps {
text-transform: uppercase;
} }