Ticket #5775: 5775.patch
File 5775.patch, 2.8 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
1 /*1 /* 2 2 Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. 3 3 For licensing, see LICENSE.html or http://ckeditor.com/license 4 4 */ … … 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 + '">', 162 ( requiredClass ? '*' : '' ), 161 163 elementDefinition.label, 162 164 '</label>', 163 165 '<div class="cke_dialog_ui_labeled_content" role="presentation">', … … 173 175 [ 174 176 { 175 177 type : 'html', 176 html : '<label class="cke_dialog_ui_labeled_label "' +178 html : '<label class="cke_dialog_ui_labeled_label' + requiredClass + '"' + 177 179 ' id="' + _.labelId + '"' + 178 180 ' for="' + _.inputId + '"' + 179 181 ' style="' + elementDefinition.labelStyle + '">' + 182 ( requiredClass ? '*' : '' )+ 180 183 CKEDITOR.tools.htmlEncode( elementDefinition.label ) + 181 184 '</span>' 182 185 },