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.

_timepicker.scss 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .timepicker {
  2. .dropdown-menu {
  3. min-width: 0;
  4. }
  5. .dropdown,
  6. .dropdown-trigger {
  7. width: 100%;
  8. }
  9. .dropdown-item {
  10. font-size: inherit;
  11. padding: 0;
  12. }
  13. .timepicker-footer {
  14. padding: 0 0.5rem 0 0.5rem;
  15. }
  16. .dropdown-content {
  17. .control {
  18. font-size: 1.25em;
  19. margin-right: 0 !important;
  20. .select {
  21. select {
  22. font-weight: $weight-semibold;
  23. padding-right: $control-padding-horizontal;
  24. border: 0;
  25. option {
  26. &:disabled {
  27. color: rgba($grey, 0.7);
  28. }
  29. }
  30. }
  31. &:after {
  32. display: none;
  33. }
  34. }
  35. &.is-colon {
  36. font-size: 1.7em;
  37. }
  38. }
  39. }
  40. // Sizes
  41. &.is-small {
  42. @include control-small;
  43. }
  44. &.is-medium {
  45. @include control-medium;
  46. }
  47. &.is-large {
  48. @include control-large;
  49. }
  50. }