Skip to content
Snippets Groups Projects
Commit 3597169f authored by OZGCloud's avatar OZGCloud
Browse files

Merge branch 'master' of git.ozg-sh.de:mgm/goofy

parents 40844cf0 91f5a695
Branches
Tags
No related merge requests found
Showing
with 44 additions and 8 deletions
......@@ -49,6 +49,8 @@ describe('VorgangList Wiedervorlagen Next Frist', () => {
mouseEnter(vorgang.getWiedervorlageNextFrist());
exist(vorgang.getWiedervorlageNextFrist());
vorgang.getWiedervorlageNextFrist().trigger('mouseleave'); // fix for next test
})
it('should show next frist in the past and list', () => {
......
<html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>silent refresh</title>
</head>
<body>
<script>
(window.opener || window.parent).postMessage(location.hash || ('#' + location.search), location.origin);
......
<table>
<table aria-label="Antragstellerdaten">
<tr>
<th scope="col">Formularfeld</th>
<th scope="col">Formulareingabe</th>
</tr>
<tr>
<td class="key">Anrede</td>
<td class="value">{{ antragsteller.anrede }}</td>
......
<table>
<table aria-label="Eingangsdaten">
<tr>
<th scope="col">Formularfeld</th>
<th scope="col">Formulareingabe</th>
</tr>
<tr>
<td class="key">Erstellungsdatum</td>
<td class="value">{{ eingangHeader.createdAt }}</td>
......
<table>
<table aria-label="Formulardaten">
<tr>
<th scope="col">Formularfeld</th>
<th scope="col">Formulareingabe</th>
</tr>
<tr *ngFor="let row of formData | keyvalue: objectToBottom">
<td colspan="2" *ngIf="isObject(row.value); else keyValueEntry">
......
......@@ -18,3 +18,7 @@ td {
.value {
word-break: break-word;
}
th {
display: none;
}
......@@ -13,5 +13,5 @@ button {
}
.red:not(.erledigt) {
color: mat-color($warnPalette);
color: mat-color($warnPalette, darker);
}
<div *ngIf="wiedervorlagenStateResource$ | async as wiedervorlagenStateResource" class="foreground">
<table>
<table aria-label="Wiedervorlagenliste">
<tr>
<th scope="col">Wiedervorlage</th>
<th scope="col"><span>Status</span></th>
<th scope="col">Frist</th>
</tr>
<tr *ngFor="let wiedervorlageResource of wiedervorlagenStateResource.resource">
<td class="name" data-test-class="betreff">{{ wiedervorlageResource.betreff }}</td>
<td>
......
......@@ -36,11 +36,19 @@
width: 72px;
}
td {
td,
th {
margin: 0;
padding: 4px;
}
th {
text-align: left;
span {
display: none;
}
}
table {
border-collapse: collapse;
border-spacing: 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment