Changes between Initial Version and Version 3 of Ticket #5775
- Timestamp:
- Jul 16, 2010, 8:39:42 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #5775
- Property Keywords Confirmed added
-
Property
Status
changed from
new
toassigned
- Property Owner set to Tobiasz Cudnik
-
Property
Milestone
changed from
CKEditor 3.x
toCKEditor 3.4
-
Ticket #5775 – Description
initial v3 1 1 If a labeled dialog UI Element's required property is set to true the field's label should contain a CSS style so it can be styled differently. For example: 2 2 {{{ 3 3 <label class="cke_dialog_ui_labeled_label cke_required"... 4 4 }}} 5 5 A style like the following could then be used to mark required fields: 6 6 {{{ 7 7 .cke_skin_<name> .cke_dialog_ui_labeled_label.cke_required:before { 8 8 content: "* "; 9 9 } 10 }}}