Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    DatabaseBrowser/data.png icon hardly visibe in Twilight skin

    Hi,
    Choose https://smartclient.com/smartclient/...izeIncrease=10 showcase exaple and modify it:
    Code:
    isc.HLayout.create({
        membersMargin:20,
        members: [
            isc.IButton.create({
                ID: "findButton",
                width: 120,
                title: "Find Related",
                icon: "[SKIN]DatabaseBrowser/data.png"
            }),
            isc.Button.create({
                ID: "saveButton",
                title: "Save",
                icon: "icons/16/icon_add_files.png",
                iconOrientation: "right",
                showDownIcon: true
            })
        ]
    });
    
    isc.Button.create({
        title: "Disable Save",
        width: 120,
        left: 60,
        top: 45,
        click : function () {
            if (saveButton.isDisabled()) {
                saveButton.enable();
                this.setTitle("Disable Save");
            } else {
                saveButton.disable();
                this.setTitle("Enable Save");
            }
        }
    });
    Have a look at modified icon of findButton - almost invisible on the dark background of Twilight skin.
    Click image for larger version

Name:	data.png
Views:	84
Size:	10.3 KB
ID:	268839
    Thanks,
    MichalG

    #2
    Thanks for the notification. We're making a change to the icon to improve this

    Comment

    Working...
    X