Proyectos de Subversion LeadersLinked - Backend

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
16825 efrain 1
// npm package: fullcalendar
2
// github link: https://github.com/fullcalendar/fullcalendar
3
 
4
.fc {
5
  --fc-button-active-bg-color: #{$primary};
6
  --fc-button-active-border-color: #{$primary};
7
  .fc-button-primary {
8
    @extend .btn;
9
    @extend .btn-outline-primary;
10
    @extend .btn-sm;
11
  }
12
  .fc-button-primary:not(:disabled).fc-button-active,
13
  .fc-button-primary:not(:disabled):active {
14
    @extend .btn-primary;
15
  }
16
  .fc-button .fc-icon {
17
    font-size: 1.2 em;
18
  }
19
  .fc-button-primary:focus,
20
  .fc-button-primary:not(:disabled).fc-button-active:focus,
21
  .fc-button-primary:not(:disabled):active:focus {
22
    box-shadow: none;
23
  }
24
 
25
  .fc-button-primary:disabled {
26
    border-color: $primary;
27
  }
28
 
29
  .fc-daygrid-day-number,
30
  .fc-col-header-cell-cushion {
31
    color: $body-color;
32
  }
33
 
34
  .fc-daygrid-event {
35
    padding: 4px;
36
  }
37
 
38
  .fc-daygrid-day.fc-day-today {
39
    background-color: rgba($primary, .2);
40
  }
41
 
42
  .fc-list-event:hover td {
43
    background-color: rgba($primary, .2);
44
  }
45
 
46
  .fc-list-day-text,
47
  .fc-list-day-side-text {
48
    color: $body-color;
49
  }
50
}
51
 
52
.fc-theme-standard td,
53
.fc-theme-standard th,
54
.fc-theme-standard .fc-scrollgrid {
55
  border-color: $border-color;
56
}
57
 
58
.fc-timegrid-event-harness-inset .fc-timegrid-event,
59
.fc-timegrid-event.fc-event-mirror,
60
.fc-timegrid-more-link {
61
  box-shadow: none;
62
}
63
 
64
.fc-theme-standard .fc-popover {
65
  background-color: $dropdown-bg;
66
  border-color: $dropdown-border-color;
67
  box-shadow: $dropdown-box-shadow;
68
  .fc-popover-header {
69
    background-color: $secondary;
70
  }
71
}
72
 
73
.fc-theme-standard .fc-list-day-cushion {
74
  background-color: $card-bg;
75
}
76
 
77
.fc-theme-standard .fc-list {
78
  border-color: $border-color;
79
}
80
 
81
.fc-event {
82
  margin-bottom: 10px;
83
  padding: 8px;
84
  border-radius: 2px;
85
  background: rgba($primary, .2);
86
  border: 0;
87
  border-left: 3px solid $primary;
88
  color: $body-color;
89
  font-weight: 500;
90
}
91
 
92
.fc-h-event .fc-event-main {
93
  color: $body-color;
94
}