Page 1 of 1

Question on raised-btn class

Posted: 10 Oct 2017, 19:40
by FkJ
Is it possible to configure the raised-btn class to render by default on the paradise theme?

I'm interested in using it in a existing webapp and adding this class button by button will not be viable.

Thanks

Re: Question on raised-btn class

Posted: 16 Oct 2017, 08:35
by mert.sincan
Our raised-btn class has the following css;

Code: Select all

.raised-btn {
        -moz-box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.26), 0 1px 5px 0 rgba(0, 0, 0, 0.16);
        -webkit-box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.26), 0 1px 5px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.26), 0 1px 5px 0 rgba(0, 0, 0, 0.16);
 }
Maybe, you can add the following css to buttons;

Code: Select all

body .ui-button {
         -moz-box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.26), 0 1px 5px 0 rgba(0, 0, 0, 0.16);
         -webkit-box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.26), 0 1px 5px 0 rgba(0, 0, 0, 0.16);
         box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.26), 0 1px 5px 0 rgba(0, 0, 0, 0.16);
 }