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

« back to all changes in this revision

Viewing changes to wiki/htdocs/classic/css/msie.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
 
/*  msie.css - MoinMoin MS Internet explorer bug workarounds */
2
 
 
3
 
/* IE6 and IE7 both suck with :before */
4
 
a.www { padding-left: 14px; background: url(../img/moin-www.png) left center no-repeat; }
5
 
a.http { padding-left: 14px; background: url(../img/moin-www.png) left center no-repeat; }
6
 
a.https { padding-left: 14px; background: url(../img/moin-www.png) left center no-repeat; }
7
 
a.file { padding-left: 14px; background: url(../img/moin-ftp.png) left center no-repeat; }
8
 
a.ftp { padding-left: 14px; background: url(../img/moin-ftp.png) left center no-repeat; }
9
 
a.nntp { padding-left: 14px; background: url(../img/moin-news.png) left center no-repeat; }
10
 
a.news { padding-left: 14px; background: url(../img/moin-news.png) left center no-repeat; }
11
 
a.telnet, a.ssh { padding-left: 14px; background: url(../img/moin-telnet.png) left center no-repeat; }
12
 
a.irc, a.ircs { padding-left: 14px; background: url(../img/moin-telnet.png) left center no-repeat; }
13
 
a.mailto { padding-left: 14px; background: url(../img/moin-email.png) left center no-repeat; }
14
 
a.attachment { padding-left: 14px; background: url(../img/moin-attach.png) left center no-repeat; }
15
 
a.badinterwiki { padding-left: 14px; background: url(../img/moin-inter.png) left center no-repeat; }
16
 
a.interwiki { padding-left: 14px; background: url(../img/moin-inter.png) left center no-repeat; }
17
 
#message .warning { padding-left: 20px; background: url(../img/alert.png) left center no-repeat; }
18
 
#message .error { padding-left: 20px; background: url(../img/icon-error.png) left center no-repeat; }
19
 
 
20
 
#pagetrail li, #pagelocation li {
21
 
    border-left: 1px solid #AAA;
22
 
    padding: 0 0.3em;
23
 
}
24
 
 
25
 
/* Spans for line-anchors - needed for IE6 and IE7 where omitting the "display: none" triggers rendering bugs. */
26
 
span.anchor { display: none; }
27
 
 
28
 
/* Some * html hacks for IE6 and below only (IE7 ignores * html) */
29
 
 
30
 
/* IE6 has a bug with rendering of float elements. We workaround this bug by
31
 
 * assigning those elements a height attribute because we currently don't know
32
 
 * a better solution. This results in IE calculating the correct height of the
33
 
 * characters and displaying them correctly. We don't know any negative side
34
 
 * effects of this workaround:
35
 
 */
36
 
* html div#page, * html div#header { height: 0.001%; }
37