MediaWiki:Common.css: Difference between revisions
Appearance
Cdjensen94 (talk | contribs) |
Cdjensen94 (talk | contribs) |
||
| Line 17: | Line 17: | ||
#votebox .vote-number { | #votebox .vote-number { | ||
color: inherit; /* stop forcing white */ | color: inherit; /* stop forcing white */ | ||
font-size: var(-- | font-size: var(--font-size-medium); | ||
font-weight: 600; | font-weight: 600; | ||
} | } | ||
| Line 23: | Line 23: | ||
#votebox .vote-number::before { | #votebox .vote-number::before { | ||
content: "👍"; | content: "👍"; | ||
font-size: var(--font-size-medium); | |||
margin-right: 0.15em; | margin-right: 0.15em; | ||
} | } | ||
Revision as of 10:32, 31 December 2025
.welcome {
text-align: center;
font-size: 4em;
}
.emoji-trigger-wrap { margin-bottom: .5rem; }
#emoji-trigger { margin-right: .5rem; }
/* --- VoteNY: render as 👍1 --- */
#votebox.vote-box {
background: transparent; /* remove green box */
width: auto;
height: auto;
padding: 0;
display: inline-flex;
align-items: center;
}
#votebox .vote-number {
color: inherit; /* stop forcing white */
font-size: var(--font-size-medium);
font-weight: 600;
}
#votebox .vote-number::before {
content: "👍";
font-size: var(--font-size-medium);
margin-right: 0.15em;
}
/* Hide the Vote/unvote link (we’ll keep it functional via JS) */
#Answer.vote-action {
display: none;
}