Skip to content

Commit

Permalink
insert okr-form-label-input-container
Browse files Browse the repository at this point in the history
  • Loading branch information
kcinay055679 committed Nov 4, 2024
1 parent 88b742b commit 6d3ee12
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label for="actionlist" class="okr-form-label">Action Plan (optional)</label>
<div
cdkDropList
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="value">Neuer Wert</label>
<div class="col">
<form [formGroup]="dialogForm" class="okr-form-row align-items-center">
Expand All @@ -20,7 +20,7 @@
</mat-error>
</div>

<div *ngIf="checkIn.value" class="okr-form-row">
<div *ngIf="checkIn.value" class="okr-form-row okr-form-label-input-container">
<p class="okr-form-label okr-form-col">Letzter Wert</p>
<div class="okr-form-col text-black">
<div class="bg-display-element w-100 px-2 py-1">{{ checkIn.value }} {{ generateUnitLabel() }}</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<form [formGroup]="dialogForm">
<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="ordinal-radio-group">Erreichte Zone wählen:</label>
<mat-radio-group formControlName="value" class="d-flex flex-column gap-2" id="ordinal-radio-group">
<mat-radio-button [attr.data-testId]="'fail-radio'" value="{{ Zone.FAIL }}" class="ordinal-zone">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<app-dialog-template-core [title]="getDialogTitle()">
<ng-container content>
<form [formGroup]="dialogForm">
<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<h4 class="okr-form-label okr-form-col">Key Result</h4>
<p class="okr-form-label okr-form-col linebreak bg-display-element fs-6 fw-normal">{{ keyResult.title }}</p>
</div>

<div *ngIf="getActions().length > 0" class="okr-form-row">
<div *ngIf="getActions().length > 0" class="okr-form-row okr-form-label-input-container">
<p class="okr-form-label okr-form-col">Action Plan:</p>
<div class="col">
<span *ngFor="let action of getActions(); let i = index" class="okr-form-row">
Expand All @@ -22,7 +22,7 @@ <h4 class="okr-form-label okr-form-col">Key Result</h4>
</div>
</div>

<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="changeInfo"
>Kommentar/ Veränderung seit letztem Check-in (optional):</label
>
Expand Down Expand Up @@ -53,7 +53,7 @@ <h4 class="okr-form-label okr-form-col">Key Result</h4>
[keyResult]="getKeyResultOrdinal()"
></app-check-in-form-ordinal>

<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="initiatives">Massnahmen (optional):</label>
<div class="okr-form-input">
<textarea
Expand All @@ -69,7 +69,7 @@ <h4 class="okr-form-label okr-form-col">Key Result</h4>
</div>
</div>

<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<p class="okr-form-label okr-form-col confidence-label">
Confidence um Target Zone
<span *ngIf="keyResult.keyResultType === 'metric' && getKeyResultMetric() as kr">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<form [formGroup]="keyResultForm">
<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="title">Titel</label>
<div class="okr-form-input">
<textarea
Expand All @@ -21,7 +21,7 @@
[keyResultForm]="keyResultForm"
></app-keyresult-type>

<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="owner">Owner</label>
<div class="okr-form-input">
<input
Expand All @@ -44,7 +44,7 @@
</div>
</div>

<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="description">Beschreibung (optional)</label>
<div class="okr-form-input">
<textarea
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ <h4 class="okr-form-label okr-form-col">Objective</h4>
</div>

<form [formGroup]="completeForm">
<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<p class="okr-form-label okr-form-col">Bewertung</p>
<div class="okr-form-row mx-0">
<button
Expand Down Expand Up @@ -38,7 +38,7 @@ <h4 class="okr-form-label okr-form-col">Objective</h4>
</div>
</div>

<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="comment">Kommentar (optional)</label>
<div class="okr-form-input">
<textarea
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<app-dialog-template-core [title]="getDialogTitle((this.currentTeam | async)?.name || '')">
<ng-container content>
<form [formGroup]="objectiveForm">
<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="title">Titel</label>
<div class="okr-form-input">
<textarea
Expand All @@ -17,7 +17,7 @@
</div>
</div>

<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="title">Beschreibung (optional)</label>
<div class="okr-form-input">
<textarea
Expand All @@ -34,7 +34,7 @@

<div class="okr-form-row row-cols-1 row-cols-md-2 gx-2">
<div class="col">
<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="quarter">Quartal</label>
<div class="okr-form-input pe-5">
<select
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<app-dialog-template-core [title]="getDialogTitle()">
<ng-container content>
<form [formGroup]="teamForm">
<div class="okr-form-row">
<div class="okr-form-row okr-form-label-input-container">
<label class="okr-form-label okr-form-col" for="name">Teamname</label>
<div class="okr-form-input">
<input
Expand Down

0 comments on commit 6d3ee12

Please sign in to comment.