Jump to content

MediaWiki:Common.css: Difference between revisions

From Continuum Universes Wiki
Line 8: Line 8:
.vote-box {
.vote-box {
   background-color: transparent;  /* remove green box */
   background-color: transparent;  /* remove green box */
   width: auto;
   width: 2em;
   height: auto;
   height: auto;
   padding: 0;
   padding: 0;

Revision as of 10:42, 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 --- */
.vote-box {
  background-color: transparent;   /* remove green box */
  width: 2em;
  height: auto;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

#PollVotes.vote-number {
  color: inherit;            /* stop forcing white */
  background-color: transparent; 
  font-size: var(--font-size-medium) !important;
  padding: 0.25;
  font-weight: 600;
}

#PollVotes.vote-number::before {
  content: "👍";
  font-size: var(--font-size-medium) !important;
  margin-right: 0.15em;
}

/* Hide the Vote/unvote link (we’ll keep it functional via JS) */
#Answer.vote-action {
  display: none;
}