ux: plan mode moved
This commit is contained in:
+198
-22
@@ -105,7 +105,7 @@ body::before {
|
||||
|
||||
.chat-rail-content {
|
||||
display: grid;
|
||||
grid-template-rows: minmax(0, 1fr) minmax(140px, 34%);
|
||||
grid-template-rows: minmax(0, 1fr) minmax(92px, 20%) minmax(130px, 30%);
|
||||
gap: 16px;
|
||||
min-height: 0;
|
||||
padding-top: 16px;
|
||||
@@ -131,8 +131,41 @@ body::before {
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.rail-heading-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
.rail-heading-row .rail-heading {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.rail-icon-button {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
width: 28px;
|
||||
min-width: 28px;
|
||||
height: 28px;
|
||||
padding: 0;
|
||||
border: 1px solid var(--line-strong);
|
||||
border-radius: 8px;
|
||||
background: #fff9e9;
|
||||
color: var(--forest);
|
||||
box-shadow: 0 8px 18px rgba(38, 58, 27, 0.08);
|
||||
}
|
||||
|
||||
.rail-icon-button svg {
|
||||
width: 15px;
|
||||
height: 15px;
|
||||
}
|
||||
|
||||
.chat-list,
|
||||
.inbox-list {
|
||||
.inbox-list,
|
||||
.plans-rail-list {
|
||||
display: grid;
|
||||
gap: 8px;
|
||||
max-height: calc(100% - 26px);
|
||||
@@ -140,7 +173,8 @@ body::before {
|
||||
}
|
||||
|
||||
.chat-item,
|
||||
.inbox-item {
|
||||
.inbox-item,
|
||||
.plan-rail-item {
|
||||
display: grid;
|
||||
align-items: center;
|
||||
gap: 6px;
|
||||
@@ -159,13 +193,33 @@ body::before {
|
||||
grid-template-columns: minmax(0, 1fr) auto auto;
|
||||
}
|
||||
|
||||
.plan-rail-item {
|
||||
grid-template-columns: minmax(0, 1fr) auto;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
border: 1px solid var(--line);
|
||||
background: rgba(255, 250, 240, 0.78);
|
||||
color: var(--brown);
|
||||
font-family: Inter, "Segoe UI", Arial, sans-serif;
|
||||
text-align: left;
|
||||
box-shadow: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.plan-rail-item:hover {
|
||||
background: #edf3df;
|
||||
color: var(--brown);
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.chat-item.active {
|
||||
border-color: rgba(52, 83, 38, 0.42);
|
||||
background: #edf3df;
|
||||
}
|
||||
|
||||
.chat-title,
|
||||
.inbox-title {
|
||||
.inbox-title,
|
||||
.plan-rail-title {
|
||||
min-width: 0;
|
||||
overflow: hidden;
|
||||
color: var(--brown);
|
||||
@@ -198,6 +252,22 @@ body::before {
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
.plan-rail-title {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.plan-rail-status {
|
||||
min-width: 0;
|
||||
padding: 3px 6px;
|
||||
border: 1px solid rgba(52, 83, 38, 0.2);
|
||||
border-radius: 999px;
|
||||
background: #edf3df;
|
||||
color: var(--forest);
|
||||
font-size: 10px;
|
||||
font-weight: 800;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.actions {
|
||||
padding: 28px;
|
||||
overflow: auto;
|
||||
@@ -230,6 +300,10 @@ body::before {
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.brand-short {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.logo-wrap {
|
||||
position: relative;
|
||||
display: grid;
|
||||
@@ -869,6 +943,26 @@ button {
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.floating-panel-actions {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.plans-floating-panel {
|
||||
grid-template-rows: auto minmax(0, 1fr);
|
||||
width: min(680px, calc(100vw - 28px));
|
||||
}
|
||||
|
||||
.plans-panel-body {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
|
||||
gap: 16px;
|
||||
min-height: 0;
|
||||
padding: 16px;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background: linear-gradient(180deg, #3d612c, #263e1b);
|
||||
box-shadow: 0 18px 34px rgba(31, 52, 22, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
|
||||
@@ -926,8 +1020,10 @@ button.secondary {
|
||||
|
||||
.sidebar-tool-buttons {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: flex-end;
|
||||
width: 100%;
|
||||
min-width: 0;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
@@ -935,9 +1031,10 @@ button.secondary {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex: 0 1 42px;
|
||||
gap: 0;
|
||||
width: 42px;
|
||||
min-width: 42px;
|
||||
min-width: 36px;
|
||||
min-height: 42px;
|
||||
padding: 9px;
|
||||
overflow: hidden;
|
||||
@@ -951,6 +1048,7 @@ button.secondary {
|
||||
white-space: nowrap;
|
||||
box-shadow: 0 10px 22px rgba(38, 58, 27, 0.08);
|
||||
transition:
|
||||
flex-basis 180ms ease,
|
||||
width 180ms ease,
|
||||
gap 180ms ease,
|
||||
padding 180ms ease,
|
||||
@@ -963,6 +1061,7 @@ button.secondary {
|
||||
|
||||
.sidebar-tool-button:hover,
|
||||
.sidebar-tool-button:focus-visible {
|
||||
flex-basis: 108px;
|
||||
width: 108px;
|
||||
gap: 7px;
|
||||
padding-inline: 12px;
|
||||
@@ -1411,8 +1510,17 @@ pre {
|
||||
}
|
||||
|
||||
@media (max-width: 620px) {
|
||||
body {
|
||||
background: var(--cream);
|
||||
}
|
||||
|
||||
body::before {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.shell {
|
||||
gap: 14px;
|
||||
grid-template-rows: minmax(0, 1fr) minmax(220px, 34vh);
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
@@ -1421,40 +1529,104 @@ pre {
|
||||
border-radius: 22px;
|
||||
}
|
||||
|
||||
.chat-rail {
|
||||
position: fixed;
|
||||
inset: 10px auto auto 10px;
|
||||
z-index: 10;
|
||||
width: min(320px, calc(100vw - 20px));
|
||||
height: calc(100vh - 20px);
|
||||
max-height: calc(100vh - 20px);
|
||||
}
|
||||
|
||||
.chat-rail.collapsed {
|
||||
width: 48px;
|
||||
height: 48px;
|
||||
min-height: 48px;
|
||||
max-height: 48px;
|
||||
padding: 4px;
|
||||
border: 0;
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.chat-rail.collapsed .chat-rail-top {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.chat-rail.collapsed #new-chat {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.topbar {
|
||||
align-items: flex-start;
|
||||
grid-template-columns: 1fr;
|
||||
padding: 22px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
min-height: 68px;
|
||||
padding: 10px 58px 10px 66px;
|
||||
border-bottom-color: var(--line);
|
||||
background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
|
||||
}
|
||||
|
||||
.brand-block {
|
||||
align-items: flex-start;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 9px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.logo-wrap {
|
||||
width: 58px;
|
||||
height: 58px;
|
||||
flex-basis: 58px;
|
||||
border-radius: 18px;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
flex: 0 0 28px;
|
||||
border: 0;
|
||||
border-radius: 0;
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
color: var(--brown);
|
||||
}
|
||||
|
||||
.logo-wrap::before {
|
||||
content: "";
|
||||
display: block;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
background: currentColor;
|
||||
-webkit-mask: url("/static/art/LBC_Logo.png") center / contain no-repeat;
|
||||
mask: url("/static/art/LBC_Logo.png") center / contain no-repeat;
|
||||
}
|
||||
|
||||
.logo-wrap img {
|
||||
width: 45px;
|
||||
height: 45px;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.brand-copy {
|
||||
display: contents;
|
||||
}
|
||||
|
||||
.brand-copy p,
|
||||
.status {
|
||||
display: none;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 31px;
|
||||
color: var(--brown);
|
||||
font-size: 22px;
|
||||
line-height: 1;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
.eyebrow {
|
||||
font-size: 10px;
|
||||
letter-spacing: 0.08em;
|
||||
.brand-short {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
color: var(--brown);
|
||||
font-family: "Playfair Display", Georgia, serif;
|
||||
font-size: 18px;
|
||||
font-weight: 800;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.messages,
|
||||
.actions,
|
||||
.chat-rail {
|
||||
.actions {
|
||||
padding: 22px;
|
||||
}
|
||||
|
||||
@@ -1484,4 +1656,8 @@ pre {
|
||||
.message-phase {
|
||||
grid-column: 1;
|
||||
}
|
||||
|
||||
.plans-panel-body {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user