Difference between revisions of "MediaWiki:Common.css"

From Tinkla: Tinkering with Tesla
(Created page with "CSS placed here will be applied to all skins: #filehistory { display: none; } Hides the "File history" header: #mw-imagepage-section-filehistory { display: none; } /...")
 
m
 
(23 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
/* CSS placed here will be applied to all skins */
 
/* CSS placed here will be applied to all skins */
#filehistory { display: none; } /* Hides the "File history" header */
+
#filehistory { display: none !important; } /* Hides the "File history" header */
#mw-imagepage-section-filehistory { display: none; } /* Hides the "file history" table */
+
#ca-history { display: none !important; } /* Hides the " history" header */
 +
#ca-viewsource { display: none !important; } /* Hides the "View source" header */
 +
#mw-imagepage-section-filehistory { display: none !important; } /* Hides the "file history" table */
 +
#mw-portlet-body { display: none !important;}
 +
#mw-page-header-links { display: none !important;}
 +
table.zebra tr.stripe td { background-color: rgb(244,244,244); }
 +
table.zebra tr td {
 +
  border:1 !important;
 +
  border:solid #888888 !important;
 +
  border-width:1px 1px 0.2em !important;
 +
}
 +
 
 +
table.zebra tr th {
 +
  border:1 !important;
 +
  border:solid #888888 !important;
 +
  border-width:1px 1px 0.2em !important;
 +
  background-color: rgb(220,222,226) !important;
 +
}

Latest revision as of 13:30, 15 February 2022

/* CSS placed here will be applied to all skins */
#filehistory { display: none !important; } /* Hides the "File history" header */
#ca-history { display: none !important; } /* Hides the " history" header */
#ca-viewsource { display: none !important; } /* Hides the "View source" header */
#mw-imagepage-section-filehistory { display: none !important; } /* Hides the "file history" table */
#mw-portlet-body { display: none !important;}
#mw-page-header-links { display: none !important;}
table.zebra tr.stripe td { background-color: rgb(244,244,244); }
table.zebra tr td {
  border:1 !important;
  border:solid #888888 !important;
  border-width:1px 1px 0.2em !important;
 }

table.zebra tr th {
  border:1 !important;
  border:solid #888888 !important;
  border-width:1px 1px 0.2em !important;
  background-color: rgb(220,222,226) !important;
 }