Quellcode durchsuchen

Highlight "clientOnly" appts in calendar

Vijayakrishnan vor 4 Jahren
Ursprung
Commit
56ae433b54

+ 3 - 2
public/css/style.css

@@ -938,6 +938,7 @@ span.select2-container.select2-container--default.select2-container--open {
 .stag-popup .stag-popup-title>span {
     font-size: 17px;
 }
-.fc .opacity-50 {
-    opacity: .5;
+.fc .client-only {
+    box-shadow: 1px 1px 2px deeppink !important;
+    opacity: 0.7;
 }

+ 1 - 1
resources/views/app/patient/appointment-calendar.blade.php

@@ -479,7 +479,7 @@
                                 },
                                 eventClassNames: function(arg) {
                                     if (arg.event.extendedProps.clientOnly) {
-                                        return [ 'opacity-50' ];
+                                        return [ 'client-only' ];
                                     }
                                     return [];
                                 },