Skip to content

Commit

Permalink
fix: light mode for podman machine details page (podman-desktop#7889)
Browse files Browse the repository at this point in the history
* fix: light mode for podman machine details page

Signed-off-by: lstocchi <[email protected]>

* fix: move custom bg to detailsLog component

Signed-off-by: lstocchi <[email protected]>

---------

Signed-off-by: lstocchi <[email protected]>
  • Loading branch information
lstocchi authored Jul 3, 2024
1 parent d32ad73 commit 6344a81
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ onDestroy(() => {
title="No Log"
message="Log output"
hidden="{noLogs === false}"
style="background-color: {getPanelDetailColor()}" />
class="bg-[var(--pd-details-bg)]" />

<div
aria-label="terminal"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ $: providerContainerConfiguration = tmpProviderContainerConfiguration.filter(
);
</script>

<div class="h-full text-[var(--pd-table-body-text)]">
<div class="h-full text-[var(--pd-details-body-text)]">
{#if containerConnectionInfo}
{@const peerProperties = new PeerProperties()}
<div class="flex pl-8 py-4 flex-col w-full text-sm">
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/lib/layouts/DetailsPage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function handleKeydown(e: KeyboardEvent): void {

<svelte:window on:keydown="{handleKeydown}" />

<div class="flex flex-col w-full h-full shadow-pageheader">
<div class="flex flex-col w-full h-full shadow-pageheader bg-[var(--pd-content-bg)]">
<div class="flex flex-row w-full h-fit px-5 pt-4 pb-2">
<div class="flex flex-col w-full h-fit">
<div class="flex flew-row items-center text-sm text-[var(--pd-content-breadcrumb)]">
Expand Down

0 comments on commit 6344a81

Please sign in to comment.