Ticket #3850: 3850.patch

File 3850.patch, 2.0 KB (added by Tobiasz Cudnik, 15 years ago)
  • CHANGES.html

     
    8686                <li><a href="http://dev.fckeditor.net/ticket/3812">#3812</a> : Fixed an issue in which the editor
    8787                        may show up empty or uneditable in IE7, 8 and Firefox 3.</li>
    8888                <li><a href="http://dev.fckeditor.net/ticket/3825">#3825</a> : Fixed JS error when opening spellingcheck.</li>
     89                <li><a href="http://dev.fckeditor.net/ticket/3850">#3850</a> : Combo inline labels were invisible in RTL using Chrome.</li>
    8990        </ul>
    9091        <h3>
    9192                CKEditor 3.0 RC</h3>
  • _source/skins/kama/richcombo.css

     
    113113        margin: 0 2px 0 4px;
    114114}
    115115
     116/* Combo inline labels are invisible in RTL (#3850) */
     117.cke_skin_kama .cke_browser_chrome .cke_rtl .cke_rcombo .cke_text
     118{
     119        opacity: 1;
     120}
     121
    116122.cke_skin_kama .cke_rtl .cke_rcombo .cke_text
    117123{
    118124        margin: 0 4px 0 2px;
  • _source/core/env.js

     
    211211                if ( env.gecko && version < 10900 )
    212212                        env.cssClass += ' cke_browser_gecko18';
    213213
     214                if ( agent.indexOf( ' chrome/' ) > -1 )
     215                        env.cssClass += ' cke_browser_chrome';
     216
    214217                return env;
    215218        })();
    216219}
  • _source/skins/kama/toolbar.css

     
    235235        float: right;
    236236}
    237237
     238/* Combo inline labels are invisible in RTL (#3850) */
     239.cke_skin_kama .cke_browser_chrome .cke_rtl .cke_button a
     240{
     241        opacity: 1;
     242}
     243
    238244.cke_skin_kama .cke_hc .cke_button .cke_label
    239245{
    240246        padding: 0;
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy