-
Notifications
You must be signed in to change notification settings - Fork 1
/
ie6.css
57 lines (47 loc) · 1.19 KB
/
ie6.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* Layout fixes for Internet Explorer 5 and 6 */
.item {
height: 100px; /* Doesn't support "max-height", but IE6 height seems to work like modern "max-height" */
}
#query {
width: 200px; /* Doesn't support "max-width", but IE6 width seems to work like modern "max-width" */
height: 20px; /* Account for larger inset border in text input */
}
html, body {
height: 100%;
}
html {
overflow: auto;
padding-top: 40px;
}
body {
margin-top: 0px;
overflow: auto;
}
.comment-info {
height: 32px;
}
/* IE6 has an awful bug where elements with "position: relative" within
* a container that has "overflow: auto" will overflow their container
* and not scroll. We'll just remove the relative positioning and let
* the overlays show under the thumbnails as a black bar instead. */
.thumbnail, .thumbnail-overlay { position: static; }
/* Thanks to https://ryanfait.com/position-fixed-ie6/ for this fix */
* html #headerbar {
position: absolute;
}
.drawer {
/*position: relative;*/
}
/*
body {
margin-top: 0px;
overflow: hidden;
background-color: orange;
}
#content {
margin-top: 40px;
margin-left: 50px;
margin-right: 50px;
overflow: auto;
}
*/