~ubuntu-branches/ubuntu/oneiric/drupal5/oneiric

« back to all changes in this revision

Viewing changes to themes/garland/fix-ie.css

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2007-03-10 20:04:24 UTC
  • Revision ID: james.westby@ubuntu.com-20070310200424-w6v3crmyowlx2zsq
Tags: upstream-5.1
ImportĀ upstreamĀ versionĀ 5.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * Themetastic, for Drupal 5.0
 
3
 * Stefan Nagtegaal, iStyledThis [dot] nl
 
4
 * Steven Wittens, acko [dot] net
 
5
 *
 
6
 */
 
7
 
 
8
body {
 
9
  /* Center layout */
 
10
  text-align: center;
 
11
  /* Allow text resizing */
 
12
  font-size: 80%;
 
13
}
 
14
 
 
15
#header-region, #wrapper #container {
 
16
  /* Reset text alignment */
 
17
  text-align: left;
 
18
}
 
19
 
 
20
#wrapper #container #center {
 
21
  /* Reduce amount of damage done by extremely wide content */
 
22
  overflow: hidden;
 
23
}
 
24
 
 
25
#wrapper #container #center .right-corner .left-corner {
 
26
  /* Because of the lack of min-height, we use height as an alternative */
 
27
  height: 400px;
 
28
}
 
29
 
 
30
fieldset {
 
31
  /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
 
32
  background: none;
 
33
}
 
34
 
 
35
ul.primary {
 
36
  /* Fix missing top margin */
 
37
  position: relative;
 
38
/*  top: 0.5em; */
 
39
}
 
40
 
 
41
/* Prevent fieldsets from shifting when changing collapsed state. */
 
42
html.js fieldset.collapsible {
 
43
  position: relative;
 
44
  top: -1em;
 
45
}
 
46
html.js fieldset.collapsed {
 
47
  top: 0;
 
48
  margin-bottom: 1em;
 
49
}
 
50
 
 
51
td.menu-disabled {
 
52
  /* Use filter to emulate CSS3 opacity */
 
53
  filter: alpha(opacity=50);
 
54
}
 
55
 
 
56
#header-region {
 
57
  /* Because of the lack of min-height, we use height as an alternative */
 
58
  height: 1em;
 
59
}
 
60
 
 
61
#attach-hide label, #uploadprogress div.message {
 
62
  /* Fading elements in IE causes the text to bleed unless they have a background. */
 
63
  background-color: #ffffff;
 
64
}