fix wrong display in activity list

remove dark headers
This commit is contained in:
Frede Hundewadt 2023-11-04 13:37:41 +01:00
parent 2645399b06
commit 6e2eef2ec4
7 changed files with 8 additions and 8 deletions

View file

@ -16,7 +16,7 @@
@using Wonky.Entity.Views
@* Report activities *@
<table class="table table-sm table-striped">
<thead class="table-dark">
<thead class="table-light">
<tr>
<th scope="col" class="ps-2">Kunde</th>
<th scope="col">Bynavn</th>
@ -41,7 +41,7 @@
<td class="text-sm-start">@activity.Sales</td>
<td class="text-sm-start">@activity.OfficeNote</td>
<td class="text-sm-end">@($"{activity.SasAmount:N2}")</td>
<td class="text-sm-end">@(activity.StatusTypeEnum.Contains("Quote") ? "{0:N2}" : $"{activity.OrderAmount - activity.SasAmount:N2}")</td>
<td class="text-sm-end">@(activity.StatusTypeEnum.Contains("Quote") ? "{0:N2}" : $"{activity.OrderAmount}")</td>
<td class="align-middle text-sm-center">
@if (activity.OurRef.Contains("T:") || activity.OurRef.Contains("TLF:"))
{<i class="bi-phone"></i>}

View file

@ -19,7 +19,7 @@
@if (ActivityList.Any())
{
<table class="table table-sm table-bordered table-striped">
<thead class="table-dark">
<thead class="table-light">
<tr class="border-bottom">
<th scope="col">Kunde</th>
<th scope="col">Bynavn</th>

View file

@ -20,7 +20,7 @@
@if (Activities.Any())
{
<table class="table table-sm table-bordered table-striped">
<thead class="table-dark">
<thead class="table-light">
<tr class="border-bottom">
<th scope="col">Kunde</th>
<th scope="col">Bynavn</th>

View file

@ -19,7 +19,7 @@
<div class="report-ledger">
<table class="table table-sm table-bordered table-striped">
@* TABLE HEADER rows *@
<thead class="table-dark">
<thead class="table-light">
<tr class="border-bottom inno-thead">
<th></th>
<th class="text-center" colspan="2" scope="col">Demo: @(ReportDataView.NewDemoCount + ReportDataView.RecallDemoCount)</th>

View file

@ -16,7 +16,7 @@
<div class="distance-ledger">
<table class="table table-sm table-bordered table-striped">
<thead class="table-dark">
<thead class="table-light">
<tr>
<th colspan="2">
Km regnskab

View file

@ -15,7 +15,7 @@
<table class="table table-sm table-bordered table-striped">
<thead>
<tr class="table-dark">
<tr class="table-light">
<th colspan="3">
Rapport
</th>

View file

@ -1,7 +1,7 @@
{
"appInfo": {
"name": "Wonky Online",
"version": "281.0",
"version": "283.0",
"rc": true,
"sandBox": true,
"image": "grumpy-coder.png",