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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .form-control {
  2. padding: $formPadding 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. &__container {
  21. position: relative;
  22. width: 100%;
  23. margin-top: 5px;
  24. margin-bottom: 5px;
  25. @include flex();
  26. .button-control {
  27. margin: 1px 0 1px 10px;
  28. }
  29. }
  30. &__right {
  31. position: absolute;
  32. right: 0;
  33. }
  34. }
  35. /**
  36. * Set a specific color for read only style.
  37. */
  38. input:read-only {
  39. color: $readOnlyInputColor;
  40. }