diff --git a/form_elements/css/sticky.css b/form_elements/css/sticky.css new file mode 100644 index 00000000..a58588c9 --- /dev/null +++ b/form_elements/css/sticky.css @@ -0,0 +1,18 @@ + +input.sticky { +height: 18px; +padding-left: 15px; +background: url(../images/pushpin.png) top left no-repeat; + filter:alpha(opacity=50); + -moz-opacity:0.5; + -khtml-opacity:0.5; + opacity:0.5; +} + +input.sticky:checked { + background-image: url(../images/pushpin.png); + filter:alpha(opacity=100); + -moz-opacity:1; + -khtml-opacity:1; + opacity:1; +} \ No newline at end of file diff --git a/form_elements/images/pushpin.png b/form_elements/images/pushpin.png new file mode 100644 index 00000000..93c875c2 Binary files /dev/null and b/form_elements/images/pushpin.png differ