1/******************************************************************************
2 ********************************  ATTENTION  *********************************
3         DO NOT MODIFY THIS FILE, IT WILL NOT BE PRESERVED ON UPDATES!
4 ******************************************************************************
5  If you want to add some own print CSS, have a look at the README of this
6  template and "/user/print.css". You have been warned!
7 *****************************************************************************/
8
9/*
10   This template includes CSS from the "starter" DokuWiki template by
11   Anika Henke (brings important and basic styling for syntax and core
12   features). These files will be included BEFORE this specific CSS file. In
13   this file, I just overwrite non fitting DokuWiki "starter" CSS + add some
14   CSS for some exclusive objects of this template.
15
16   Why I am doing this? Well, read <http://j.mp/eq8zSo>.
17*/
18
19
20/********** hide some elements **********/
21.toc, /* Table of contents */
22input.button, /* "edit" and some other buttons */
23.dokuwiki div.plugin_translation, /* listing of Andreas Gohr's translation plugin */
24#blogtng__comment_form_wrap, /* comment input form */
25#blogtng_pagination,
26#commentform_notes,
27.replytocomment, /* "reply" link in comments */
28#tmpl_header, /* header */
29#tmpl_footer, /* footer */
30#tmpl_sidebar { /* sidebar */
31    display: none !important;
32}
33
34
35/********** full width for the the content **********/
36div#pagewrap div#content {
37    width: 100%;
38}
39
40
41/********** expand external URLs for printing **********/
42.urlextern.text:after, .urlextern:after,
43a.urlextern.text:after, a.urlextern:after,
44a.interwiki.text:after, a.interwiki:after {
45    content: " (" attr(href) ") ";
46}
47
48
49/********** some minor corrections **********/
50.dokuwiki a.urlextern,
51.dokuwiki a.windows,
52.dokuwiki a.mail,
53.dokuwiki a.mediafile,
54.dokuwiki a.interwiki {
55    padding-left: 0 !important;
56    padding-right: 0 !important;
57    background: none;
58}
59
60
61/********** make comments more readable **********/
62.blogtng_comment_status_visible {
63    border: 1px dotted black;
64    margin-top: 10px;
65    padding: 5px;
66}
67