Ohm-Management - Projektarbeit B-ME
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.

_select.scss 501B

1234567891011121314151617181920212223
  1. .select {
  2. select {
  3. padding-right: 2.5em;
  4. option {
  5. color: $grey-dark;
  6. padding: 0.25em 0.5em;
  7. }
  8. option:disabled {
  9. cursor: not-allowed;
  10. opacity: 0.5;
  11. }
  12. optgroup {
  13. color: $grey-light;
  14. font-weight: $weight-normal;
  15. font-style: normal;
  16. padding: 0.25em 0;
  17. }
  18. }
  19. &.is-empty select {
  20. color: rgba($grey, 0.7);
  21. }
  22. }