Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

MediaWiki:Common.css: Difference between revisions

MediaWiki interface page
Content deleted Content added
XPDG (talk | contribs)
No edit summary
Tag: Reverted
XPDG (talk | contribs)
Undo revision 226 by XPDG (talk)
Tag: Undo
 
Line 1: Line 1:
/* === Main Page Adjustments === */
/* === Main Page Adjustments === */
/*.page-Main_Page .mw-side,*/
.page-Main_Page .mw-side,
/*.page-Main_Page .firstHeading,*/
.page-Main_Page .firstHeading,
/*.page-Main_Page #siteSub {*/
.page-Main_Page #siteSub {
/* display: none !important;*/
display: none !important;
}
/*}*/


/* === Footer Cleanup === */
/* === Footer Cleanup === */
/*#footer-places {*/
#footer-places {
/* display: none !important;*/
display: none !important;
}
/*}*/


/*#footer-info {*/
#footer-info {
/* display: flex;*/
display: flex;
/* flex-direction: column;*/
flex-direction: column;
}
/*}*/


/*#footer-info-lastmod {*/
#footer-info-lastmod {
/* order: 1;*/
order: 1;
}
/*}*/


/*#footer-info-viewcount {*/
#footer-info-viewcount {
/* order: 2;*/
order: 2;
/* width: 100%;*/
width: 100%;
/* float: none;*/
float: none;
/* clear: both;*/
clear: both;
/* margin-top: 0.5em;*/
margin-top: 0.5em;
}
/*}*/


/*#footer-info-copyright {*/
#footer-info-copyright {
/* order: 3;*/
order: 3;
}
/*}*/


/* === Footer Icon Styling === */
/* === Footer Icon Styling === */
/* Clean base state */
/* Clean base state */
/*#footer-icons .cdx-button {*/
#footer-icons .cdx-button {
/* all: unset;*/
all: unset;
/* display: inline-flex;*/
display: inline-flex;
/* cursor: pointer;*/
cursor: pointer;
/* transition: background 0.2s ease, box-shadow 0.2s ease;*/
transition: background 0.2s ease, box-shadow 0.2s ease;
}
/*}*/


/* Hover style to simulate a soft button */
/* Hover style to simulate a soft button */
/*#footer-icons .cdx-button:hover {*/
#footer-icons .cdx-button:hover {
/* background: rgba(255, 255, 255, 0.05);*/
background: rgba(255, 255, 255, 0.05);
/* border-radius: 6px;*/
border-radius: 6px;
/* box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);*/
box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
/*}*/

Latest revision as of 19:31, 2 June 2025

/* === Main Page Adjustments === */
.page-Main_Page .mw-side,
.page-Main_Page .firstHeading,
.page-Main_Page #siteSub {
	display: none !important;
}

/* === Footer Cleanup === */
#footer-places {
	display: none !important;
}

#footer-info {
	display: flex;
	flex-direction: column;
}

#footer-info-lastmod {
	order: 1;
}

#footer-info-viewcount {
	order: 2;
	width: 100%;
	float: none;
	clear: both;
	margin-top: 0.5em;
}

#footer-info-copyright {
	order: 3;
}

/* === Footer Icon Styling === */
/* Clean base state */
#footer-icons .cdx-button {
	all: unset;
	display: inline-flex;
	cursor: pointer;
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

/* Hover style to simulate a soft button */
#footer-icons .cdx-button:hover {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 6px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}