Revision b640fa41

b/snf-astakos-app/astakos/im/static/im/css/styles.css
646 646
.rightcol input[type=text], .rightcol input[type=password] {
647 647
  width: 273px;
648 648
}
649
/* recaptcha */
650
#recaptcha_widget_div {
651
  margin-top: 10px;
652
  margin-left: -4px;
653
}
654
#recaptcha_widget_div #recaptcha_instructions_image {
655
  font-size: 0.8em;
656
  margin-bottom: 10px;
657
  display: block !important;
658
}
649 659
/* generic form styles */
650 660
input, textarea, .form-widget {
651 661
  background-color: #ffffff;
b/snf-astakos-app/astakos/im/static/im/css/styles.less
90 90

  
91 91
div.header {
92 92
    position: relative;
93
    margin-top: 4*@gridGutterWidth;
93
    margin-top: 42px;
94 94
    margin-bottom: @gridGutterWidth;
95 95
    h1 {
96 96
        color: @shadowColor;
......
173 173

  
174 174
.page {
175 175
    .makeRow();
176
    margin-top: 6*@gridGutterWidth;
176
    margin-top: 42px;
177 177
    font-size: 1.1em;
178 178
    .page-inner {
179 179
        position: relative;    
......
213 213
    }
214 214
}
215 215

  
216

  
217
/* recaptcha */
218
#recaptcha_widget_div {
219
    margin-top: 10px;
220
    margin-left: -4px;
221

  
222
    #recaptcha_instructions_image {
223
        font-size: 0.8em;
224
        margin-bottom: 10px;
225
        display: block !important;
226
    }
227
}
216 228
/* generic form styles */
217 229
input, textarea, .form-widget {
218 230
    background-color: @white;
b/snf-astakos-app/astakos/im/templates/im/base.html
53 53
  <script type="text/javascript">
54 54
      $(document).ready(function() {
55 55
          $("form.innerlabels label").inFieldLabels();
56
          $("form").each(function(){
57
            if ($(this).hasClass("login")) { return }
58
            $(this).find("input").attr("autocomplete","off");
59
          })
56 60
          $("form .form-row").formErrors();
57 61
          $("form .form-row input[type=checkbox]").formCheckBoxes();
58
      })
62
            
63
          // hide label for captcha field
64
          $("label[for=id_recaptcha_challenge_field]").closest('.form-row').hide();
65
    })
59 66
  </script>
60 67
  <script>
61 68
    var CLOUDBAR_LOCATION = "{{ CLOUDBAR_LOC }}";

Also available in: Unified diff