Index: trunk/phase3/stylesheets/monobook/IE60Fixes.css |
— | — | @@ -55,7 +55,15 @@ |
56 | 56 | line-height: 0; |
57 | 57 | } |
58 | 58 | textarea { |
59 | | - overflow: scroll; |
60 | | - overflow-x: hidden; |
| 59 | + overflow: auto; |
| 60 | + width: 99%; |
| 61 | + /* same negative margin as on #portal-column-content |
| 62 | + don't ask why..*/ |
| 63 | + margin-left: -12.2em; |
61 | 64 | } |
| 65 | +#tawrapper { |
| 66 | + width: 100%; |
| 67 | + text-align: left; |
| 68 | + overflow: hidden; |
| 69 | +} |
62 | 70 | /*{ border:1px solid Red !important;}*/ |
Index: trunk/phase3/stylesheets/monobook/main.css |
— | — | @@ -661,7 +661,7 @@ |
662 | 662 | display: block; |
663 | 663 | height: 155px; |
664 | 664 | width: 135px; |
665 | | - background: url(wiki.png) no-repeat !important; |
| 665 | + background: url(wiki.png) no-repeat; |
666 | 666 | background-repeat: no-repeat; |
667 | 667 | text-decoration: none; |
668 | 668 | } |
Index: trunk/phase3/stylesheets/IEFixes.js |
— | — | @@ -8,13 +8,8 @@ |
9 | 9 | // replaced by special indexed logo for now |
10 | 10 | //fixalpha(); |
11 | 11 | if(version == 6) { |
12 | | - relativeforfloats(); |
13 | | - fixtextarea(); |
14 | 12 | var wrapper = document.getElementById('tawrapper'); |
15 | | - if(wrapper) { |
16 | | - //wrapper.attachEvent("onclick", fixtextarea); |
17 | | - window.onresize = refixtextarea; |
18 | | - } |
| 13 | + if (!wrapper) relativeforfloats(); |
19 | 14 | } |
20 | 15 | } |
21 | 16 | |
— | — | @@ -29,38 +24,9 @@ |
30 | 25 | logoa.style.backgroundImage = "none"; |
31 | 26 | logoa.style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+mypng+"', sizingMethod='image')"; |
32 | 27 | } |
33 | | - |
34 | | - |
35 | | - |
36 | | - /* |
37 | | - for (i=0; i<document.all.length; i++){ |
38 | | - if(document.all[i].currentStyle && document.all[i].currentStyle.backgroundImage) { |
39 | | - var bg = document.all[i].currentStyle.backgroundImage; |
40 | | - } else { |
41 | | - bg = false; |
42 | | - } |
43 | | - if (bg){ |
44 | | - if (bg.match(/\.png/i) != null){ |
45 | | - var mypng = bg.substring(5,bg.length-2); |
46 | | - document.all[i].style.backgroundImage = "none"; |
47 | | - document.all[i].style.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+mypng+"', sizingMethod='image')"; |
48 | | - } |
49 | | - } |
50 | | - }*/ |
51 | 28 | } |
52 | 29 | } |
53 | 30 | |
54 | | -function fixtextarea() { |
55 | | - var wrapper = document.getElementById('tawrapper'); |
56 | | - if(wrapper) { |
57 | | - wrapper.style.width = 'auto'; |
58 | | - wrapper.style.width = (wrapper.offsetWidth - 4) + 'px'; |
59 | | - } |
60 | | -} |
61 | | -function refixtextarea () { |
62 | | - setTimeout("fixtextarea()",10); |
63 | | -} |
64 | | - |
65 | 31 | // fix ie6 disappering float bug |
66 | 32 | function relativeforfloats() { |
67 | 33 | var bc = document.getElementById('bodyContent'); |