Announcement

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

    #16
    We're not sure what you mean - the previous poster is talking about the blue gradient from EnterpriseBlue becoming gray instead. This comes from loading two skins at once, because the gradient in EnterpriseBlue is clearly blue.

    If you have some other reason you like the section header style instead, that's fine too.
    I can assure that I have no more than one load_skin.js in my html code.

    And the enterprise blue toolstrip turned gray when switching from the build of SmartGwt 3.0p built on 08/14/2012 05:28 to the latest nightly.

    I then opened the skin_styles.css from the latest build and searched for the .toolStrip section. This is what I found:
    Code:
     
    .toolStrip {
      background-color: #fee7e7;
      background-image: url(images/ToolStrip/background.png);
      background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #f7f7f7), color-stop(2%, #f7f7f7), color-stop(2%, #f2f2f2), color-stop(100%, #e0e0e0));
      background-image: -webkit-linear-gradient(bottom, #f7f7f7 0%, #f7f7f7 2%, #f2f2f2 2%, #e0e0e0 100%);
      background-image: -moz-linear-gradient(bottom, #f7f7f7 0%, #f7f7f7 2%, #f2f2f2 2%, #e0e0e0 100%);
      background-image: -o-linear-gradient(bottom, #f7f7f7 0%, #f7f7f7 2%, #f2f2f2 2%, #e0e0e0 100%);
      background-image: linear-gradient(bottom, #f7f7f7 0%, #f7f7f7 2%, #f2f2f2 2%, #e0e0e0 100%);
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#e0e0e0', endColorstr='#f7f7f7');
      -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#e0e0e0', endColorstr='#f7f7f7')";
      border: 1px solid #c4c4c4;
    }
    See for yourself if this makes a grey toolStrip.


    I then opened the skin_styles.css from the August build and this is what I found there:
    Code:
    .toolStrip {
      background-color: #e7f0fe;
      background-image: url(images/ToolStrip/background.png);
      background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #f4f7fb), color-stop(2%, #f4f7fb), color-stop(2%, #e7f0fe), color-stop(100%, #cdddf4));
      background-image: -webkit-linear-gradient(top, #f4f7fb 0%, #f4f7fb 2%, #e7f0fe 2%, #cdddf4 100%);
      background-image: -moz-linear-gradient(top, #f4f7fb 0%, #f4f7fb 2%, #e7f0fe 2%, #cdddf4 100%);
      background-image: -o-linear-gradient(top, #f4f7fb 0%, #f4f7fb 2%, #e7f0fe 2%, #cdddf4 100%);
      background-image: -ms-linear-gradient(top, #f4f7fb 0%, #f4f7fb 2%, #e7f0fe 2%, #cdddf4 100%);
      background-image: linear-gradient(top, #f4f7fb 0%, #f4f7fb 2%, #e7f0fe 2%, #cdddf4 100%);
      filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, startColorstr='#f4f7fb', endColorstr='#cdddf4');
      -ms-filter: "progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr='#f4f7fb', endColorstr='#cdddf4')";
      border: 1px solid #9abdef;
    }
    Whatever, I copied the "old" toolStrip-CSS-part into the new skin_styles.css and put that back into the jar, and now I have a blue toolStrip.

    Please fix the current build, so I do not have to do this myself.

    Thank you!

    Comment


      #17
      Ah that's pretty clear!
      Sorry for the confusion on this. We've now made the change and pushed it to the 3.1p branch. It should show up in nightly builds going forward (Dec 8 and above)

      Regards
      Isomorphic Software

      Comment


        #18
        Hello Isomorphic,

        I am seeing the same issue in latest 3.0p nightly build. Has the fix been ported to 3.0p build?

        Thanks,
        Mouli

        Comment


          #19
          No - any new development should be done on 3.1p or 4.0d. If you want to stay on 3.0 for a few more weeks, you can grab the revised CSS definitions above and use them in your project.

          Comment

          Working...
          X