Skip to content
Open
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
11 changes: 11 additions & 0 deletions packages/frontend/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,17 @@ code {
cursor: pointer;
}

/* A <button> does not inherit .ballot's color — it takes the UA stylesheet's
ButtonText. That is black on desktop and Android, which is why nobody set a
colour here, but on iOS WebKit it resolves to the system tint and the score
digits came out blue (#1272) — including inside filled bubbles, where the
digit is meant to disappear against the black fill. Stating the colour makes
every platform render what desktop already did. */
.circle,
.oval {
color: var(--brand-black);
}

.circle.filled,
.oval.filled {
background-color: black;
Expand Down
Loading