|
@@ -10,15 +10,15 @@ $isOmegaSystemSegment = (strpos($iName, 'omega_') === 0 && substr($iName, -7) ==
|
|
|
data-segment-template-uid="{{ $segment->segmentTemplate->uid }}"
|
|
|
data-segment-template-name="{{ $segment->segmentTemplate->internal_name }}">
|
|
|
|
|
|
- <div class="d-flex align-items-start bg-light text-secondary p-1">
|
|
|
+ <div class="d-flex align-items-start bg-light text-secondary {{$segment->heading ? 'p-1' : 'py-1 pr-1'}}">
|
|
|
|
|
|
<!-- title -->
|
|
|
|
|
|
<?php
|
|
|
- $minWidthClass = $segment->heading ? 'min-width-110px' : 'min-width-140px';
|
|
|
+ $extraClass = $segment->heading ? 'min-width-110px' : 'min-width-140px pl-2';
|
|
|
?>
|
|
|
|
|
|
- <div style="color: black; text-decoration: underline; font-size: 13px;" class="font-weight-bold mr-2 {{$minWidthClass}}">
|
|
|
+ <div class="text-dark font-weight-bold font-size-13 mr-2 {{$extraClass}}">
|
|
|
{{$segment->display_title}}:
|
|
|
</div>
|
|
|
|