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 951B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. margin-top: 0;
  22. font-size: $hintFontSize;
  23. span {
  24. vertical-align: middle;
  25. }
  26. &_error {
  27. color: $errorColor;
  28. }
  29. }
  30. &__container {
  31. position: relative;
  32. width: 100%;
  33. margin-top: 5px;
  34. margin-bottom: 5px;
  35. @include flex();
  36. .button-control {
  37. margin: 1px 0 1px 10px;
  38. }
  39. }
  40. &__right {
  41. position: absolute;
  42. right: 0;
  43. }
  44. }
  45. /**
  46. * Set a specific color for read only style.
  47. */
  48. input:read-only {
  49. color: $readOnlyInputColor;
  50. }