Skip to content

Commit

Permalink
more styling
Browse files Browse the repository at this point in the history
  • Loading branch information
ddrury committed Jul 30, 2023
1 parent 418ed0a commit cb05bc8
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions resources/css/colors.css
Expand Up @@ -157,7 +157,7 @@
}

.wt-page-options-label,
.wt-facts-table th, .wt-facts-table .dropdown-toggle, wt-fact-controls
.wt-facts-table th, .wt-facts-table .dropdown-toggle,
.descriptionbox, .descriptionbox a,
.topbottombar, .topbottombar a,
.list_label, .list_label a, .wt-fact-controls {
Expand All @@ -167,7 +167,7 @@

.wt-page-options-value,
.wt-block-content,
.wt-facts-table td, wt-fact-content
.wt-facts-table td,
.ui-widget-header,
.optionbox, .ui-state-active a:link,
.list_value, .list_value_wrap,
Expand Down
10 changes: 5 additions & 5 deletions resources/views/modules/relatives/family.phtml
Expand Up @@ -45,8 +45,8 @@ foreach ($family->facts(['HUSB'], false, $fam_access_level) as $fact) {
?>
<div class="row mt-1 <?= $row_class ?>">
<div class="col-sm-2 pe-1 ps-0">
<div class="wt-fact-controls h-100">
<?= $individual === $person ? '<i class="icon-selected"></i>' : '' ?>
<div class="wt-fact-controls h-100 pt-1">
<?= $individual === $person ? '<i class="icon-selected"> </i>' : '' ?>
<?= Registry::container()->get(RelationshipService::class)->getCloseRelationshipName($individual, $person) ?>
</div>
</div>
Expand Down Expand Up @@ -85,8 +85,8 @@ foreach ($family->facts(['WIFE'], false, $fam_access_level) as $fact) {

<div class="row mt-1 <?= $row_class ?>">
<div class="col-sm-2 pe-1 ps-0">
<div class="wt-fact-controls h-100">
<?= $individual === $person ? '<i class="icon-selected"></i>' : '' ?>
<div class="wt-fact-controls h-100 pt-1">
<?= $individual === $person ? '<i class="icon-selected"> </i>' : '' ?>
<?= Registry::container()->get(RelationshipService::class)->getCloseRelationshipName($individual, $person) ?>
</div>
</div>
Expand Down Expand Up @@ -201,7 +201,7 @@ if (!$found && $family->canEdit()) { ?>
</div>
<?php endif ?>
<?php if ($individual === $person) : ?>
<i class="icon-selected"></i>
<i class="icon-selected"> </i>
<?php endif ?>
<?= Registry::container()->get(RelationshipService::class)->getCloseRelationshipName($individual, $person) ?>
</div>
Expand Down

0 comments on commit cb05bc8

Please sign in to comment.