css structural fixes

This commit is contained in:
Patrick Haßel 2024-10-24 15:37:04 +02:00
parent 7dd72ea286
commit 76405329f8
16 changed files with 34 additions and 20 deletions

View File

@ -1,3 +1,5 @@
@import "../common.less";
#mainMenu {
border-bottom: 1px solid black;

View File

@ -1,2 +0,0 @@
@import "../../../../tile.less";
@import "../../user/user.less";

View File

@ -1 +1 @@
@import "../numbers-common.less";
@import "../../../../../common.less";

View File

@ -1 +1 @@
@import "../numbers-common.less";
@import "../../../../../common.less";

View File

@ -1,20 +1,10 @@
<table>
<tr>
<th>Typ</th>
<th>Titel</th>
<th>Besitzer</th>
<th>Erstellt</th>
<th>Teilnehmer</th>
</tr>
<tr *ngFor="let session of sessions" (click)="numbersSessionService.goto(session)">
<td>{{ session.typeDisplayName }}</td>
<td>{{ session.title }}</td>
<td class="user" (click)="userService.goto(session.owner)">{{ session.owner.name }}</td>
<td>{{ session.created | date:'yyyy-MM-dd hh:mm' }}</td>
<td>
<div class="user" *ngFor="let user of session.users" (click)="userService.goto(user)">
{{ user.name }}
</div>
</td>
<td class="title">{{ session.title }}</td>
<td class="users">{{ session.users.length }}</td>
</tr>
</table>

View File

@ -1 +1,13 @@
@import "../../numbers-common.less";
@import "../../../../../../common.less";
td {
border: 1px solid black;
}
.title {
}
.users {
text-align: center;
}

View File

@ -1,3 +1,5 @@
@import "../../../../../common.less";
@page {
size: A4;
margin: 10mm;

View File

@ -1,4 +1,4 @@
@import "../../../../tile.less";
@import "../../../../common.less";
.name {
text-align: left;

View File

@ -1,4 +1,4 @@
@import "../../../../tile.less";
@import "../../../../common.less";
#VoltageDropInputs {

View File

@ -1,4 +1,6 @@
<ng-container *ngIf="user !== null">
<h2>Benutzer: {{ user.name }}</h2>
<h3>Gemeinsame Sitzungen</h3>
<app-session-list [sessions]="user.commonSessions"></app-session-list>
</ng-container>

View File

@ -0,0 +1 @@
@import "../../../common.less";

View File

@ -0,0 +1 @@
@import "../../../common.less";

View File

@ -0,0 +1,2 @@
@import "./tile.less";
@import "./user.less";

View File

@ -1,3 +1,5 @@
@import "./common.less";
body {
font-family: sans-serif;
font-size: 4vw;

View File

@ -1,4 +1,4 @@
@import "config.less";
@import "./config.less";
.tileContainer {
padding: @halfSpace;

View File

@ -1,3 +1,5 @@
@import "./config.less";
.user {
float: left;
padding: @halfSpace;