feat: proje temizleme ve bildirim deneyimini iyilestir

This commit is contained in:
2026-03-17 01:09:36 +03:00
parent 6312ebc9e7
commit 2d78b821d0
7 changed files with 148 additions and 15 deletions

View File

@@ -194,6 +194,47 @@
color: var(--accent-red);
}
.toast-stack {
position: absolute;
right: 18px;
bottom: 18px;
z-index: 5;
display: grid;
gap: 10px;
width: min(420px, calc(100vw - 64px));
}
.toast {
display: grid;
gap: 8px;
width: 100%;
padding: 12px 14px;
text-align: left;
border: 3px solid var(--border-dark);
box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.05), var(--shadow-panel);
background: linear-gradient(180deg, rgba(60, 22, 22, 0.98), rgba(18, 8, 8, 0.98));
color: #ffd9d9;
cursor: pointer;
}
.toast--info {
background: linear-gradient(180deg, rgba(18, 52, 55, 0.98), rgba(8, 17, 20, 0.98));
color: #d8feff;
}
.toast__label {
font-family: var(--font-display);
font-size: 0.58rem;
letter-spacing: 0.16em;
color: var(--accent-amber);
}
.toast__message {
font-size: 0.82rem;
line-height: 1.45;
word-break: break-word;
}
.console-grid {
display: grid;
grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.9fr);
@@ -233,6 +274,16 @@
flex-shrink: 0;
}
.chat-panel {
display: flex;
flex-direction: column;
}
.chat-panel .panel-frame__body {
height: 62vh;
min-height: 62vh;
}
.chat-stream,
.team-card__body {
min-height: 420px;
@@ -244,6 +295,12 @@
linear-gradient(180deg, rgba(4, 8, 5, 0.88) 0%, rgba(8, 12, 9, 0.92) 100%);
}
.chat-panel .chat-stream {
height: 100%;
min-height: 100%;
max-height: none;
}
.chat-stream pre,
.team-message pre {
margin: 0;