Skip to content

Commit

Permalink
fix: proxy submission card colors are conflicting with branding
Browse files Browse the repository at this point in the history
- this makes the proxy sub card background the same as the steps background and the font black
- this should make the links visible and allow most branding to have links to emails that will pass accessibility tests
  • Loading branch information
jaredgalanis committed Aug 24, 2023
1 parent 5f04ed3 commit 071eac8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
10 changes: 10 additions & 0 deletions app/styles/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,16 @@ td {
color: white;
}

/* Submission workflow */
#proxy-input-block {
background-color: #f0f3f5;
color: black;
}
#on-behalf-of-block {
background-color: #f0f3f5;
color: black;
}

.back-arrow {
margin: 0px;
padding: 1px !important;
Expand Down
13 changes: 1 addition & 12 deletions public/branding.css
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,12 @@ a:hover,
}
.submissions-detail-comment-textarea {
resize: none;
min-height: 38px!important;
min-height: 38px !important;
}
.table-container {
overflow-x: auto;
}


/* Status icons */
.manuscript-required > .fa-circle,
.manuscript-required .fa-info-circle,
Expand Down Expand Up @@ -186,16 +185,6 @@ a:hover,
color: gray;
}

/* Submission workflow */
#proxy-input-block {
background-color: var(--secondary-500);
color: white;
}
#on-behalf-of-block {
background-color: var(--secondary-500);
color: white;
}

th.table-header > i {
color: var(--secondary-500);
opacity: 0.8;
Expand Down

0 comments on commit 071eac8

Please sign in to comment.