From 494e7710479453b298eb4858db4a4cd48a93b6ff Mon Sep 17 00:00:00 2001 From: Anika Henke Date: Mon, 11 Mar 2013 00:58:15 +0000 Subject: [PATCH] marked deprecated parts in print styles --- css/print.css | 73 ++++++++++++++++++++++++++++----------------------- 1 file changed, 40 insertions(+), 33 deletions(-) diff --git a/css/print.css b/css/print.css index 33b5914..001d1a0 100644 --- a/css/print.css +++ b/css/print.css @@ -11,19 +11,13 @@ body { } /* hide certain sections */ -.a11y, audio, video, -div.notify, -div.info, -div.success, -div.error, #dokuwiki__header .tools, #dokuwiki__aside, .dokuwiki .breadcrumbs, .dokuwiki .toc, #dw__toc, -.dokuwiki .secedit, #dokuwiki__pagetools, #dokuwiki__footer { display: none; @@ -104,37 +98,10 @@ img.mediacenter { 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 { font-weight: bold; } -div.clearer { - clear: both; - line-height: 0; - height: 0; - overflow: hidden; -} - blockquote { padding: 0 10pt; margin: 0; @@ -185,3 +152,43 @@ th { border-top: 1pt solid #000; 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; +}