MediaWiki:Handheld.css: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(Created page with '→‎<syntaxhighlight lang="css">: →‎Flatten the main page table layout: table.layout, table.layout tbody, table.layout tr, table.layout th, table.layout td, #mp-topbanner, …')
 
No edit summary
Line 1: Line 1:
/* <syntaxhighlight lang="css"> */
/* <syntaxhighlight lang="css"> */
#footer {
    display: none;
}
#header {
    display: none;
}
<style>
body {font-family:Arial,Helvetica,sans-serif; font-size:100%;}
h1 {font-family:Arial,Helvetica,sans-serif; font-size:1.5em;}
h2 {font-family:Arial,Helvetica,sans-serif; font-size:1.2em;}
p {font-family:Arial,Helvetica,sans-serif; font-size:0.875em;}
</style>
/* Do not print:
  1: When in mainspace: Article message boxes,
      navboxes, sister project boxes, disambig links,
      and items marked as metadata.
  2: Privacy, about, disclaimer, redirect and section edit links.
  3: Show/hide toggles for collapsible items.
  4: Items marked as noprint.
*/
.ns-0 .ambox,
.ns-0 .navbox,
.ns-0 .infobox.sisterproject,
.ns-0 .dablink,
.ns-0 .metadata,
#filetoc,
#footer-places,
.editlink,
span.collapseButton, a.NavToggle,
.noprint {
    display: none;
}
/* Add formatting to make sure that "external references" from templates
  like [[Template:Ref]] do not get URL expansion, not even when printed.
  The anchor itself has class "external autonumber" and the url expansion
  is inserted when printing (see the common printing style sheet at
  http://en.wikipedia.org/skins-1.5/common/commonPrint.css) using the
  ":after" pseudo-element of CSS. Also hide in <cite> elements.
*/
#content cite a.external.text:after,
.nourlexpansion a.external.text:after,
.nourlexpansion a.external.autonumber:after {
    display: none !important;
}
/* Uncollapse collapsible tables/divs.
  The proper way to do this for tables is to use display:table-row,
  but this is not supported by all browsers, so use display:block as fallback.
*/
table.collapsible tr, div.NavPic, div.NavContent {
    display: block !important;
}
table.collapsible tr {
    display: table-row !important;
}
   
   
/* Flatten the main page table layout */
/* Hiding some items when printing with Simple skin */
table.layout,
.skin-simple div#column-one,
table.layout tbody,
.skin-simple div#f-poweredbyico,
table.layout tr,
.skin-simple div#f-copyrightico,
table.layout th,
.skin-simple .editsection {display: none;
table.layout td,
}
#mp-topbanner,
 
#mp-topbanner tbody,
.from { display: none; }
#mp-topbanner tr,
 
#mp-topbanner th,
.catlinks { display: none; }
#mp-topbanner td,
.toc { display: none; }
#mp-upper,
 
#mp-upper tbody,
 
#mp-upper tr,
/* On websites with siteSub visible, the margin on the firstHeading is not needed. */
#mp-upper th,
#firstHeading {
#mp-upper td,
    margin: 0px;
#mp-tfp,
}
#mp-tfp tbody,
#mp-tfp tr,
/* Remove once r76522 is live */
#mp-tfp th,
.wikitable, .thumb, img {
#mp-tfp td {
page-break-inside: avoid;
  display: block !important;
}
  width: 100% !important;
h2, h3, h4, h5, h6, h7 {
page-break-after: avoid;
}
p {
widows: 3;
orphans: 3;
}
}
   
   
body {
margin: 2pt;
padding: 10pt;
font-family: verdana, arial, sans-serif;
font-size: 10pt;
color: black;
background-color: white;
}
/* </syntaxhighlight> */
/* </syntaxhighlight> */

Revision as of 18:09, 10 March 2011

/* <syntaxhighlight lang="css"> */

#footer {
    display: none;
}

#header {
    display: none;
}



<style>
body {font-family:Arial,Helvetica,sans-serif; font-size:100%;}
h1 {font-family:Arial,Helvetica,sans-serif; font-size:1.5em;}
h2 {font-family:Arial,Helvetica,sans-serif; font-size:1.2em;}
p {font-family:Arial,Helvetica,sans-serif; font-size:0.875em;}
</style>

 
/* Do not print:
   1: When in mainspace: Article message boxes,
      navboxes, sister project boxes, disambig links,
      and items marked as metadata.
   2: Privacy, about, disclaimer, redirect and section edit links.
   3: Show/hide toggles for collapsible items.
   4: Items marked as noprint.
*/


.ns-0 .ambox, 
.ns-0 .navbox, 
.ns-0 .infobox.sisterproject, 
.ns-0 .dablink, 
.ns-0 .metadata,
#filetoc, 
#footer-places,
.editlink,
span.collapseButton, a.NavToggle,
.noprint {
    display: none;
}
 
/* Add formatting to make sure that "external references" from templates
   like [[Template:Ref]] do not get URL expansion, not even when printed.
   The anchor itself has class "external autonumber" and the url expansion
   is inserted when printing (see the common printing style sheet at
   http://en.wikipedia.org/skins-1.5/common/commonPrint.css) using the
   ":after" pseudo-element of CSS. Also hide in <cite> elements.
*/
#content cite a.external.text:after,
.nourlexpansion a.external.text:after,
.nourlexpansion a.external.autonumber:after {
    display: none !important;
}
 
/* Uncollapse collapsible tables/divs.
   The proper way to do this for tables is to use display:table-row,
   but this is not supported by all browsers, so use display:block as fallback.
*/
table.collapsible tr, div.NavPic, div.NavContent {
    display: block !important;
}
table.collapsible tr {
    display: table-row !important;
}
 
/* Hiding some items when printing with Simple skin */
.skin-simple div#column-one,
.skin-simple div#f-poweredbyico,
.skin-simple div#f-copyrightico,
.skin-simple .editsection {display: none; 
}

.from { display: none; }

.catlinks { display: none; }
.toc { display: none; }


/* On websites with siteSub visible, the margin on the firstHeading is not needed. */
#firstHeading {
    margin: 0px;
}
 
/* Remove once r76522 is live */
.wikitable, .thumb, img {
	page-break-inside: avoid;
}
h2, h3, h4, h5, h6, h7 {
	page-break-after: avoid;
}
p {
	widows: 3;
	orphans: 3;
}
 

body	{
	margin: 2pt;
	padding: 10pt;
	font-family: verdana, arial, sans-serif;
	
	font-size: 10pt;
	color: black;
	background-color: white; 
	}


/* </syntaxhighlight> */