選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_input-control.scss 975B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. .input-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. &__input {
  18. margin: 8px 0;
  19. &::selection {
  20. background-color: $defaultDarkSelectionColor;
  21. }
  22. }
  23. &__em {
  24. color: $inputControlEmColor;
  25. }
  26. &__hint {
  27. margin-top: 0;
  28. font-size: $hintFontSize;
  29. span {
  30. vertical-align: middle;
  31. }
  32. }
  33. &__container {
  34. position: relative;
  35. width: 100%;
  36. @include flex();
  37. .button-control {
  38. margin: 9px 0 9px 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. }