MediaWiki:Group-user.css: Difference between revisions

From bg3.wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 2: Line 2:


/*
/*
  * The following have the sole purpose of reverting some CSS in MW:Vector.css,
* TODO: Remove all the below after 2 days.
  * because it's intended for non-logged-in users only, but there's no special
*      See corresponding note in Vector.css about caches etc.
  * CSS that gets loaded for non-logged-in users only.
*
  * The following are to revert some CSS in MW:Vector.css, related to making
  * room for and displaying ads.
*
  * There doesn't seem to be a way to load CSS only for not-logged-in users.
  */
  */
#firstHeading {
max-width: unset;
}
.mw-indicators {
margin-right: unset;
}


#p-Special,
#p-Special,
Line 12: Line 24:
}
}


#firstHeading {
/* Only there for non-logged-in users, for whom the toolbox is hidden. */
margin-top: unset;
#n-Upload-file {
padding-bottom: unset;
display: none;
}
}

Latest revision as of 16:08, 7 August 2024

/* CSS placed here will affect registered users only */

/*
 * TODO: Remove all the below after 2 days.
 *       See corresponding note in Vector.css about caches etc.
 *
 * The following are to revert some CSS in MW:Vector.css, related to making
 * room for and displaying ads.
 *
 * There doesn't seem to be a way to load CSS only for not-logged-in users.
 */

#firstHeading {
	max-width: unset;
}

.mw-indicators {
	margin-right: unset;
}

#p-Special,
#p-tb {
	display: block;
}

/* Only there for non-logged-in users, for whom the toolbox is hidden. */
#n-Upload-file {
	display: none;
}