Ticket #5775: 5775_2.patch

File 5775_2.patch, 2.3 KB (added by Tobiasz Cudnik, 14 years ago)
  • _source/skins/kama/dialog.css

     
    786786        display: none;
    787787}
    788788
     789.cke_skin_kama .cke_dialog_body label.cke_required
     790{
     791        font-weight: bold;
     792}
     793
    789794.cke_skin_kama .cke_hc .cke_dialog_body .cke_label
    790795{
    791796        display: inline;
  • _source/skins/v2/dialog.css

     
    718718        display: none;
    719719}
    720720
     721.cke_skin_v2 .cke_dialog_body label.cke_required
     722{
     723        font-weight: bold;
     724}
     725
    721726.cke_skin_v2 .cke_hc .cke_dialog_body .cke_label
    722727{
    723728        display: inline;
  • _source/skins/office2003/dialog.css

     
    716716        display: none;
    717717}
    718718
     719.cke_skin_office2003 .cke_dialog_body label.cke_required
     720{
     721        font-weight: bold;
     722}
     723
    719724.cke_skin_office2003 .cke_hc .cke_dialog_body .cke_label
    720725{
    721726        display: inline;
  • _source/plugins/dialogui/plugin.js

     
    152152                                /** @ignore */
    153153                                var innerHTML = function()
    154154                                {
    155                                         var html = [];
     155                                        var html = [],
     156                                                requiredClass = elementDefinition.required ? ' cke_required' : '' ;
    156157                                        if ( elementDefinition.labelLayout != 'horizontal' )
    157                                                 html.push( '<label class="cke_dialog_ui_labeled_label" ',
     158                                                html.push( '<label class="cke_dialog_ui_labeled_label' + requiredClass + '" ',
    158159                                                                ' id="'+  _.labelId + '"',
    159160                                                                ' for="' + _.inputId + '"',
    160161                                                                ' style="' + elementDefinition.labelStyle + '">',
     
    173174                                                        [
    174175                                                                {
    175176                                                                        type : 'html',
    176                                                                         html : '<label class="cke_dialog_ui_labeled_label"' +
     177                                                                        html : '<label class="cke_dialog_ui_labeled_label' + requiredClass + '"' +
    177178                                                                                ' id="' + _.labelId + '"' +
    178179                                                                                ' for="' + _.inputId + '"' +
    179180                                                                                ' style="' + elementDefinition.labelStyle + '">' +
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy