Page 4 of 4

Maintenance Window on October 19

Posted: Mon Nov 10, 2014 9:01 pm
by adam griffin

I do not want to use the appery default icon in properties it gives me an icon with a grey padding. Is there any other way to add a icon with out the padding since the old method codeAppery("search").addClass("ui-icon-search");/code does not work when I upgrade the builder?


Maintenance Window on October 19

Posted: Wed Nov 12, 2014 2:37 pm
by Maryna Brodina

Hello!

Could you clarify steps on how to see grey padding? It can be removed with CSS.


Maintenance Window on October 19

Posted: Thu Nov 13, 2014 8:06 pm
by adam griffin

Drag and drop a button to the app, then click any icon. A grey padding around the white icon will occur. I would like to not have the padding around the icon.


Maintenance Window on October 19

Posted: Thu Nov 13, 2014 8:24 pm
by adam griffin

I fixed the html problem. On the older builder html can work with text labels. But on the new builder I had to change my labels to html component and on success return code'<font color= "blue">'+value+'</font>';/code


Maintenance Window on October 19

Posted: Thu Nov 13, 2014 8:42 pm
by adam griffin

This is the grey padding I am referring to.

Image

And this is what the addClass do to the icon.
Image


Maintenance Window on October 19

Posted: Fri Nov 14, 2014 12:57 pm
by Maryna Brodina

Hello!

Please use the following CSS:
pre&#46;ui-btn-icon-notext:after,
&#46;ui-btn-icon-top:after,
&#46;ui-btn-icon-bottom:after {
background-color: gray;
}/preInstead "gray" use any other color


Maintenance Window on October 19

Posted: Mon Nov 17, 2014 5:47 am
by adam griffin

Thank You.