Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

_input-control.scss 871B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .input-control {
  2. padding: 16px 0;
  3. &__text {
  4. margin: 8px 0;
  5. font-size: 1em
  6. }
  7. &__label {
  8. font-size: 1em;
  9. font-weight: $labelFontWeight;
  10. }
  11. &__input {
  12. margin: 8px 0;
  13. &::selection {
  14. background-color: $defaultDarkSelectionColor;
  15. }
  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. }
  27. &__container {
  28. position: relative;
  29. width: 100%;
  30. @include flex();
  31. .button-control {
  32. margin: 9px 0 9px 10px;
  33. }
  34. }
  35. &__right {
  36. position: absolute;
  37. right: 0;
  38. }
  39. }
  40. /**
  41. * Set a specific color for read only style.
  42. */
  43. input:read-only {
  44. color: $readOnlyInputColor;
  45. }