Hi there,
I have tested this issue with the latest downloadable preview (SmartClient_SNAPSHOT_v111d_2017-06-15_Pro)
1. If there is no text in the button, the first button is too small in height. I've marked the background red, the red should'nt be visible
Tahoe
Enterprise:
If I'm adding "overflow": "visible" to the first button this does not happen. In the Enterprise skin this doesn't make a difference.
2. Please also the decrease in width of a button if the user is hovering the button. It looks like the button gets 1px smaller if the button is hovered once:
3. This does not only happen with buttons without text, but also with buttons with text. The decrease of the buttons-width does not occur here
Please do also notice the heigth of the ToolStripSeparator
4. The heught of MenuButtons seems to be wrong so also adding "overflow:visible " doesn't have an effect on the height:
5. The text sizes of the components seems to be a little bit off.
I can see 3 different font-sizes:
* The label of the formItems (font-size: 11px;)
* The content of the formItems (font-size: 12.58px;)
* The buttons (and whole content) of the datePicker of the dateItem (font-size: 8px;)
The buttons and the text in the datePicker are so small that I can hardly read it. In the Enterprise-Skin the font-size of the content in the DatePicker was 11px.
6. I don't know why the datepicker has these empty spaces on the sides, shouldn't it look like this?
The ony changes i made were "width:100%" and "margin-left:-11px"
In my oppinion this looks cleaner as before (with the whitespaces)
Best Regards
Simon
I have tested this issue with the latest downloadable preview (SmartClient_SNAPSHOT_v111d_2017-06-15_Pro)
1. If there is no text in the button, the first button is too small in height. I've marked the background red, the red should'nt be visible
Tahoe
Enterprise:
Code:
isc.HLayout.create({ "ID": "thelayout", "height": "20", "backgroundColor": "red", "hideUsingDisplayNone": false, "align": "center", "leaveScrollbarGap": false, "members": [ isc.Button.create({ "ID": "buttonWithoutTitle", "title": " ", "width":23, "icon": "https://cdn4.iconfinder.com/data/icons/6x16-free-application-icons/16/Boss.png" }), isc.Button.create({ "ID": "buttonWithTitle", "overflow": "visible", "title": "ButtonWithTitle", "icon": "https://cdn4.iconfinder.com/data/icons/6x16-free-application-icons/16/Boss.png" })] })
2. Please also the decrease in width of a button if the user is hovering the button. It looks like the button gets 1px smaller if the button is hovered once:
3. This does not only happen with buttons without text, but also with buttons with text. The decrease of the buttons-width does not occur here
Please do also notice the heigth of the ToolStripSeparator
Code:
isc.ToolStrip.create({ "ID": "toolStrip_8", "width": "100%", "members": [ isc.Button.create({ "ID": "theButton1", "overflow": "visible", "title": "Button 1", "icon": "https://cdn4.iconfinder.com/data/icons/6x16-free-application-icons/16/Boss.png" }), isc.ToolStripSeparator.create({ "hideUsingDisplayNone": false }), isc.Button.create({ "ID": "theButton2", "title": "Button 2", "icon": "https://cdn4.iconfinder.com/data/icons/6x16-free-application-icons/16/Boss.png" }) ] })
Code:
isc.HLayout.create({ "ID": "theLayout", "height": "20", "backgroundColor": "red", "hideUsingDisplayNone": false, "align": "center", "leaveScrollbarGap": false, "members": [ isc.MenuButton.create({ "ID": "theToolStripMenuButton", "layoutAlign": "center", "title": "<img src=\"https://cdn4.iconfinder.com/data/icons/6x16-free-application-icons/16/Boss.png\" style='vertical-align:-4px; padding-right: 5px; width: 16px'>Videos ", "icon": "https://cdn4.iconfinder.com/data/icons/6x16-free-application-icons/16/Boss.png", "hiliteAccessKey": true, "overflow": "visible", "showDisabledIcon": false, menu: isc.Menu.create({ "ID": "theMenu", "members": [], "data": [{ "ID": "theMovie", "icon": "https://cdn4.iconfinder.com/data/icons/6x16-free-application-icons/16/Boss.png", "title": "Movie1" } ] }) }), isc.Button.create({ "ID": "theButton", "overflow": "visible", "title": "Button", "icon": "https://cdn4.iconfinder.com/data/icons/6x16-free-application-icons/16/Boss.png", "hiliteAccessKey": true, "showDisabledIcon": false }) ] })
I can see 3 different font-sizes:
* The label of the formItems (font-size: 11px;)
* The content of the formItems (font-size: 12.58px;)
* The buttons (and whole content) of the datePicker of the dateItem (font-size: 8px;)
The buttons and the text in the datePicker are so small that I can hardly read it. In the Enterprise-Skin the font-size of the content in the DatePicker was 11px.
6. I don't know why the datepicker has these empty spaces on the sides, shouldn't it look like this?
The ony changes i made were "width:100%" and "margin-left:-11px"
In my oppinion this looks cleaner as before (with the whitespaces)
Best Regards
Simon
Comment