Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Styling FF overview page #1677

Merged
merged 1 commit into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<div class="content-section">
<div *ngFor="let item of data | keyvalue: noSort">
<div class='item-key-value'>
<span class="ft-16-600 item-key">{{ item.key }}:</span>
<div class="item-key-value">
<span class="ft-14-600 item-key">{{ item.key }}:</span>
<ng-container *ngIf="item.key !== 'Tags'; else chipSection">
<span class="ft-16-500 item-value">{{ item.value }}</span>
<span class="ft-14-400 item-value">{{ item.value }}</span>
</ng-container>

<ng-template #chipSection>
<mat-chip-list>
<mat-chip *ngFor="let tag of item.value" class="chip">{{ tag }}</mat-chip>
<mat-chip *ngFor="let tag of item.value" class="ft-12-400 chip">{{ tag }}</mat-chip>
</mat-chip-list>
</ng-template>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
color: var(--dark-grey);
}

.chip{
.chip {
margin-right: 5px;
height: 24px;
}
}
Original file line number Diff line number Diff line change
@@ -1,28 +1,24 @@
<div class="title-header">
<h1 class="title ft-26-700">
{{ title | translate }} &nbsp;<span *ngIf="tableRowCount > 0">
({{ tableRowCount }})
</span>
<h1 class="title ft-18-700">
{{ title | translate }} &nbsp;<span *ngIf="tableRowCount > 0"> ({{ tableRowCount }}) </span>
<ng-container *ngIf="chipClass">
<app-common-status-indicator-chip class="status-chip" [chipClass] = "chipClass" ></app-common-status-indicator-chip>
<app-common-status-indicator-chip class="status-chip" [chipClass]="chipClass"></app-common-status-indicator-chip>
</ng-container>
</h1>
<h3 class="subtitle ft-16-400">
<h3 class="subtitle ft-14-400">
<ng-container *ngIf="subtitle">
{{ subtitle | translate }}
</ng-container>
<ng-container *ngIf="createdAt && updatedAt">
<span class="ft-16-600 segment-create-date">
{{ ('home.view-experiment.created-on.text' | translate) + (createdAt | formatDate: 'medium date') + ' | '}}
<span class="ft-14-400 date">
{{ ('home.view-experiment.created-on.text' | translate) + (createdAt | formatDate: 'medium date') + ' | ' }}
</span>
<span class="ft-16-600 segment-update-date">
{{
('home.view-experiment.last-updated-on.text' | translate) + (updatedAt | formatDate: 'short date')
}}
<span class="ft-14-400 date">
{{ ('home.view-experiment.last-updated-on.text' | translate) + (updatedAt | formatDate: 'short date') }}
</span>
</ng-container>
<ng-container *ngIf="showViewLogs">
<a [href]="" class="view-logs-link" (click)="viewLogsClicked()"> View logs</a>
<a [href]="" class="view-logs-link ft-14-400" (click)="viewLogsClicked()"> View logs</a>
</ng-container>
</h3>
</div>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,12 @@
text-decoration: underline;
cursor: pointer;
}
}

.date {
color: rgba(100, 110, 123, 1);
}

.view-logs-link {
font-size: 14px;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,15 @@
}

::ng-deep .status-indicator.enabled {
--mdc-chip-label-text-color: green;
border: 1px solid green;
// --mdc-chip-label-text-color: green;
--mdc-chip-label-text-color: rgba(51, 102, 255, 1);
border: 1px solid rgba(51, 102, 255, 1);
}

::ng-deep .status-indicator.disabled {
--mdc-chip-label-text-color: red;
border: 1px solid red;
// --mdc-chip-label-text-color: red;
--mdc-chip-label-text-color: rgba(255, 153, 51, 1);
border: 1px solid rgba(255, 153, 51, 1);
}

::ng-deep .status-indicator.draft {
Expand Down Expand Up @@ -65,4 +67,4 @@
::ng-deep .status-indicator.scheduled {
--mdc-chip-label-text-color: blue;
border: 1px solid blue;
}
}
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
<div class="tabbed-footer">
<div>
<mat-tab-group
mat-stretch-tabs="false"
mat-align-tabs="start"
animationDuration="0ms"
(selectedTabChange)="onSelectedTabChange($event)"
>
<mat-tab class="footer-tab" *ngFor="let label of tabLabels" [label]="label"></mat-tab>
<mat-tab *ngFor="let label of tabLabels">
<ng-template mat-tab-label>
<span class="ft-18-600">
{{ label }}
</span>
</ng-template>
</mat-tab>
</mat-tab-group>
</div>
Loading