MediaWiki:Common.css: Difference between revisions

From Indpedia
No edit summary
Tag: Reverted
No edit summary
Tag: Reverted
Line 4: Line 4:
}
}


body {
/* Disable text selection in article content */
   -webkit-user-select: none; /* Safari */
body, #mw-content-text, .mw-parser-output {
   -webkit-user-select: none; /* Safari/Chrome */
   -moz-user-select: none;    /* Firefox */
   -moz-user-select: none;    /* Firefox */
   -ms-user-select: none;    /* IE/Edge */
   -ms-user-select: none;    /* IE/Edge */
   user-select: none;        /* Standard */
   user-select: none;        /* Standard */
}
}

Revision as of 12:22, 6 October 2025

/* CSS placed here will be applied to all skins */
#ca-viewsource {
    display: none;
}

/* Disable text selection in article content */
body, #mw-content-text, .mw-parser-output {
  -webkit-user-select: none; /* Safari/Chrome */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
  user-select: none;         /* Standard */
}