Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion css/frm_admin.css

Large diffs are not rendered by default.

10 changes: 8 additions & 2 deletions resources/scss/admin/components/_meta-tag.scss
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,19 @@
.frm-meta-tag.frm-orange-tag,
.frm-meta-tag.frm-orange-tag:hover {
background-color: #fef7f4;
color: var(--orange);

/* var(--orange) here is 3.18:1, failing WCAG AA; this clears 4.5:1. Scoped
here rather than the shared token, which other rules also rely on. */
color: #b54708;
}

.frm-meta-tag.frm-green-tag,
.frm-meta-tag.frm-green-tag:hover {
background-color: var(--success-500);
color: #fff;

/* White is 2.62:1, failing WCAG AA; no success-family shade clears 4.5:1
against this background either, so this reuses the grey tag's near-black. */
color: var(--grey-900);
}

.frm-entry-status-0,
Expand Down
Loading