SmartClient Version: v11.0p_2016-04-15/Pro Deployment (built 2016-04-15)
I am having a styling issue with v6.0.
I have shadow enabled on selectitem/combobox picklists and it used to work fine (in v5.0), but with v6.0 it is showing too must shadow if a combobox is showing less than 3 items in the picklist. (See attached picture) (the picture should of course say v6.0 and not v6.1)
The first 2 are showing the enterprise skin with only showShadow:true as the only change.
The bottom 2 are showing my own skin and the difference between v5.0 and v6.0.
My own modified styling:
I am having a styling issue with v6.0.
I have shadow enabled on selectitem/combobox picklists and it used to work fine (in v5.0), but with v6.0 it is showing too must shadow if a combobox is showing less than 3 items in the picklist. (See attached picture) (the picture should of course say v6.0 and not v6.1)
The first 2 are showing the enterprise skin with only showShadow:true as the only change.
Code:
// used by SelectItem and ComboBoxItem for picklist
if (isc.ScrollingMenu) {
isc.ScrollingMenu.addProperties({
shadowDepth:5,
showShadow:true
});
}
My own modified styling:
Code:
// used by SelectItem and ComboBoxItem for picklist
if (isc.ScrollingMenu) {
isc.ScrollingMenu.addProperties({
showShadow:true,
shadowDepth: 3,
shadowSoftness: 2,
shadowOffset: 1
});
}
Comment