~ubuntu-branches/ubuntu/precise/moin/precise-updates

« back to all changes in this revision

Viewing changes to MoinMoin/web/static/htdocs/modernized/css/SlideShow.css

  • Committer: Bazaar Package Importer
  • Author(s): Clint Byrum
  • Date: 2010-08-11 12:35:34 UTC
  • mfrom: (0.1.19 sid)
  • Revision ID: james.westby@ubuntu.com-20100811123534-q8zu7qrwqul6cvec
Tags: 1.9.3-1ubuntu1
* Merge from Debian unstable (LP: #586518). 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: fckeditor has a
   number of security problems and so this change probably needs to be
   carried indefinitely.

Show diffs side-by-side

added added

removed removed

Lines of Context:
138
138
/* CSS for ParserBase */
139
139
 
140
140
div.codearea { /* the div makes the border */
141
 
        margin: 0.5em 0;
142
 
        padding: 0;
143
 
        border: 1pt dashed #222;
144
 
        background-color: #EEF;
145
 
        color: #444;
 
141
    margin: 0.5em 0;
 
142
    padding: 0;
 
143
    border: 1pt dashed #222;
 
144
    background-color: #EEF;
 
145
    color: #444;
146
146
}
147
147
 
148
148
div.codearea pre { /* the pre has no border and is inside the div */
149
 
        margin: 0;
150
 
        padding: 10pt;
151
 
        border: none;
 
149
    margin: 0;
 
150
    padding: 10pt;
 
151
    border: none;
152
152
}
153
153
 
154
154
a.codenumbers { /* format of the line numbering link */
155
 
        margin: 0pt;
156
 
        font-size: 10pt;
157
 
        color: #888;
158
 
        display: none; /* rather annoying to see the link */
 
155
    margin: 0pt;
 
156
    font-size: 10pt;
 
157
    color: #888;
 
158
    display: none; /* rather annoying to see the link */
159
159
}
160
160
 
161
161
/* format of certain syntax spans */
176
176
 
177
177
@media print {
178
178
    #navigation {
179
 
        display: none;
 
179
    display: none;
180
180
    }
181
181
}