Quellcode durchsuchen

Support grow-till-300px + apply to renderers

Vijayakrishnan vor 3 Jahren
Ursprung
Commit
eb781cc441
23 geänderte Dateien mit 53 neuen und 43 gelöschten Zeilen
  1. 1 1
      config/app.php
  2. 10 0
      public/css/style.css
  3. 2 2
      resources/views/app/patient/module-specific-summary-renderers/allergy/plan.blade.php
  4. 2 2
      resources/views/app/patient/module-specific-summary-renderers/allergy/subjective.blade.php
  5. 2 2
      resources/views/app/patient/module-specific-summary-renderers/behavior/plan.blade.php
  6. 2 2
      resources/views/app/patient/module-specific-summary-renderers/behavior/subjective.blade.php
  7. 2 2
      resources/views/app/patient/module-specific-summary-renderers/care_team_member/plan.blade.php
  8. 2 2
      resources/views/app/patient/module-specific-summary-renderers/care_team_member/subjective.blade.php
  9. 2 2
      resources/views/app/patient/module-specific-summary-renderers/exercise/plan.blade.php
  10. 2 2
      resources/views/app/patient/module-specific-summary-renderers/exercise/subjective.blade.php
  11. 2 2
      resources/views/app/patient/module-specific-summary-renderers/goal/plan.blade.php
  12. 2 2
      resources/views/app/patient/module-specific-summary-renderers/goal/subjective.blade.php
  13. 2 2
      resources/views/app/patient/module-specific-summary-renderers/medication/plan.blade.php
  14. 2 2
      resources/views/app/patient/module-specific-summary-renderers/medication/subjective.blade.php
  15. 2 2
      resources/views/app/patient/module-specific-summary-renderers/nutrition/plan.blade.php
  16. 2 2
      resources/views/app/patient/module-specific-summary-renderers/nutrition/subjective.blade.php
  17. 2 2
      resources/views/app/patient/module-specific-summary-renderers/problem/plan.blade.php
  18. 2 2
      resources/views/app/patient/module-specific-summary-renderers/problem/subjective.blade.php
  19. 2 2
      resources/views/app/patient/segment-templates/omega_allergies/summary.blade.php
  20. 2 2
      resources/views/app/patient/segment-templates/omega_care_team/summary.blade.php
  21. 2 2
      resources/views/app/patient/segment-templates/omega_goals/summary.blade.php
  22. 2 2
      resources/views/app/patient/segment-templates/omega_medications/summary.blade.php
  23. 2 2
      resources/views/app/patient/segment-templates/omega_problems/summary.blade.php

+ 1 - 1
config/app.php

@@ -65,7 +65,7 @@ return [
 
     'hrm2_url' => env('HRM2_URL'),
 
-    'asset_version' => 71,
+    'asset_version' => 72,
 
     'temp_dir' => env('TEMP_DIR'),
 

+ 10 - 0
public/css/style.css

@@ -368,6 +368,11 @@ body>nav.navbar {
 .mcp-theme-1 .width-300px {
     width: 300px !important;
 }
+.mcp-theme-1 .grow-till-300px {
+    inline-size: max-content;
+    writing-mode: horizontal-tb;
+    max-width: 300px;
+}
 .mcp-theme-1 .width-22px {
     width: 22px !important;
 }
@@ -3387,4 +3392,9 @@ body.forced-masking #mask {
 }
 #handoutSelectComponent .handout.selected .handout-detail {
     border-color: var(--primary-color) !important;
+}
+
+.note-container.note_template_omega_soap_visit table.table-cage tr td:nth-last-child(3) {
+    max-width: unset !important;
+    min-width: unset !important;
 }

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/allergy/plan.blade.php

@@ -20,8 +20,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/allergy/subjective.blade.php

@@ -20,8 +20,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/behavior/plan.blade.php

@@ -23,8 +23,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             {{ucwords(str_replace('_', ' ', strtolower($point->category)))}}
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/behavior/subjective.blade.php

@@ -23,8 +23,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             {{ucwords(str_replace('_', ' ', strtolower($point->category)))}}
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/care_team_member/plan.blade.php

@@ -20,8 +20,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/care_team_member/subjective.blade.php

@@ -20,8 +20,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/exercise/plan.blade.php

@@ -23,8 +23,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             {{ucwords(str_replace('_', ' ', strtolower($point->category)))}}
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/exercise/subjective.blade.php

@@ -23,8 +23,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             {{ucwords(str_replace('_', ' ', strtolower($point->category)))}}
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/goal/plan.blade.php

@@ -20,8 +20,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             <?= !!@($point->data->goal) ? @($point->data->goal) : '-' ?>
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/goal/subjective.blade.php

@@ -20,8 +20,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             <?= !!@($point->data->goal) ? @($point->data->goal) : '-' ?>
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/medication/plan.blade.php

@@ -20,8 +20,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/medication/subjective.blade.php

@@ -20,8 +20,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/nutrition/plan.blade.php

@@ -23,8 +23,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             {{ucwords(str_replace('_', ' ', strtolower($point->category)))}}
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/nutrition/subjective.blade.php

@@ -23,8 +23,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             {{ucwords(str_replace('_', ' ', strtolower($point->category)))}}
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/problem/plan.blade.php

@@ -21,8 +21,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                         </div>
                     </td>

+ 2 - 2
resources/views/app/patient/module-specific-summary-renderers/problem/subjective.blade.php

@@ -20,8 +20,8 @@
                             {{ $j }}.
                         @endif
                     </td>
-                    <td class="px-2 width-300px">
-                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+                    <td class="px-2">
+                        <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                             <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                         </div>
                     </td>

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

@@ -33,8 +33,8 @@ $plural = 'Allergies';
                     {{ $j }}.
                 @endif
             </td>
-            <td class="px-2 width-300px">
-                <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+            <td class="px-2">
+                <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                     <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                     
                 </div>

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

@@ -24,8 +24,8 @@ $plural = 'Care team members';
                     {{ $j }}.
                 @endif
             </td>
-            <td class="px-2 width-300px">
-                <div class="<?= $point->is_removed ? 'strike-through' : '' ?>">
+            <td class="px-2">
+                <div class="<?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                     <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                     <?= !!@($point->data->specialty) ? '/&nbsp;' . @($point->data->specialty) . '' : '' ?>
                     <?= !!@($point->data->organization) ? '/&nbsp;' . @($point->data->organization) . '' : '' ?><br>

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

@@ -24,8 +24,8 @@ $plural = 'Goals';
                     {{ $j }}.
                 @endif
             </td>
-            <td class="px-2 width-300px">
-                <div class="<?= $point->is_removed ? 'strike-through' : '' ?>">
+            <td class="px-2">
+                <div class="<?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
                     <?= !!@($point->data->goal) ? @($point->data->goal) : '-' ?>
                 </div>
             </td>

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

@@ -29,8 +29,8 @@ $plural = 'Medications';
 				{{ $j }}.
 			@endif
 		</td>
-		<td class="px-2 width-300px">
-			<div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+		<td class="px-2">
+			<div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px">
 				<?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
 			</div>
 		</td>

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

@@ -24,8 +24,8 @@ $plural = 'Problems';
                     {{ $j }}.
                 @endif
             </td>
-            <td class="px-2 width-300px">
-                <div class=" <?= $point->is_removed ? 'strike-through' : '' ?>">
+            <td class="px-2">
+                <div class=" <?= $point->is_removed ? 'strike-through' : '' ?> grow-till-300px" >
                     <?= !!@($point->data->name) ? @($point->data->name) : '-' ?>
                 </div>
             </td>