Rapid PHP: CSS Gradient Assistent

Let us know what you would like to see in the next version of this software

Moderator: kfury77

Forum rules
Please follow these guidelines when posting feature requests. This will help to increase the value of your contribution.
  • Do not create new topics for already requested features. Add your comments to the existing feature request topics instead;
  • Create separate topic for each feature suggestion. Do NOT post a number of non-related feature suggestions in a single topic;
  • Give your topic a meaningful title. Do NOT create topics with meaningless titles, such as "My Suggestion" or "My Problem".
Please note that we DO READ all suggestions, even if a reply is not posted. Thanks!
Post Reply
davey
Posts: 1
Joined: Tue Feb 26, 2013 12:38 pm

Rapid PHP: CSS Gradient Assistent

Post by davey »

First of all, the new CSS Gradient Assistent is great, but i would love to see some small adjustment in the next version.

The CSS Gradient Assistent doesn't create a 'default' background property for non-supported browsers. It would be great if the gradient generator adds automatically a default background property with, for example, the first color you selected.

Code: Select all

  background: #A40E1B; /* This line isn't created by the gradient assistent */ 
  background-image: -webkit-gradient(linear, top, bottom, color-stop(0, #A40E1B), color-stop(1, #830B15));
  background-image: -ms-linear-gradient(top, #A40E1B, #830B15);
  background-image: -o-linear-gradient(top, #A40E1B, #830B15);
  background-image: -moz-linear-gradient(top, #A40E1B, #830B15);
  background-image: -webkit-linear-gradient(top, #A40E1B, #830B15);
  background-image: linear-gradient(to bottom, #A40E1B, #830B15);
And perhaps the possibility to add multiple stops to the gradient.
User avatar
Aivars
Blumentals Software Developer
Posts: 2462
Joined: Thu Aug 22, 2002 1:40 pm
Location: Latvia

Re: Rapid PHP: CSS Gradient Assistent

Post by Aivars »

I'll add this to the list, but we'll need to consider whether there are cases when adding a default background color could cause problems or not.
Blumentals Software Programmer
FiftyStars
Posts: 7
Joined: Fri Mar 01, 2013 3:40 pm

Re: Rapid PHP: CSS Gradient Assistent

Post by FiftyStars »

it also would be nice to have an option(maybe checkbox in gradient assistant?) to add IE filter code

Code: Select all

-ms-filter:"progid:DXImageTransform.Microsoft.Gradient(enabled=true,StartColorStr='#000',EndColorStr='#fff',GradientType=0)";
User avatar
Aivars
Blumentals Software Developer
Posts: 2462
Joined: Thu Aug 22, 2002 1:40 pm
Location: Latvia

Re: Rapid PHP: CSS Gradient Assistent

Post by Aivars »

The IE filter causes lots of problems - it's visibly slow on lots of pages, it's stepping out of element's bounds even when overflow is hidden, it's a completely different technology than css filters, it only works for elements that "have layout" which is another IE-specific thing etc. This is why we decided to exclude it. Hopefully thanks to MS dropping XP support soon, we'll have no need for them anymore.
Blumentals Software Programmer
Post Reply