MediaWiki:Group-user.css: Difference between revisions

From Pornopedia, the sexy encyclopedia
(Trying to implement "pointer-events: none" for non-logged-in users as suggested by UniversalLoser.)
mNo edit summary
Line 6: Line 6:


div.anonymous-show,
div.anonymous-show,
p.user-show {
p.anonymous-show {
   display: none !important;
   display: none !important;
}
}

Revision as of 15:44, 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;
}*/

div.anonymous-show,
p.anonymous-show {
  display: none !important;
}
span.anonymous-show,
small.anonymous-show {
  display: inline !important;
  pointer-events: none;
}
table.anonymous-show {
  display: none !important;
}
li.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 {
	height: 13em;
}