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.
If you have some other reason you like the section header style instead, that's fine too.
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; }
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; }
Please fix the current build, so I do not have to do this myself.
Thank you!
Comment