Skip to content

Commit d6a90eb

Browse files
committed
Few tweaks for IE6
1 parent 9adc2d5 commit d6a90eb

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

assets/css/demos.css

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
.tabs LI.jsfiddle button {
2323
cursor: pointer;
2424
background: url(graphics/jsfiddle.png) no-repeat;
25+
display: block;
2526
width: 140px;
2627
height: 33px;
2728
border: 0;

assets/css/main.css

+1
Original file line numberDiff line numberDiff line change
@@ -89,5 +89,6 @@ UL {
8989
#content #rightcolumn {
9090
float: left;
9191
margin: 25px 0 0;
92+
overflow-x: hidden;
9293
width: 760px;
9394
}

demos/Accordion/demo.css

+3
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
margin: 0 0 4px 0;
1414
padding: 3px 5px 1px;
1515
}
16+
#accordion .content {
17+
background-color: #F4F5F5;
18+
}
1619

1720
DIV.element P, DIV.element H4 {
1821
margin: 0px;

demos/Effects/demo.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ <h2>Simple Fx</h2>
2020
<h2>More Fx</h2>
2121
<ul class="more-fx">
2222
<li id="morph-1">First example!</li>
23-
<li id="morph-2">Seconds example!</li>
23+
<li id="morph-2">Second example!</li>
2424
<li id="morph-3">Morph to a CSS rule!</li>
2525
</ul>
2626

demos/Effects/demo.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ window.addEvent('domready', function() {
2121

2222
$('morph-2').addEvent('click', function(){
2323
$('element').morph({
24-
'background': '#B86364',
24+
'background-color': '#B86364',
2525
'border-width': '1px',
2626
'border-style': 'solid',
2727
'border-color': '#f00',

demos/Slider/demo.css

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.slider {
2-
width: 200px;
2+
background: #CCC;
33
height: 16px;
4-
background: grey;
4+
width: 200px;
55
}
66
.slider .knob {
77
background: #000;
@@ -17,7 +17,7 @@
1717
.advanced {
1818
width: 400px;
1919
margin: 5px 0;
20-
background: grey;
20+
background: #CCC;
2121
}
2222
.advanced .knob {
2323
cursor: pointer;

0 commit comments

Comments
 (0)