design
This commit is contained in:
+25
-12
@@ -1,9 +1,9 @@
|
|||||||
:root {
|
:root {
|
||||||
color-scheme: light;
|
color-scheme: light;
|
||||||
/* Neutrals */
|
/* Neutrals */
|
||||||
--bg: #f6f7f9;
|
--bg: #f6f6f6;
|
||||||
--surface: #ffffff;
|
--surface: #fbfbfb;
|
||||||
--surface-subtle: #fbfbfd;
|
--surface-subtle: #f3f3f3;
|
||||||
--fg: #1e2127;
|
--fg: #1e2127;
|
||||||
--muted: #646a75;
|
--muted: #646a75;
|
||||||
--border: #dde1e6;
|
--border: #dde1e6;
|
||||||
@@ -260,8 +260,6 @@ button.icon-button.ghost:hover:not([disabled]) {
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 220px minmax(0, 1fr) 320px;
|
grid-template-columns: 220px minmax(0, 1fr) 320px;
|
||||||
gap: 1.5rem;
|
|
||||||
padding: 0.75rem 1.5rem 1.25rem;
|
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -271,7 +269,6 @@ button.icon-button.ghost:hover:not([disabled]) {
|
|||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 220px minmax(0, 1fr);
|
grid-template-columns: 220px minmax(0, 1fr);
|
||||||
gap: 1.5rem;
|
gap: 1.5rem;
|
||||||
padding: 0.75rem 1.5rem 1.25rem;
|
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
@@ -527,7 +524,7 @@ button.icon-button.ghost:hover:not([disabled]) {
|
|||||||
|
|
||||||
.column + .column {
|
.column + .column {
|
||||||
border-left: 1px solid var(--border);
|
border-left: 1px solid var(--border);
|
||||||
padding-left: 0.6rem;
|
padding-left: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.column-header {
|
.column-header {
|
||||||
@@ -595,8 +592,6 @@ button.icon-button.ghost:hover:not([disabled]) {
|
|||||||
flex: 1;
|
flex: 1;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 0.32rem;
|
|
||||||
padding: 0.35rem 0 0.55rem;
|
|
||||||
min-height: 0;
|
min-height: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -708,6 +703,7 @@ button.icon-button.ghost:hover:not([disabled]) {
|
|||||||
.sidebar {
|
.sidebar {
|
||||||
gap: 0.28rem;
|
gap: 0.28rem;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
|
padding: 1.25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.sidebar-section:first-of-type,
|
.sidebar-section:first-of-type,
|
||||||
@@ -778,6 +774,17 @@ button.icon-button.ghost:hover:not([disabled]) {
|
|||||||
color: currentColor;
|
color: currentColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.documents-panel {
|
||||||
|
padding: 1.25rem 1.25rem 0 1.25rem;
|
||||||
|
background-color: var(--surface);
|
||||||
|
}
|
||||||
|
|
||||||
|
.tags-panel,
|
||||||
|
.correspondents-panel {
|
||||||
|
padding: 1.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
.folder-row.is-drop-target {
|
.folder-row.is-drop-target {
|
||||||
outline: 2px dashed var(--accent);
|
outline: 2px dashed var(--accent);
|
||||||
outline-offset: 2px;
|
outline-offset: 2px;
|
||||||
@@ -825,7 +832,7 @@ button.icon-button.ghost:hover:not([disabled]) {
|
|||||||
|
|
||||||
.documents-panel thead th {
|
.documents-panel thead th {
|
||||||
border-bottom: 1px solid var(--border);
|
border-bottom: 1px solid var(--border);
|
||||||
background-color: var(--bg);
|
background-color: var(--surface);
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
@@ -1029,6 +1036,8 @@ button.icon-button.ghost:hover:not([disabled]) {
|
|||||||
|
|
||||||
.detail-panel {
|
.detail-panel {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
padding: 1.25rem;
|
||||||
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detail-panel .column-body {
|
.detail-panel .column-body {
|
||||||
@@ -1036,7 +1045,7 @@ button.icon-button.ghost:hover:not([disabled]) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.detail-panel .column-body.scrollable {
|
.detail-panel .column-body.scrollable {
|
||||||
overflow-y: auto;
|
overflow: visible;
|
||||||
}
|
}
|
||||||
|
|
||||||
.detail-actions {
|
.detail-actions {
|
||||||
@@ -1389,6 +1398,7 @@ form.inline {
|
|||||||
}
|
}
|
||||||
.detail-panel {
|
.detail-panel {
|
||||||
grid-column: 1 / -1;
|
grid-column: 1 / -1;
|
||||||
|
padding: 1.25rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1403,8 +1413,11 @@ form.inline {
|
|||||||
}
|
}
|
||||||
.sidebar,
|
.sidebar,
|
||||||
.documents-panel,
|
.documents-panel,
|
||||||
.detail-panel {
|
.detail-panel,
|
||||||
|
.tags-panel,
|
||||||
|
.correspondents-panel {
|
||||||
min-height: auto;
|
min-height: auto;
|
||||||
|
padding: 1.25rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.login-screen {
|
.login-screen {
|
||||||
|
|||||||
Reference in New Issue
Block a user