Browse Source

Omega - UI polish

Vijayakrishnan 3 năm trước cách đây
mục cha
commit
95361d6e40

+ 2 - 2
resources/views/app/patient/segment-templates/omega_history_family/summary.blade.php

@@ -70,10 +70,10 @@ if($contentData && !$contentData['unknown'] && !!$contentData['count']) {
         }
         ?>
         @if(count($positives))
-            <div class="pt-1"><b>Positive for</b>: {!!  implode(', ', $positives) !!}</div>
+            <div class=""><b>Positive for</b>: {!!  implode(', ', $positives) !!}</div>
         @endif
         @if(count($negatives))
-            <div class="pt-1"><b>Negative for</b>: {!!  implode(', ', $negatives) !!}</div>
+            <div class=""><b>Negative for</b>: {!!  implode(', ', $negatives) !!}</div>
         @endif
     </div>
     <?php if(isset($contentData['items'][$i]['comments']) && !empty($contentData['items'][$i]['comments'])): ?>

+ 3 - 3
resources/views/app/patient/segment-templates/omega_ros/summary.blade.php

@@ -197,7 +197,7 @@ if ($point->lastChildReview && $point->lastChildReview->data) {
     $contentData = $point->lastChildReview->data;
 
     if(!!@$contentData['declaration']) {
-        echo '<div class="mb-2">';
+        echo '<div class="mb-1">';
         echo '<i class="fa fa-check"></i>&nbsp;';
         echo "Except for the systems documented in the HPI or detailed below, all other systems were reviewed and negative.";
         echo '</div>';
@@ -233,7 +233,7 @@ if ($point->lastChildReview && $point->lastChildReview->data) {
 
     foreach($display as $head => $line) {
         ?>
-        <div class="mb-2">
+        <div class="">
             <span class="font-weight-bold mr-1">{{$head}}:</span>
             <span class="">{!! $line !!}</span>
         </div>
@@ -241,7 +241,7 @@ if ($point->lastChildReview && $point->lastChildReview->data) {
     }
     ?>
     @if(isset($contentData['comments']) && !empty(trim($contentData['comments'])))
-        <div class="mt-2 mb-1">
+        <div class="mt-2">
             <b>Comments: </b><?= $contentData['comments'] ?>
         </div>
     @endif