Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 93 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

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