Changes between Initial Version and Version 2 of Ticket #6168
- Timestamp:
- Sep 10, 2010, 1:52:53 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #6168
-
Property
Status
changed from
new
topending
- Property Keywords IBM added; ibm removed
-
Property
Component
changed from
General
toCore : Styles
-
Property
Status
changed from
-
Ticket #6168 – Description
initial v2 1 1 I changed the editor configuration object so that instead of inserting a <u> for underline, it inserts a <span> with an inline style : 2 2 {{{ 3 3 coreStyles_underline: { 4 4 element: "span", 5 5 attributes : {style: "text-decoration: underline"} 6 6 } 7 7 }}} 8 8 This works great except that when you apply this to an element that has had e.g. it's font size increased, the "underline" span replaces the font size one, effectively losing that style. 9 9