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.
 
 
 
 

57 regels
1008 B

  1. @import './variables';
  2. .rbc-event {
  3. border: none;
  4. box-sizing: border-box;
  5. box-shadow: none;
  6. margin: 0;
  7. padding: $event-padding;
  8. background-color: $event-bg;
  9. border-radius: $event-border-radius;
  10. color: $event-color;
  11. cursor: pointer;
  12. width: 100%;
  13. text-align: left;
  14. .rbc-slot-selecting & {
  15. cursor: inherit;
  16. pointer-events: none;
  17. }
  18. &.rbc-selected {
  19. background-color: darken($event-bg, 10%);
  20. }
  21. &:focus {
  22. outline: 5px auto $event-outline;
  23. }
  24. }
  25. .rbc-event-label {
  26. @extend .rbc-ellipsis;
  27. font-size: 80%;
  28. }
  29. .rbc-event-overlaps {
  30. box-shadow: -1px 1px 5px 0px rgba(51,51,51,.5);
  31. }
  32. .rbc-event-continues-prior {
  33. border-top-left-radius: 0;
  34. border-bottom-left-radius: 0;
  35. }
  36. .rbc-event-continues-after {
  37. border-top-right-radius: 0;
  38. border-bottom-right-radius: 0;
  39. }
  40. .rbc-event-continues-earlier {
  41. border-top-left-radius: 0;
  42. border-top-right-radius: 0;
  43. }
  44. .rbc-event-continues-later {
  45. border-bottom-left-radius: 0;
  46. border-bottom-right-radius: 0;
  47. }