Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 4725 | Rev 4727 | Ir a la última revisión | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
4717 stevensc 1
.fc-button-group {
2
    display: flex;
3
    gap: 3px;
4
}
5
 
6
.fc-toolbar button {
7
    background: #0000;
8
    border: none;
9
    box-shadow: none;
10
    font-weight: 600;
11
    color: lightslategray;
12
}
13
 
14
.fc-state-down,
15
.fc-state-active {
16
    background-color: #ccc !important;
17
    border-radius: 5px !important;
4719 stevensc 18
}
19
 
20
.fc-prev-button,
21
.fc-next-button {
22
    border: 1px solid lightgray;
23
    border-radius: 5px;
24
}
25
 
26
.fc button .fc-icon {
27
    color: rgba(0, 0, 0, 0.3);
28
}
29
 
4721 stevensc 30
.fc th {
31
    text-align: left;
32
    font-weight: 600;
33
    text-transform: uppercase;
34
}
35
 
4720 stevensc 36
.fc th,
37
.fc td,
38
.fc td.fc-today {
4719 stevensc 39
    border: none;
4720 stevensc 40
}
41
 
42
.fc-day-number {
43
    font-size: 1.5rem;
4724 stevensc 44
    float: left !important;
4723 stevensc 45
    color: lightslategray !important;
4720 stevensc 46
}
47
 
48
.fc-view-container {
49
    border: 1px solid lightgray;
4722 stevensc 50
    background-color: #fff;
51
    padding: 1rem;
52
    border-radius: 5px;
4725 stevensc 53
}
54
 
55
.fc-row.fc-rigid .fc-content-skeleton {
4726 stevensc 56
    padding-top: 5px;
4725 stevensc 57
}
58
 
59
.fc-day {
60
    position: relative;
61
}
62
 
63
.fc-day::after {
64
    content: '';
65
    position: absolute;
66
    height: 3px;
67
    width: 80%;
68
    top: 0;
69
    left: 0;
4726 stevensc 70
    background-color: rgba(0, 0, 0, 0.3);
4717 stevensc 71
}