source: resources/assets/sass/components/calendar.scss@ 7304c7f

develop
Last change on this file since 7304c7f was 7304c7f, checked in by beratkjufliju <kufliju@…>, 3 years ago

added user authentication, create & forgot password methods and blades

  • Property mode set to 100644
File size: 2.9 KB
Line 
1#external-events {
2 .fc-event {
3 border: none;
4 background: none;
5 color: $default-text-color;
6 font-size: $default-font-size;
7 cursor: move;
8 i {
9 margin-right: 10px;
10 }
11 }
12}
13
14.fc {
15 .fc-center {
16 h2 {
17 font-weight: 400;
18 font-size: $default-font-size + 5;
19 color: #828282
20 }
21 }
22 .fc-event {
23 background: $color-primary;
24 color:white !important;
25 border: none;
26 border-radius: 0;
27 margin: 0 3px;
28 padding: 0px 4px;
29 font-size: 11px;
30 line-height: normal;
31 &:hover {
32 background: #0151ac;
33 }
34 &.bg-danger {
35 &:hover {
36 background: #eb3030 !important;
37 }
38 }
39 &.bg-success {
40 &:hover {
41 background: #00b43d !important;
42 }
43 }
44 &.bg-info {
45 &:hover {
46 background: #1fa1d1 !important;
47 }
48 }
49 &.bg-warning {
50 &:hover {
51 background: #eba71f !important;
52 }
53 }
54 }
55 .fc-list-table {
56 .fc-list-item {
57 &.bg-danger {
58 &:hover td {
59 background: $color-danger!important;
60 }
61 .fc-event-dot {
62 background: white!important;
63 }
64 }
65 &.bg-success {
66 &:hover td {
67 background: $color-success!important;
68 }
69 .fc-event-dot {
70 background: white!important;
71 }
72 }
73 &.bg-info {
74 &:hover td {
75 background: $color-info!important;
76 }
77 .fc-event-dot {
78 background: white!important;
79 }
80 }
81 &.bg-warning {
82 &:hover td {
83 background: $color-warning!important;
84 }
85 .fc-event-dot {
86 background: white!important;
87 }
88 }
89 &.bg-primary {
90 &:hover td {
91 background: $color-primary!important;
92 }
93 .fc-event-dot {
94 background: white!important;
95 }
96 }
97 &.bg-secondary {
98 &:hover td {
99 background: $color-secondary!important;
100 }
101 .fc-event-dot {
102 background: white!important;
103 }
104 }
105 &.bg-dark {
106 &:hover td {
107 background: $color-dark!important;
108 }
109 .fc-event-dot {
110 background: white!important;
111 }
112 }
113 }
114 }
115 .fc-state-default {
116 @extend .btn-light;
117 background-image: none;
118 border: none;
119 box-shadow: none;
120 text-shadow: none;
121 &.fc-state-active {
122 background: $color-primary;
123 color: white;
124 }
125 }
126 .fc-event-dot {
127 background: #cdcdcd !important;
128 }
129}
130
131.fc-toolbar .fc-state-active, .fc-toolbar .ui-state-active {
132 z-index: 2;
133}
Note: See TracBrowser for help on using the repository browser.