~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to wiki/htdocs/classic/css/common.css

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mfrom: (0.9.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080622211713-fpo2zrq3s5dfecxg
Tags: 1.7.0-3
Simplify /etc/moin/wikilist format: "USER URL" (drop unneeded middle
CONFIG_DIR that was wrongly advertised as DATA_DIR).  Make
moin-mass-migrate handle both formats and warn about deprecation of
the old one.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
a.nntp:before {content: url(../img/moin-news.png); margin: 0 0.2em;}
19
19
a.news:before {content: url(../img/moin-news.png); margin: 0 0.2em;}
20
20
a.telnet:before {content: url(../img/moin-telnet.png); margin: 0 0.2em;}
21
 
a.irc:before {content: url(../img/moin-telnet.png); margin: 0 0.2em;}
 
21
a.irc:before,a.ircs:before {content: url(../img/moin-telnet.png); margin: 0 0.2em;}
22
22
a.mailto:before {content: url(../img/moin-email.png); margin: 0 0.2em;}
23
23
a.attachment:before {content: url(../img/moin-attach.png); margin: 0 0.2em;}
24
24
a.badinterwiki:before {content: url(../img/moin-inter.png); margin: 0 0.2em;}
74
74
    content: url(../img/attention.png);
75
75
}
76
76
 
 
77
 
 
78
/* .comment css definition must be top of .red/.green/.blue or it won't work */
 
79
.comment { color: #555555; background-color: #DDDDFF; }
 
80
 
 
81
.red { background-color: #FFCCCC; }
 
82
.green { background-color: #CCFFCC; }
 
83
.blue { background-color: #CCCCFF; }
 
84
.yellow { background-color: #FFF29F; }
 
85
.orange { background-color: #FFD59B; }
 
86
 
 
87
.solid { border: 2px solid #000000; padding: 2px; }
 
88
.dashed { border: 2px dashed #000000; padding: 2px; }
 
89
.dotted { border: 2px dotted #000000; padding: 2px; }
 
90
 
 
91
 
77
92
table {
78
93
        margin: 0.5em 0 0 0.5em;
79
94
        border-collapse: collapse;
80
95
}
81
96
 
82
 
td
 
97
th, td
83
98
{
84
99
        padding: 0.25em 0.5em 0.25em 0.5em;
85
100
        border: 1px solid #c0c0c0;
115
130
.table-of-contents { font-size: small;
116
131
                     text-align:left;
117
132
                     margin: 0.5em; padding-left: 2em;
118
 
                     width:50%; }
 
133
                     min-width:50%; }
119
134
.table-of-contents ol { margin:0; margin-left:1em;
120
135
                        list-style-type:decimal; }
121
136
.table-of-contents ul { margin:0;
123
138
.table-of-contents-heading { font-weight:bold; padding:0; margin:0; }
124
139
 
125
140
 
126
 
.footnotes ul {
 
141
.footnotes ol {
127
142
        padding: 0 2em;
128
143
        margin: 0 0 1em;
129
 
        list-style: none;
130
144
}
131
145
 
132
146
.footnotes li {
258
272
div.codearea pre span.Preprc     {color: #803999;}
259
273
 
260
274
 
 
275
/* for diff parser */
 
276
div.codearea pre span.DiffAdded   {color: #4876FF;}
 
277
div.codearea pre span.DiffRemoved {color: #FF0000;}
 
278
div.codearea pre span.DiffChanged {color: #FF7F50;}
 
279
div.codearea pre span.DiffSeparator {color: #228B22; font-weight: bold}
 
280
 
 
281
#message .hint {font-style: italic;}
 
282
#message .info {
 
283
    float: none;
 
284
    font-size: 1em;
 
285
    color: black;
 
286
}
 
287
#message .info:before {content: url('../img/icon-info.png'); margin: 0 0.2em;}
 
288
#message .warning:before {content: url('../img/alert.png'); margin: 0 0.2em;}
 
289
#message .error:before {content: url('../img/icon-error.png'); margin: 0 0.2em;}
 
290