MediaWiki:Common.css: Difference between revisions

From Indpedia
No edit summary
Tag: Reverted
No edit summary
Tag: Manual revert
 
Line 2: Line 2:
#ca-viewsource {
#ca-viewsource {
     display: none;
     display: none;
}
/* Copy deterrent only when JS marks the page as .no-copy */
.no-copy body,
.no-copy #mw-content-text,
.no-copy .mw-parser-output {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Always allow selection inside inputs/edit areas */
input, textarea, select,
.mw-editfont-monospace, pre, code, kbd, samp,
.mw-diff-table, .diff, #wpTextbox1 {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}
}

Latest revision as of 13:55, 14 October 2025

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