Project

General

Profile

Download (1.38 KB) Statistics
| Branch: | Tag: | Revision:
1
/* $Id: fix-ie.css,v 1.3.2.1 2007/04/18 03:38:59 drumm Exp $ */
2

    
3
/**
4
 * Themetastic, for Drupal 5.0
5
 * Stefan Nagtegaal, iStyledThis [dot] nl
6
 * Steven Wittens, acko [dot] net
7
 *
8
 */
9

    
10
body {
11
  /* Center layout */
12
  text-align: center;
13
  /* Allow text resizing */
14
  font-size: 80%;
15
}
16

    
17
#header-region, #wrapper #container {
18
  /* Reset text alignment */
19
  text-align: left;
20
}
21

    
22
#wrapper #container #center {
23
  /* Reduce amount of damage done by extremely wide content */
24
  overflow: hidden;
25
}
26

    
27
#wrapper #container #center .right-corner .left-corner {
28
  /* Because of the lack of min-height, we use height as an alternative */
29
  height: 400px;
30
}
31

    
32
fieldset {
33
  /* Don't draw backgrounds on fieldsets in IE, as they look really bad. */
34
  background: none;
35
}
36

    
37
ul.primary {
38
  /* Fix missing top margin */
39
  position: relative;
40
/*  top: 0.5em; */
41
}
42

    
43
/* Prevent fieldsets from shifting when changing collapsed state. */
44
html.js fieldset.collapsible {
45
  position: relative;
46
  top: -1em;
47
}
48
html.js fieldset.collapsed {
49
  top: 0;
50
  margin-bottom: 1em;
51
}
52

    
53
td.menu-disabled {
54
  /* Use filter to emulate CSS3 opacity */
55
  filter: alpha(opacity=50);
56
}
57

    
58
#header-region {
59
  /* Because of the lack of min-height, we use height as an alternative */
60
  height: 1em;
61
}
62

    
63
#attach-hide label, #uploadprogress div.message {
64
  /* Fading elements in IE causes the text to bleed unless they have a background. */
65
  background-color: #ffffff;
66
}
(7-7/18)