liuxiaolong
2019-05-06 2ab7a76a38fbf8fa107bf6371f5410ba54e1d394
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
@mixin vue-simple-calendar-event-variant($parent, $color) {
  $parent: if($parent != null, '.cv-event-#{$parent}.cv-event', '.cv-event');
 
  #{$parent} {
    background: rgba($color, .15) !important;
  }
}
 
@mixin vue-simple-calendar-theme($color) {
  @include vue-simple-calendar-event-variant(null, $color);
 
  .cv-day.draghover {
    box-shadow: inset 0 0 0.0 .125rem $color !important;
  }
 
  .cv-day.today {
    background: rgba($color, .05) !important;
  }
}