Jeditable button styling

How to style jeditable buttons? I use textarea as ..

.dynform textarea { width:450px; max-width: 2450px; height:200px; } 

where .dynform is the cssclass parameter for jeditable.

But the button style does not seem to take effect.

 .dynform input[type=button] { border: 1px solid #dddddd; background: #f6f6f6 url(images/ui-bg_highlight-soft_100_f6f6f6_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #38385c; } 
+4
source share
1 answer

jeditable creates nodes of type 'button' not 'input'

 .dynform button { border: 1px solid #dddddd; background: #f6f6f6 url(images/ui-bg_highlight-soft_100_f6f6f6_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #38385c; } 
+5
source

All Articles