inputs.less 734 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // Inputs
  3. // --------------------------------------------------
  4. // Double border size on default and lg inputs
  5. input.form-control, textarea.form-control {
  6. border-width: 2px;
  7. .box-shadow(none);
  8. }
  9. // Ghost out disabled inputs
  10. input.form-control, textarea.form-control {
  11. &.diabled {
  12. .opacity(50);
  13. }
  14. }
  15. // Password strength
  16. .password-strength {
  17. height: auto;
  18. margin: 0px;
  19. margin-top: @line-height-computed / 3;
  20. .progress-bar {
  21. .box-shadow(none);
  22. height: @line-height-computed / 2;
  23. }
  24. }
  25. // Recaptcha
  26. .form-recaptcha {
  27. padding-bottom: @padding-base-vertical;
  28. #g-captcha div {
  29. margin: 0px auto;
  30. }
  31. p {
  32. margin: 0px;
  33. margin-top: @line-height-computed * .66;
  34. padding: 0px;
  35. }
  36. }