PC Gaming Shelter
An archive dedicated to preserving PC Gaming history and more

MediaWiki:Common.css: Difference between revisions

From PC Gaming Shelter
No edit summary
No edit summary
 
(76 intermediate revisions by 2 users not shown)
Line 1: Line 1:
/* CSS placed here will be applied to all skins */
/* CSS placed here will be applied to all skins */
/* Force tables to use 100% width when this class is used */
 
.fullwidth {
/* Hide user menu icon for anonymous */
    width: 100% !important;
.personal-tools-icon {
display: none !important;
}
 
.infobox-value ul {
  list-style: none;
}
}


/* Optional: Prevent Game Mode from wrapping onto two lines */
#rightMenu #p-contentnavigation.pagetools .tab-group > div#ca-talk {
.nowrap {
display: none !important;
    white-space: nowrap;
}
}


/* Disable links in table headers but keep sorting */
.card.thumbwall .card-img img {
table.smwtable th.headerSort a,
height: 100% !important;
table.smwtable th a {
    pointer-events: none;
    cursor: default;
    color: black; /* Optional: makes it look like normal text */
    text-decoration: none;
}
}
/* Re-enable pointer events for the sort icon if needed,
 
  but usually clicking the TH cell handles the sort. */
.collab-icons {
table.smwtable th {
margin-top: .25rem !important;
    cursor: pointer;
}
}

Latest revision as of 08:08, 25 April 2026

/* CSS placed here will be applied to all skins */

/* Hide user menu icon for anonymous */
.personal-tools-icon {
	display: none !important;
}

.infobox-value ul {
  list-style: none;
}

#rightMenu #p-contentnavigation.pagetools .tab-group > div#ca-talk {
	display: none !important;
}

.card.thumbwall .card-img img {
	height: 100% !important;
}

.collab-icons {
	margin-top: .25rem !important;
}