瀏覽代碼

Note single - inline CRUD UI updates

Vijayakrishnan Krishnan 4 年之前
父節點
當前提交
9dbb6417d8

+ 4 - 2
resources/views/app/patient/partials/allergies.blade.php

@@ -45,7 +45,8 @@
         </a>
         @endif
     </div>
-    <table class="table table-sm border-0 my-0 mx-2">
+    <div class="px-2">
+    <table class="table table-sm border-0 my-0">
         <tbody>
         <?php $itemCount = 0;
         ?>
@@ -91,7 +92,7 @@
                                         </div>
                                     </form>
                                 </div>
-                                <span class="content-html"><b>{{$line->contentText}}</b></span>
+                                <span class="content-html text-nowrap"><b>{{$line->contentText}}</b></span>
                             </div>
                         </td>
                     </tr>
@@ -107,4 +108,5 @@
         @endif
         </tbody>
     </table>
+    </div>
 </div>

+ 4 - 2
resources/views/app/patient/partials/care-team.blade.php

@@ -51,7 +51,8 @@
         </a>
         @endif
     </div>
-    <table class="table table-sm border-0 my-0 mx-2">
+    <div class="px-2">
+    <table class="table table-sm border-0 my-0">
         <tbody>
         <?php $itemCount = 0; ?>
         @foreach($infoLines as $category => $lines)
@@ -100,7 +101,7 @@
                                         </div>
                                     </form>
                                 </div>
-                                <div class="content-html">
+                                <div class="content-html text-nowrap">
                                     <b>{{$line->contentText}}</b>
                                     <span class="text-secondary mx-1">/</span>
                                     <span class="text-secondary">{{ getVal($line->contentDetail, 'Specialty') }}</span>
@@ -122,4 +123,5 @@
         @endif
         </tbody>
     </table>
+    </div>
 </div>

+ 4 - 2
resources/views/app/patient/partials/dx.blade.php

@@ -56,7 +56,8 @@
         </a>
         @endif
     </div>
-    <table class="table table-sm border-0 my-0 mx-2">
+    <div class="px-2">
+    <table class="table table-sm border-0 my-0">
         <tbody>
         <?php $itemCount = 0; ?>
         @foreach($infoLines as $category => $lines)
@@ -120,7 +121,7 @@
                                         </div>
                                     </form>
                                 </div>
-                                <div class="content-html">
+                                <div class="content-html text-nowrap">
                                     <b>{{$line->contentText}}</b>
                                     @if(!empty(getVal($line->contentDetail, "Chronic or Acute")))
                                         <span class="text-secondary mx-1">/</span>
@@ -146,4 +147,5 @@
         @endif
         </tbody>
     </table>
+    </div>
 </div>

+ 4 - 2
resources/views/app/patient/partials/rx.blade.php

@@ -60,7 +60,8 @@
         </a>
         @endif
     </div>
-    <table class="table table-sm border-0 my-0 mx-2">
+    <div class="px-2">
+    <table class="table table-sm border-0 my-0">
         <tbody>
         <?php $itemCount = 0; ?>
         @foreach($infoLines as $category => $lines)
@@ -120,7 +121,7 @@
                                         </div>
                                     </form>
                                 </div>
-                                <span class="content-html">
+                                <span class="content-html text-nowrap">
                                     <b>{{$line->contentText}}</b>
                                     @if(!empty(getVal($line->contentDetail, "strength")))
                                         <span class="text-secondary">/</span>
@@ -146,5 +147,6 @@
         @endif
         </tbody>
     </table>
+    </div>
 </div>
 

+ 4 - 2
resources/views/app/patient/partials/vitals.blade.php

@@ -106,7 +106,8 @@ foreach($patient->measurements as $measurement) {
         </a>
         @endif
     </div>
-    <table class="table table-sm border-0 my-0 mx-2">
+    <div class="px-2">
+    <table class="table table-sm border-0 my-0">
         <tbody>
         @foreach($vitalLabels as $label)
             <tr>
@@ -138,7 +139,7 @@ foreach($patient->measurements as $measurement) {
                                 </div>
                             </form>
                         </div>
-                        <span class="content-html">
+                        <span class="content-html text-nowrap">
                             <span>{{ $label }}:</span>
                             <b>{{ $vitalValues[$label]['value'] }}</b>
                             <span class="font-weight-normal text-secondary ml-2 text-sm">(as on {{ friendly_date_time($vitalValues[$label]['effectiveDate'], false) }})</span>
@@ -156,4 +157,5 @@ foreach($patient->measurements as $measurement) {
         @endif
         </tbody>
     </table>
+    </div>
 </div>