You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_form-control.scss 978B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .form-control {
  2. padding: 16px 0;
  3. &:first-child {
  4. padding-top: 0;
  5. }
  6. &:last-child {
  7. padding-bottom: 0;
  8. }
  9. &__text {
  10. margin: 8px 0;
  11. font-size: 1em
  12. }
  13. &__label {
  14. font-size: 1em;
  15. font-weight: $labelFontWeight;
  16. }
  17. &__em {
  18. color: $inputControlEmColor;
  19. }
  20. &__hint {
  21. color: $baseLight;
  22. margin-top: 0;
  23. font-size: $hintFontSize;
  24. span {
  25. vertical-align: middle;
  26. }
  27. &_error {
  28. color: $errorColor;
  29. }
  30. }
  31. &__container {
  32. position: relative;
  33. width: 100%;
  34. margin-top: 5px;
  35. margin-bottom: 5px;
  36. @include flex();
  37. .button-control {
  38. margin: 1px 0 1px 10px;
  39. }
  40. }
  41. &__right {
  42. position: absolute;
  43. right: 0;
  44. }
  45. }
  46. /**
  47. * Set a specific color for read only style.
  48. */
  49. input:read-only {
  50. color: $readOnlyInputColor;
  51. }