Hi,
i've got an optical issue with toolstrips in firefox 18.0.
I've got a toolstrip with two buttons separated from a toolstripseparator.
If you've a look at the screenshot you'll see the result. The two buttons will move up
This only occurs when the button has an icon.
If the cursor was moved above one button it will move down to it's proper place.
The second problem is the separator, it does increase the space between the two buttons a little bit to much.
I'm using html doctype 5 and smartclient version "v8.3p_2013-01-09/Pro Deployment "
Here is my example code
Regards Marcus
i've got an optical issue with toolstrips in firefox 18.0.
I've got a toolstrip with two buttons separated from a toolstripseparator.
If you've a look at the screenshot you'll see the result. The two buttons will move up
This only occurs when the button has an icon.
If the cursor was moved above one button it will move down to it's proper place.
The second problem is the separator, it does increase the space between the two buttons a little bit to much.
I'm using html doctype 5 and smartclient version "v8.3p_2013-01-09/Pro Deployment "
Here is my example code
Code:
isc.ToolStrip.create( { "width":"100%", "leaveScrollbarGap":false, "members": [ isc.Button.create( { "overflow":"visible", "tabIndex":0, "title":"New", "icon":"icons/16/icon_add_files.png", "showDisabledIcon":false } ), isc.ToolStripSeparator.create( { } ), isc.Button.create( { "overflow":"visible", "tabIndex":0, "title":"Find", "icon": "icons/16/find.png" } ) ] });
Comment