Index: branches/1.2.x/_install/theme.xml =================================================================== diff -u -N -r14274 -r16083 --- branches/1.2.x/_install/theme.xml (.../theme.xml) (revision 14274) +++ branches/1.2.x/_install/theme.xml (.../theme.xml) (revision 16083) @@ -1,5 +1,5 @@ - + platform/designs/general platform/designs/form platform/thankyou - \ No newline at end of file + Index: branches/1.2.x/platform/inc/styles.js =================================================================== diff -u -N --- branches/1.2.x/platform/inc/styles.js (revision 0) +++ branches/1.2.x/platform/inc/styles.js (revision 16083) @@ -0,0 +1,48 @@ +// The set of styles for the Styles combo +CKEDITOR.stylesSet.add( + 'portal', + [ + // Block Styles + { name : 'Alex Blue Title' , element : 'h3', styles : { 'color' : 'Blue' } }, + { name : 'Red Title' , element : 'h3', styles : { 'color' : 'Red' } }, + + // Inline Styles + { name : 'Marker: Yellow' , element : 'span', styles : { 'background-color' : 'Yellow' } }, + { name : 'Marker: Green' , element : 'span', styles : { 'background-color' : 'Lime' } }, + + { name : 'Big' , element : 'big' }, + { name : 'Small' , element : 'small' }, + { name : 'Typewriter' , element : 'tt' }, + { name : 'Computer Code' , element : 'code' }, + { name : 'Keyboard Phrase' , element : 'kbd' }, + { name : 'Sample Text' , element : 'samp' }, + { name : 'Variable' , element : 'var' }, + { name : 'Deleted Text' , element : 'del' }, + { name : 'Inserted Text' , element : 'ins' }, + { name : 'Cited Work' , element : 'cite' }, + { name : 'Inline Quotation' , element : 'q' }, + + // Object Styles + { + name : 'Image on Left', + element : 'img', + attributes : + { + 'style' : 'padding: 5px; margin-right: 5px', + 'border' : '2', + 'align' : 'left' + } + }, + + { + name : 'Image on Right', + element : 'img', + attributes : + { + 'style' : 'padding: 5px; margin-right: 5px', + 'border' : '2', + 'align' : 'right' + } + } + ] +);