|
@@ -589,11 +589,12 @@ a.ui-button:active,
|
|
|
.patient-avatar {
|
|
|
width: 50px;
|
|
|
height: 50px;
|
|
|
- background: #ddd;
|
|
|
+ background: #eee;
|
|
|
display: inline-flex;
|
|
|
align-items: center;
|
|
|
justify-content: center;
|
|
|
border-radius: 100%;
|
|
|
+ border: 1px solid #ccc;
|
|
|
}
|
|
|
.large {
|
|
|
font-size: 16px !important;
|
|
@@ -1676,4 +1677,35 @@ form.non-interactive .form-content {
|
|
|
form.non-interactive .form-content * {
|
|
|
pointer-events: none;
|
|
|
}
|
|
|
-#eventPros { max-height: 28px; opacity: 0;}
|
|
|
+#eventPros {
|
|
|
+ max-height: 28px;
|
|
|
+ opacity: 0;
|
|
|
+}
|
|
|
+.training-event {
|
|
|
+ position: relative;
|
|
|
+ background: #f0feff;
|
|
|
+ border-color: #32a2b89e !important;
|
|
|
+}
|
|
|
+.training-event::after {
|
|
|
+ position: absolute;
|
|
|
+ content: 'Training';
|
|
|
+ font-size: 10px;
|
|
|
+ font-weight: normal;
|
|
|
+ color: #17a2b8;
|
|
|
+ left: 1px;
|
|
|
+ bottom: -13px;
|
|
|
+ transform-origin: left top;
|
|
|
+ transform: rotate(
|
|
|
+ -90deg
|
|
|
+ );
|
|
|
+ width: 90px;
|
|
|
+ text-align: center;
|
|
|
+ letter-spacing: 0.75px;
|
|
|
+}
|
|
|
+.training-event .training-icon {
|
|
|
+ font-size: 22px;
|
|
|
+ color: #0d59af;
|
|
|
+}
|
|
|
+.training-event .patient-avatar {
|
|
|
+ border-color: #0d59af7d !important;
|
|
|
+}
|