Skip to content

Commit

Permalink
fiz
Browse files Browse the repository at this point in the history
  • Loading branch information
bwp91 committed Nov 7, 2023
1 parent 32aa7b6 commit 1eac32c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</div>
<div class="align-self-center">
<span *ngIf="homebridgePkg.installedVersion">
<a href="javascript:void(0)" (click)="$plugin.installPreviousVersion(homebridgePkg)" class="card-link">
<a href="javascript:void(0)" (click)="$plugin.installPreviousVersion(homebridgePkg)" class="card-link card-link-title">
v{{ homebridgePkg.installedVersion }}
</a>
</span>
Expand Down Expand Up @@ -84,7 +84,7 @@
<a routerLink="/plugins" class="primary-text" *ngIf="homebridgePluginStatus.length">
{{ homebridgePluginStatus.length }} {{ homebridgePluginStatus.length === 1 ? ('status.plugin_out_of_date' | translate) : ('status.plugins_out_of_date' | translate) }}
</a>
<span *ngIf="!homebridgePluginStatus.length" [translate]="'status.services.label_not_running'">
<span class="grey-text" *ngIf="!homebridgePluginStatus.length" [translate]="'status.services.label_not_running'">
{{ 'status.homebridge.label_up_to_date' | translate }}
</span>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,10 @@
@media (max-width: 767px) {
width: 100%;
}
}
}

::ng-deep body.dark-mode {
.card-link-title {
color: #ffffff !important;
}
}

0 comments on commit 1eac32c

Please sign in to comment.