Browse Source

marked deprecated parts in print styles

master
Anika Henke 11 years ago
parent
commit
494e771047
  1. 73
      css/print.css

73
css/print.css

@ -11,19 +11,13 @@ body {
} }
/* hide certain sections */ /* hide certain sections */
.a11y,
audio, audio,
video, video,
div.notify,
div.info,
div.success,
div.error,
#dokuwiki__header .tools, #dokuwiki__header .tools,
#dokuwiki__aside, #dokuwiki__aside,
.dokuwiki .breadcrumbs, .dokuwiki .breadcrumbs,
.dokuwiki .toc, .dokuwiki .toc,
#dw__toc, #dw__toc,
.dokuwiki .secedit,
#dokuwiki__pagetools, #dokuwiki__pagetools,
#dokuwiki__footer { #dokuwiki__footer {
display: none; display: none;
@ -104,37 +98,10 @@ img.mediacenter {
margin: .2em auto; margin: .2em auto;
} }
/* align table cells */
.leftalign {
text-align: left;
}
.centeralign {
text-align: center;
}
.rightalign {
text-align: right;
}
/* underline */
em.u {
font-style: normal;
text-decoration: underline;
}
em em.u {
font-style: italic;
}
mark { mark {
font-weight: bold; font-weight: bold;
} }
div.clearer {
clear: both;
line-height: 0;
height: 0;
overflow: hidden;
}
blockquote { blockquote {
padding: 0 10pt; padding: 0 10pt;
margin: 0; margin: 0;
@ -185,3 +152,43 @@ th {
border-top: 1pt solid #000; border-top: 1pt solid #000;
margin-top: 10pt; margin-top: 10pt;
} }
/*____________ @deprecated ____________*/
/* unnecessary, has been in lib/styles/all|print.css since Rincewind */
.a11y,
div.notify,
div.info,
div.success,
div.error,
.dokuwiki .secedit {
display: none;
}
/* align table cells */
.leftalign {
text-align: left;
}
.centeralign {
text-align: center;
}
.rightalign {
text-align: right;
}
/* underline */
em.u {
font-style: normal;
text-decoration: underline;
}
em em.u {
font-style: italic;
}
div.clearer {
clear: both;
line-height: 0;
height: 0;
overflow: hidden;
}
Loading…
Cancel
Save