Skip to content

Commit e814b57

Browse files
author
CIS Guru
committed
simple-start-refactor
1 parent 3f4e028 commit e814b57

3 files changed

Lines changed: 22 additions & 3 deletions

File tree

4-Aquiis.SimpleStart/Features/PropertyManagement/Repairs/Create.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<div class="row">
2626
<div class="col-lg-8">
2727
<div class="card">
28-
<div class="card-header bg-light">
28+
<div class="card-header">
2929
<h5 class="card-title mb-0">Repair Information</h5>
3030
</div>
3131
<div class="card-body">
@@ -188,7 +188,7 @@
188188
</div>
189189

190190
<div class="col-lg-4">
191-
<div class="card bg-light">
191+
<div class="card">
192192
<div class="card-body">
193193
<h6 class="card-title"><i class="bi bi-info-circle me-2"></i>About Repairs</h6>
194194
<p class="card-text small">

4-Aquiis.SimpleStart/Features/PropertyManagement/Repairs/View.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,6 @@
351351
}
352352
}
353353

354-
private void NavigateToEdit() => Navigation.NavigateTo($"/propertymanagement/repairs/edit/{Id}");
354+
private void NavigateToEdit() => Navigation.NavigateTo($"/propertymanagement/repairs/{Id}/edit");
355355
private void Back() => Navigation.NavigateTo("/propertymanagement/repairs");
356356
}

4-Aquiis.SimpleStart/wwwroot/app.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,25 @@
5757
--bs-emphasis-color: #25344d !important;
5858
}
5959

60+
/* Table text color for Obsidian dark theme */
61+
[data-bs-theme="dark"][data-brand-theme="obsidian"] table,
62+
[data-bs-theme="dark"][data-brand-theme="obsidian"] .table,
63+
[data-bs-theme="dark"][data-brand-theme="obsidian"] table thead,
64+
[data-bs-theme="dark"][data-brand-theme="obsidian"] table tbody,
65+
[data-bs-theme="dark"][data-brand-theme="obsidian"] table th,
66+
[data-bs-theme="dark"][data-brand-theme="obsidian"] table td {
67+
color: whitesmoke !important;
68+
}
69+
70+
/* Override Bootstrap's table text color more specifically */
71+
[data-bs-theme="dark"][data-brand-theme="obsidian"]
72+
.table
73+
> :not(caption)
74+
> *
75+
> * {
76+
color: whitesmoke !important;
77+
}
78+
6079
/* ========================================
6180
BRAND THEME: TEAL
6281
Override Bootstrap CSS variables with Teal colors

0 commit comments

Comments
 (0)