MediaWiki:Group-user.css: Difference between revisions

From Pornopedia, the sexy encyclopedia
(Created page with "→‎CSS placed here will affect registered users only: →‎From https://en.wikipedia.org/wiki/MediaWiki:Group-user.css: .anonymous-show { display: none !important; } div.user-show, p.user-show { display: block !important; } span.user-show, small.user-show { display: inline !important; } table.user-show { display: table !important; } li.user-show { display: list-item !important; } →‎Increase the height of the image upload box: #wpUploadDescription { heigh...")
 
mNo edit summary
 
(8 intermediate revisions by the same user not shown)
Line 3: Line 3:
.anonymous-show {
.anonymous-show {
   display: none !important;
   display: none !important;
}
span.anonymous-show {
  display: inline !important;
  pointer-events: none !important;
}
}
div.user-show,
div.user-show,
Line 11: Line 15:
small.user-show {
small.user-show {
   display: inline !important;
   display: inline !important;
  pointer-events: auto !important;
}
}
table.user-show {
table.user-show {

Latest revision as of 17:06, 23 January 2024

/* CSS placed here will affect registered users only */
/* From https://en.wikipedia.org/wiki/MediaWiki:Group-user.css */
.anonymous-show {
  display: none !important;
}
span.anonymous-show {
  display: inline !important;
  pointer-events: none !important;
}
div.user-show,
p.user-show {
  display: block !important;
}
span.user-show,
small.user-show {
  display: inline !important;
  pointer-events: auto !important;
}
table.user-show {
  display: table !important;
}
li.user-show {
  display: list-item !important;
}

/* Increase the height of the image upload box */
#wpUploadDescription {
	height: 13em;
}