diff --git a/editor/ui/composer/content/EditorAppShell.xul b/editor/ui/composer/content/EditorAppShell.xul index 4d7e5c059225..348f5b48ddb9 100644 --- a/editor/ui/composer/content/EditorAppShell.xul +++ b/editor/ui/composer/content/EditorAppShell.xul @@ -16,6 +16,12 @@ + + + + + + @@ -66,7 +72,6 @@ - ]> - + @@ -317,17 +322,24 @@ - + + + + + + + diff --git a/editor/ui/composer/skin/Editor.css b/editor/ui/composer/skin/Editor.css index 38dafabee0a0..49031e312abd 100644 --- a/editor/ui/composer/skin/Editor.css +++ b/editor/ui/composer/skin/Editor.css @@ -10,7 +10,6 @@ select.combobox { border-left: 4px; border-right: 4px; border-style: outset; - //background: silver; } titledbutton#TextColorPopup { @@ -20,3 +19,35 @@ titledbutton#TextColorPopup { titledbutton#BackColorPopup { margin-left: -3px; } + +titledbutton#BoldButton { + min-width: 16px; + font-size: 19px; + font-weight: 900; + font-family: times, serif, sans-serif; +} + +titledbutton#BoldButton:hover { + text-decoration: none; +} + +titledbutton#ItalicButton { + min-width: 16px; + font-size: 19px; + font-weight: 500; + font-family: times, serif, sans-serif; + font-style: italic; +} + +titledbutton#ItalicButton:hover { + text-decoration: none; +} + +titledbutton#UnderlineButton { + min-width: 16px; + font-size: 19px; + font-weight: 500; + font-family: times, serif, sans-serif; + text-decoration: underline; +} +