[Redizajn 1KA v2] - Testiranje --> Diagnostika - v8

This commit is contained in:
tejagerjovic 2022-07-20 07:17:18 +02:00
parent 201f50c506
commit 0d556e852d
3 changed files with 14 additions and 6 deletions

View File

@ -513,7 +513,7 @@ class SurveyDiagnostics
echo '<script type="text/javascript"> diagnosticsChart(\'survey_length\','.$display_length.'); </script>'; echo '<script type="text/javascript"> diagnosticsChart(\'survey_length\','.$display_length.'); </script>';
echo '<div class="other_text">'; echo '<div class="other_text">';
echo '<p>'.$time.'</p>'; echo '<p class="desc">'.$time.'</p>';
echo '<a '.$link_time.'>'.$lang['srv_diagnostic_time_extra'].'</a>'; echo '<a '.$link_time.'>'.$lang['srv_diagnostic_time_extra'].'</a>';
echo '</div>'; echo '</div>';
@ -536,7 +536,7 @@ class SurveyDiagnostics
echo '<script type="text/javascript"> diagnosticsChart(\'survey_complex\','.$display_complex.'); </script>'; echo '<script type="text/javascript"> diagnosticsChart(\'survey_complex\','.$display_complex.'); </script>';
echo '<div class="other_text">'; echo '<div class="other_text">';
echo '<p>'.$kompleksnost.'</p>'; echo '<p class="desc">'.$kompleksnost.'</p>';
echo '<a '.$link_complex.'>'.$lang['srv_diagnostic_complexity_extra'].'</a>'; echo '<a '.$link_complex.'>'.$lang['srv_diagnostic_complexity_extra'].'</a>';
echo '</div>'; echo '</div>';

View File

@ -24262,14 +24262,18 @@ div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .diagnostic_graph .ot
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .diagnostic_graph .other_text { div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .diagnostic_graph .other_text {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: flex-end;
gap: 30px; }
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .diagnostic_graph .other_text .desc,
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .diagnostic_graph .other_text .desc {
margin-bottom: 16px;
} }
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .diagnostic_graph .other_text a, div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .diagnostic_graph .other_text a,
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .diagnostic_graph .other_text a { div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .diagnostic_graph .other_text a {
text-decoration: none; text-decoration: none;
font-size: 14px !important; font-size: 14px !important;
white-space: nowrap; white-space: nowrap;
margin-bottom: 10px;
} }
div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .time, div#srv_diagnostic .lastnosti_wrapper .lastnosti_left .box .time,
div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .time { div#srv_diagnostic .lastnosti_wrapper .lastnosti_middle .box .time {

View File

@ -105,13 +105,17 @@ div#srv_diagnostic {
.other_text { .other_text {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: center; justify-content: flex-end;
gap: 30px;
.desc {
margin-bottom: 16px;
}
a { a {
text-decoration: none; text-decoration: none;
font-size: 14px !important; font-size: 14px !important;
white-space: nowrap; white-space: nowrap;
margin-bottom: 10px;
} }
} }
} }