Skip to content

Commit

Permalink
web app: Fix colors on backend status page
Browse files Browse the repository at this point in the history
Change colors to conform to selected theme.

Fixes #827
  • Loading branch information
bennettpeter committed Dec 26, 2023
1 parent 77a1ff3 commit 18a9cd4
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions mythtv/html/backend/src/app/status/status.component.css
@@ -1,13 +1,11 @@
div.statusBox {
width: auto;
border-top:1px solid #000000;
border-right:1px solid #000000;
border-bottom:1px solid #000000;
border-left:10px solid #000000;
border-top:1px solid var(--text-color);
border-right:1px solid var(--text-color);
border-bottom:1px solid var(--text-color);
border-left:10px solid var(--text-color);
padding:10px;
border-radius:8px 0px 0px 8px;
margin: 20px;
margin-bottom: 20px;
color: #000;
background-color: #fff;
}

0 comments on commit 18a9cd4

Please sign in to comment.