~ubuntu-branches/ubuntu/oneiric/moin/oneiric-security

« back to all changes in this revision

Viewing changes to MoinMoin/web/static/htdocs/rightsidebar/css/print.css

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-03-30 12:55:34 UTC
  • mfrom: (0.1.17 sid)
  • Revision ID: james.westby@ubuntu.com-20100330125534-4c2ufc1rok24447l
Tags: 1.9.2-2ubuntu1
* Merge from Debian testing (LP: #521834). Based on work by Stefan Ebner.
  Remaining changes:
 - Remove python-xml from Suggests field, the package isn't anymore in
   sys.path.
 - Demote fckeditor from Recommends to Suggests; the code was previously
   embedded in moin, but it was also disabled, so there's no reason for us
   to pull this in by default currently. Note: This isn't necessary anymore
   but needs a MIR for fckeditor, so postpone dropping this change until
   lucid+1
* debian/rules:
  - Replace hardcoded python2.5 with python* and hardcore python2.6 for ln
* debian/control.in: drop versioned depends on cdbs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  print.css - MoinMoin Default Styles
 
2
 
 
3
Copyright (c) 2001, 2002, 2003 by Juergen Hermann
 
4
*/
 
5
 
 
6
/* content styles */
 
7
 
 
8
html {
 
9
        font-family: Times, serif;
 
10
        font-size: 12pt;
 
11
}
 
12
 
 
13
body {
 
14
    /* Give about 3.4cm in Mozilla/Firefox and about 2.2cm in Safari */
 
15
        margin: 1.5cm;
 
16
}
 
17
 
 
18
a, a:visited, a.nonexistent, a.badinterwiki {
 
19
        color: black;
 
20
        text-decoration: none;
 
21
}
 
22
 
 
23
a:hover {
 
24
        text-decoration: underline;
 
25
}
 
26
 
 
27
.info a {
 
28
    color: gray;
 
29
}
 
30
 
 
31
pre {
 
32
        font-size: 10pt;
 
33
}
 
34
 
 
35
a.interwiki:before, a.badinterwiki:before {
 
36
        content: attr(title) ":";
 
37
}
 
38
 
 
39
a.interwiki img, a.badinterwiki img {
 
40
        display: none;
 
41
}
 
42
 
 
43
.footnotes div {
 
44
        width: 5em;
 
45
        border-top: 1pt solid gray;
 
46
}
 
47
 
 
48
/* user interface styles */
 
49
 
 
50
#header, #sidebar, #footer, #timings, #credits, #interwiki, #pagelocation {
 
51
        display: none;
 
52
}
 
53