Ticket #5757: 5757_2.patch
File 5757_2.patch, 1.2 KB (added by , 12 years ago) |
---|
-
_source/plugins/a11yhelp/dialogs/a11yhelp.js
170 170 { 171 171 type : 'html', 172 172 id : 'legends', 173 style : 'white-space:normal;', 173 174 focus : function() {}, 174 175 html : buildHelpContents() + 175 176 '<style type="text/css">' + … … 181 182 'overflow-y:auto;' + 182 183 'overflow-x:hidden;' + 183 184 '}' + 185 // Some adjustments are to be done for IE6 and Quirks to work "properly" (#5757) 186 '.cke_browser_quirks .cke_accessibility_legend,' + 187 '.cke_browser_ie6 .cke_accessibility_legend' + 188 '{' + 189 'height:390px' + 190 '}' + 191 // Override non-wrapping white-space rule in reset css. 192 '.cke_accessibility_legend *' + 193 '{' + 194 'white-space:normal;' + 195 '}' + 184 196 '.cke_accessibility_legend h1' + 185 197 '{' + 186 198 'font-size: 20px;' + … … 198 210 '}' + 199 211 '.cke_accessibility_legend dd' + 200 212 '{' + 201 'white-space:normal;' +202 213 'margin:10px' + 203 214 '}' + 204 215 '</style>'