Index: FCKeditor/trunk/_whatsnew.html
===================================================================
--- FCKeditor/trunk/_whatsnew.html	(revision 1113)
+++ FCKeditor/trunk/_whatsnew.html	(revision 1114)
@@ -123,4 +123,7 @@
 				<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1554">#1554</a>] Links
 					now get underlined.</li>
+				<li>[<a target="_blank" href="http://dev.fckeditor.net/ticket/1557">#1557</a>] The "Automatic"
+					and "More colors..." buttons were improperly styled in the color selector panels
+					(Opera too).</li>
 			</ul>
 		</li>
Index: FCKeditor/trunk/editor/_source/commandclasses/fcktextcolorcommand.js
===================================================================
--- FCKeditor/trunk/editor/_source/commandclasses/fcktextcolorcommand.js	(revision 1113)
+++ FCKeditor/trunk/editor/_source/commandclasses/fcktextcolorcommand.js	(revision 1114)
@@ -142,5 +142,6 @@
 	FCKTools.AddEventListenerEx( oDiv, 'click', FCKTextColorCommand_AutoOnClick, this ) ;
 
-	if ( FCKBrowserInfo.IsSafari )
+	// Dirty hack for Opera, Safari and Firefox 3.
+	if ( !FCKBrowserInfo.IsIE )
 		oDiv.style.width = '96%' ;
 
@@ -179,5 +180,6 @@
 	}
 
-	if ( FCKBrowserInfo.IsSafari )
+	// Dirty hack for Opera, Safari and Firefox 3.
+	if ( !FCKBrowserInfo.IsIE )
 		oDiv.style.width = '96%' ;
 }
