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.

_input-control.scss 630B

1234567891011121314151617181920212223242526272829303132
  1. .input-control {
  2. @include transition(all .2s ease-in);
  3. display: inline-block;
  4. width: 100%;
  5. padding: 5px 7px;
  6. color: $inputColor;
  7. border-radius: $borderRadius;
  8. line-height: 32px;
  9. height: 32px;
  10. text-align: left;
  11. border:1px solid $inputBorderColor;
  12. background-color: $inputBackground;
  13. margin-bottom: 8px;
  14. &:last-child {
  15. margin-bottom: inherit;
  16. }
  17. &::selection {
  18. background-color: $defaultDarkSelectionColor;
  19. }
  20. &.error {
  21. color: $errorColor;
  22. border-color: $errorColor;
  23. }
  24. }
  25. @include placeholder {
  26. color: $placeHolderColor;
  27. }