Skip to content

Commit

Permalink
In Light theme, make Missing status color lighter
Browse files Browse the repository at this point in the history
  • Loading branch information
mathjazz committed Oct 25, 2023
1 parent b88bdf2 commit 27fbd21
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion pontoon/base/static/css/dark-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
--neon-green: #c0ff00;
--orange-1: #ffa10f;
--red-pink: #ff3366;
--blue-2: #5f7285;
--status-missing: #5f7285;
--light-blue: #4fc4f6;
--mustard-yellow: #fed271;

Expand Down
2 changes: 1 addition & 1 deletion pontoon/base/static/css/light-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
--neon-green: #c0ff00;
--orange-1: #ffa10f;
--red-pink: #ff3366;
--blue-2: #5f7285;
--status-missing: #bec7d1;
--light-blue: #4fc4f6;
--mustard-yellow: #fed271;

Expand Down
4 changes: 2 additions & 2 deletions pontoon/base/static/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
}

.status.fa:before {
color: var(--blue-2);
color: var(--status-missing);
content: '';
}

Expand Down Expand Up @@ -397,7 +397,7 @@ tfoot td a {
}

.select .menu ul li .chart span.missing {
background: var(--blue-2);
background: var(--status-missing);
}

.select .menu ul li .latest {
Expand Down
4 changes: 2 additions & 2 deletions pontoon/base/static/css/table.css
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ table.table.project-list.hidden {
}

.table .progress .chart-wrapper .missing {
background: var(--blue-2);
background: var(--status-missing);
}

.table tr:hover .progress .chart-wrapper {
Expand Down Expand Up @@ -363,7 +363,7 @@ table.table.project-list.hidden {
}

.table .progress .legend li.missing .title {
color: var(--blue-2);
color: var(--status-missing);
}

.table .progress .legend li.unreviewed .title {
Expand Down
2 changes: 1 addition & 1 deletion translate/src/modules/entitieslist/components/Entity.css
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
}

.entity .status:before {
color: var(--blue-2);
color: var(--status-missing);
content: '';
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export function ProgressChart({
{ type: pretranslated, color: style.getPropertyValue('--neon-green') },
{ type: warnings, color: style.getPropertyValue('--orange-1') },
{ type: errors, color: style.getPropertyValue('--red-pink') },
{ type: missing, color: style.getPropertyValue('--blue-2') },
{ type: missing, color: style.getPropertyValue('--status-missing') },
];

// Clear old canvas content to avoid aliasing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@
}

.progress-chart .menu .details div.missing {
border-color: var(--blue-2);
border-color: var(--status-missing);
}

.progress-chart .menu .details div .title {
Expand Down
2 changes: 1 addition & 1 deletion translate/src/modules/search/components/SearchBox.css
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
}

.search-box .missing .status:before {
color: var(--blue-2);
color: var(--status-missing);
}

.search-box .unreviewed .status:before {
Expand Down

0 comments on commit 27fbd21

Please sign in to comment.