Ticket #5775: 5775_2.patch
File 5775_2.patch, 2.3 KB (added by , 13 years ago) |
---|
-
_source/skins/kama/dialog.css
786 786 display: none; 787 787 } 788 788 789 .cke_skin_kama .cke_dialog_body label.cke_required 790 { 791 font-weight: bold; 792 } 793 789 794 .cke_skin_kama .cke_hc .cke_dialog_body .cke_label 790 795 { 791 796 display: inline; -
_source/skins/v2/dialog.css
718 718 display: none; 719 719 } 720 720 721 .cke_skin_v2 .cke_dialog_body label.cke_required 722 { 723 font-weight: bold; 724 } 725 721 726 .cke_skin_v2 .cke_hc .cke_dialog_body .cke_label 722 727 { 723 728 display: inline; -
_source/skins/office2003/dialog.css
716 716 display: none; 717 717 } 718 718 719 .cke_skin_office2003 .cke_dialog_body label.cke_required 720 { 721 font-weight: bold; 722 } 723 719 724 .cke_skin_office2003 .cke_hc .cke_dialog_body .cke_label 720 725 { 721 726 display: inline; -
_source/plugins/dialogui/plugin.js
152 152 /** @ignore */ 153 153 var innerHTML = function() 154 154 { 155 var html = []; 155 var html = [], 156 requiredClass = elementDefinition.required ? ' cke_required' : '' ; 156 157 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 + '" ', 158 159 ' id="'+ _.labelId + '"', 159 160 ' for="' + _.inputId + '"', 160 161 ' style="' + elementDefinition.labelStyle + '">', … … 173 174 [ 174 175 { 175 176 type : 'html', 176 html : '<label class="cke_dialog_ui_labeled_label "' +177 html : '<label class="cke_dialog_ui_labeled_label' + requiredClass + '"' + 177 178 ' id="' + _.labelId + '"' + 178 179 ' for="' + _.inputId + '"' + 179 180 ' style="' + elementDefinition.labelStyle + '">' +