Spaces:
Sleeping
Sleeping
Commit
·
88aeb11
1
Parent(s):
1553229
Upd create new patient icon
Browse files- static/css/styles.css +8 -1
- static/index.html +3 -0
static/css/styles.css
CHANGED
|
@@ -912,10 +912,17 @@ body {
|
|
| 912 |
border-radius: 6px;
|
| 913 |
cursor: pointer;
|
| 914 |
}
|
| 915 |
-
|
| 916 |
.patient-load-btn:hover {
|
| 917 |
background: var(--primary-hover);
|
| 918 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 919 |
|
| 920 |
.patient-status {
|
| 921 |
margin-top: var(--spacing-sm);
|
|
|
|
| 912 |
border-radius: 6px;
|
| 913 |
cursor: pointer;
|
| 914 |
}
|
|
|
|
| 915 |
.patient-load-btn:hover {
|
| 916 |
background: var(--primary-hover);
|
| 917 |
}
|
| 918 |
+
.patient-create-link {
|
| 919 |
+
display:inline-flex; align-items:center;
|
| 920 |
+
justify-content:center; padding:8px 10px;
|
| 921 |
+
border: 1px solid var(--border-color);
|
| 922 |
+
border-radius:6px; color: var(--text-secondary);
|
| 923 |
+
text-decoration:none;
|
| 924 |
+
}
|
| 925 |
+
.patient-create-link:hover { background: var(--bg-tertiary); }
|
| 926 |
|
| 927 |
.patient-status {
|
| 928 |
margin-top: var(--spacing-sm);
|
static/index.html
CHANGED
|
@@ -44,6 +44,9 @@
|
|
| 44 |
<button class="patient-load-btn" id="loadPatientBtn" title="Load Patient">
|
| 45 |
<i class="fas fa-arrow-right"></i>
|
| 46 |
</button>
|
|
|
|
|
|
|
|
|
|
| 47 |
</div>
|
| 48 |
<div class="patient-status" id="patientStatus">No patient selected</div>
|
| 49 |
</div>
|
|
|
|
| 44 |
<button class="patient-load-btn" id="loadPatientBtn" title="Load Patient">
|
| 45 |
<i class="fas fa-arrow-right"></i>
|
| 46 |
</button>
|
| 47 |
+
<a class="patient-create-link" id="createPatientLink" href="/static/patient.html" title="Create new patient">
|
| 48 |
+
<i class="fas fa-user-plus"></i>
|
| 49 |
+
</a>
|
| 50 |
</div>
|
| 51 |
<div class="patient-status" id="patientStatus">No patient selected</div>
|
| 52 |
</div>
|