refactor: Clean up LogList component by removing unused TickIcon; enhance footer and logs styles for better layout and readability

This commit is contained in:
Vishnu 2025-05-02 18:31:00 +05:30
parent 0f41f3f845
commit 78c228aba6
4 changed files with 155 additions and 126 deletions

View File

@ -69,9 +69,6 @@ const LogList: React.FC = () => {
<div className="log-entry-wrapper"> <div className="log-entry-wrapper">
{filteredLogs.map((log) => ( {filteredLogs.map((log) => (
<div key={log.id} className={`log-entry ${log.type}`}> <div key={log.id} className={`log-entry ${log.type}`}>
<div className="tick">
<TickIcon />
</div>
<div className="log-icon">{getLogIcon(log.type)}</div> <div className="log-icon">{getLogIcon(log.type)}</div>
<div className="log-entry-message"> <div className="log-entry-message">
[{formatTimestamp(log.timestamp)}] [{log.type.toUpperCase()}]{" "} [{formatTimestamp(log.timestamp)}] [{log.type.toUpperCase()}]{" "}

View File

@ -22,7 +22,11 @@ $text-button-color-dark: #f3f3fd;
// background colors // background colors
// ---------- light mode ---------- // ---------- light mode ----------
$background-color: linear-gradient(-45deg, #fcfdfd71 0%, #fcfdfd79 100%); $background-color: linear-gradient(-45deg, #fcfdfd71 0%, #fcfdfd79 100%);
$background-color-solid-gradient: linear-gradient(-45deg, #fcfdfd 0%, #fcfdfd 100%); $background-color-solid-gradient: linear-gradient(
-45deg,
#fcfdfd 0%,
#fcfdfd 100%
);
$background-color-solid: #fcfdfd; $background-color-solid: #fcfdfd;
$background-color-secondary: #fcfdfd4d; $background-color-secondary: #fcfdfd4d;
$background-color-accent: #6f42c1; $background-color-accent: #6f42c1;
@ -45,7 +49,11 @@ $background-radial-gray-gradient: radial-gradient(
// ---------- dark mode ---------- // ---------- dark mode ----------
$background-color-dark: linear-gradient(-45deg, #333333b3 0%, #2d2437b3 100%); $background-color-dark: linear-gradient(-45deg, #333333b3 0%, #2d2437b3 100%);
$background-color-solid-gradient-dark: linear-gradient(-45deg, #333333 0%, #2d2437 100%); $background-color-solid-gradient-dark: linear-gradient(
-45deg,
#333333 0%,
#2d2437 100%
);
$background-color-solid-dark: #19191d; $background-color-solid-dark: #19191d;
$background-color-secondary-dark: #19191d99; $background-color-secondary-dark: #19191d99;
$background-color-accent-dark: #6f42c1; $background-color-accent-dark: #6f42c1;
@ -104,6 +112,21 @@ $color3: #b186ff;
$color4: #8752e8; $color4: #8752e8;
$color5: #c7a8ff; $color5: #c7a8ff;
// log indication colors
// ------------ text -------------
$log-default-text-color: #6f42c1;
$log-info-text-color: #488ef6;
$log-warn-text-color: #f3a50c;
$log-error-text-color: #f65648;
$log-success-text-color: #43c06d;
// ------------ background -------------
$log-default-backgroung-color: #6e42c133;
$log-info-background-color: #488ef633;
$log-warn-background-color: #f3a50c33;
$log-error-background-color: #f6564833;
$log-success-background-color: #43c06d33;
// old variables // old variables
$accent-color: #6f42c1; $accent-color: #6f42c1;
$accent-color-dark: #c4abf1; $accent-color-dark: #c4abf1;

View File

@ -1,3 +1,6 @@
@use "../../abstracts/variables" as *;
@use "../../abstracts/mixins" as *;
.footer-wrapper { .footer-wrapper {
position: absolute; position: absolute;
bottom: 0; bottom: 0;
@ -6,7 +9,7 @@
z-index: 1; z-index: 1;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
padding: 12px 24px; padding: 2px 12px;
.selection-wrapper { .selection-wrapper {
display: flex; display: flex;
@ -33,7 +36,6 @@
.logs-detail, .logs-detail,
.version { .version {
border-radius: 12px; border-radius: 12px;
background: var(--background-color); background: var(--background-color);
padding: 3px 6px; padding: 3px 6px;
@ -44,14 +46,22 @@
} }
.logs-detail { .logs-detail {
// background-color: #fff; padding: 2px 12px;
cursor: pointer; cursor: pointer;
.log-icon {
@include flex-center;
}
.log-message {
max-width: 40vw;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
} }
.version { .version {
display: flex; display: flex;
gap: 6px; gap: 6px;
} }
} }
} }

View File

@ -31,7 +31,6 @@
} }
.close { .close {
// transform: scale(1.5);
cursor: pointer; cursor: pointer;
} }
} }
@ -46,7 +45,7 @@
} }
.log-nav.active { .log-nav.active {
background-color: var(--accent-color); background-color: var(--background-color-accent);
color: var(--text-button-color); color: var(--text-button-color);
} }
} }