Announcement

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

    CheckBoxItem label changes size on over

    SmartClient Version: SNAPSHOT_v12.1d_2019-04-22/EVAL Development Only (expires 2019.06.21_07.19.53) Licensed to: Isomorphic Software (#ISC_EVAL_NIGHTLY)

    Chrome on OSX

    skins: Tahoe, Stratus,...

    Hello, I've just noticed that the checkbox label font-size shrinks 1px (spacious setting) on over:

    Click image for larger version

Name:	Senzanome.gif
Views:	67
Size:	25.2 KB
ID:	257559

    #2
    This was actually fixed yesterday (it regressed over the weekend), so you should see it fixed in today's builds.

    Comment


      #3
      I can confirm it's fixed, thank you very much.

      Comment


        #4
        SmartClient Version: SNAPSHOT_v12.1d_2019-05-15/AllModules Development Only (built 2019-05-15)

        Chrome on OSX

        Hello, a different test case still shows a visual glitch:

        Code:
        isc.DynamicForm.create({
            ID: "form1",
            width: 620,
            colWidths: [190, "*"],
            fields: [
        
                {name: "checkbox", title: "Checkbox", type: "checkbox", height: 25,
                  validators: [
                                {
                                    type: 'custom',
                                    condition: function (item, validator, value, record) {
                                        return value;
                                    }
                                }
                              ]
        }
            ]
        });
        
        
        isc.VStack.create({
            membersMargin: 10,
            members: [ form1]
        });
        
        form1.validate()

        Click image for larger version

Name:	Senzanome (2).gif
Views:	78
Size:	19.1 KB
ID:	257795

        Comment


          #5
          Thanks - we've addressed the missing error/focused over styles for builds dated May 17 and later.

          Comment


            #6
            SmartClient Version: SNAPSHOT_v12.1d_2019-05-21/AllModules Development Only (built 2019-05-21)

            fixed, thanks

            Comment

            Working...
            X