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-toolbar {
30
    @media(max-width: 767px) {
31
      flex-direction: column;
32
      .fc-toolbar-chunk {
33
        margin-bottom: 12px;
34
      }
35
    }
36
  }
37
 
38
  .fc-daygrid-day-number,
39
  .fc-col-header-cell-cushion {
40
    color: $body-color;
41
  }
42
 
43
  .fc-daygrid-event {
44
    padding: 4px;
45
  }
46
 
47
  .fc-daygrid-day.fc-day-today {
48
    background-color: rgba($primary, .2);
49
  }
50
 
51
  .fc-list-event:hover td {
52
    background-color: rgba($primary, .2);
53
  }
54
 
55
  .fc-list-day-text,
56
  .fc-list-day-side-text {
57
    color: $body-color;
58
  }
59
}
60
 
61
.fc-theme-standard td,
62
.fc-theme-standard th,
63
.fc-theme-standard .fc-scrollgrid {
64
  border-color: $border-color;
65
}
66
 
67
.fc-timegrid-event-harness-inset .fc-timegrid-event,
68
.fc-timegrid-event.fc-event-mirror,
69
.fc-timegrid-more-link {
70
  box-shadow: none;
71
}
72
 
73
.fc-theme-standard .fc-popover {
74
  background-color: $dropdown-bg;
75
  border-color: $dropdown-border-color;
76
  box-shadow: $dropdown-box-shadow;
77
  .fc-popover-header {
78
    background-color: $secondary;
79
  }
80
}
81
 
82
.fc-theme-standard .fc-list-day-cushion {
83
  background-color: $card-bg;
84
}
85
 
86
.fc-theme-standard .fc-list {
87
  border-color: $border-color;
88
}
89
 
90
.fc-event {
91
  margin-bottom: 10px;
92
  padding: 8px;
93
  border-radius: 2px;
94
  background: rgba($primary, .2);
95
  border: 0;
96
  border-left: 3px solid $primary;
97
  color: $body-color;
98
  font-weight: 500;
99
}
100
 
101
.fc-h-event .fc-event-main {
102
  color: $body-color;
103
}