Skip to content

Commit

Permalink
Run prettier & Dark mode fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jggoebel committed Apr 4, 2024
1 parent dbc1ed1 commit 2465894
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/app/hf-markdown/hf-markdown.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,6 @@ ${token}`;
// Return a placeholder with the unique ID
return `<div id="${containerId}">Loading mermaid graph...</div>`;
},

};

private renderHighlightedCode(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<cds-icon
shape="angle"
[ngClass]="detailsOpen ? 'down' : 'sideways'"
inverse
></cds-icon>
Verify: {{ taskName }} on {{ target }}
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/app/scenario/task-modal/task-modal.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h3 class="modal-title">Task Progress:</h3>
*ngIf="!loading; else loadingSpinner"
>
<clr-accordion-panel *ngFor="let task of tasks">
<clr-accordion-title style="width: 100%">
<clr-accordion-title style="width: 100%" inverse>
<div
style="display: flex; justify-content: space-between; width: 100%"
>
Expand Down
4 changes: 2 additions & 2 deletions src/app/scenario/task-modal/task-modal.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
font-family: Montserrat, Avenir Next, Arial, sans-serif;
}

clr-icon.accordion-icon {
position: absolute;
cds-icon.clr-accordion-angle {
fill: var(--clr-icon-color-inverse);
}
4 changes: 4 additions & 0 deletions src/dark-theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -562,6 +562,10 @@ cds-icon {
color: white;
}

cds-icon.clr-accordion-angle {
fill: var(--clr-icon-color-inverse);
}

cds-icon {
&[status='success'] {
fill: var(--clr-icon-color-success);
Expand Down

0 comments on commit 2465894

Please sign in to comment.