Index: trunk/phase3/skins/chick/main.css |
— | — | @@ -52,8 +52,6 @@ |
53 | 53 | } |
54 | 54 | .editsection { |
55 | 55 | font-weight: normal; |
56 | | - float: right; |
57 | | - margin-left: 5px; |
58 | 56 | } |
59 | 57 | h1 { font-size: 188%; } |
60 | 58 | h1 .editsection { font-size: 53.2%; } |
Index: trunk/phase3/skins/monobook/main.css |
— | — | @@ -137,11 +137,6 @@ |
138 | 138 | h6 { font-size: 80%; } |
139 | 139 | h6 .editsection { font-size: 125%; font-weight: normal; } |
140 | 140 | |
141 | | -.editsection { |
142 | | - float: right; |
143 | | - margin-left: 5px; |
144 | | -} |
145 | | - |
146 | 141 | ul { |
147 | 142 | line-height: 1.5em; |
148 | 143 | list-style-type: square; |
Index: trunk/phase3/skins/common/oldshared.css |
— | — | @@ -19,8 +19,6 @@ |
20 | 20 | /* Make edit sections (which are inside h# tags) normal-sized */ |
21 | 21 | .editsection { |
22 | 22 | font-weight: normal; |
23 | | - float: right; |
24 | | - margin-left: 5px; |
25 | 23 | } |
26 | 24 | h1 .editsection { font-size: 50% } |
27 | 25 | h2 .editsection { font-size: 66.7% } |
Index: trunk/phase3/skins/common/shared.css |
— | — | @@ -22,4 +22,14 @@ |
23 | 23 | background-color: #fcfcfc; |
24 | 24 | } |
25 | 25 | |
26 | | - |
| 26 | +/* Edit section links */ |
| 27 | +.editsection { |
| 28 | + float: right; |
| 29 | + margin-left: 5px; |
| 30 | +} |
| 31 | +h1, h2, h3, h4, h5, h6 { |
| 32 | + /* CSS voodoo magic: floats can interfere with each other unless we create |
| 33 | + a new block formatting context for them to live in. The most harmless |
| 34 | + way to do that in CSS2.1 is to use overflow: hidden. */ |
| 35 | + overflow: hidden; |
| 36 | +} |
Index: trunk/phase3/skins/simple/main.css |
— | — | @@ -10,12 +10,9 @@ |
11 | 11 | |
12 | 12 | /* Now the custom parts */ |
13 | 13 | |
14 | | -/* Make edit sections (which are inside h# tags) normal-sized |
15 | | - and otherwise format */ |
| 14 | +/* Make edit sections (which are inside h# tags) normal-sized */ |
16 | 15 | .editsection { |
17 | 16 | font-weight: normal; |
18 | | - float: right; |
19 | | - margin-left: 5px; |
20 | 17 | } |
21 | 18 | h1 .editsection { font-size: 50% } |
22 | 19 | h2 .editsection { font-size: 66.7% } |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -143,6 +143,11 @@ |
144 | 144 | * Introduced 'ContributionsToolLinks' hook; see docs/hooks.txt for more |
145 | 145 | information |
146 | 146 | * Add a message if category is empty |
| 147 | +* Add CSS compatibility for Opera 9.5 |
| 148 | +* Remove largely untested handheld stylesheet, which was causing more trouble |
| 149 | + than good. Proper handheld support will be added at a future date. For now, |
| 150 | + display should be acceptable either with CSS turned off or when using a so- |
| 151 | + phisticated handheld browser. |
147 | 152 | |
148 | 153 | == Bugfixes since 1.10 == |
149 | 154 | |
— | — | @@ -300,6 +305,7 @@ |
301 | 306 | * (bug 10560) Adding a space between category letter heading and "continues" |
302 | 307 | * Don't allow retrieving non-JavaScript/CSS pages with "text/css" or "text/javascript" |
303 | 308 | MIME types |
| 309 | +* (bug 1629) Stop section edit links from being shoved down by other floats |
304 | 310 | |
305 | 311 | == API changes since 1.10 == |
306 | 312 | |