2026-02-14 18:22:42 +01:00
|
|
|
.note-list {
|
2026-02-15 10:34:59 +01:00
|
|
|
background: var(--bg-card);
|
|
|
|
|
color: var(--text-primary);
|
2026-02-14 18:22:42 +01:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow-y: auto;
|
2026-02-15 10:34:59 +01:00
|
|
|
border-right: 1px solid var(--border-primary);
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__header {
|
2026-02-14 21:22:54 +01:00
|
|
|
padding: 14px 16px;
|
2026-02-15 10:34:59 +01:00
|
|
|
border-bottom: 1px solid var(--border-primary);
|
2026-02-14 18:22:42 +01:00
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
2026-02-15 10:00:29 +01:00
|
|
|
-webkit-app-region: drag;
|
|
|
|
|
app-region: drag;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__header button {
|
|
|
|
|
-webkit-app-region: no-drag;
|
|
|
|
|
app-region: no-drag;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__header h3 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
2026-02-15 10:30:13 +01:00
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
flex: 1;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 21:14:16 +01:00
|
|
|
.note-list__header-right {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 18:22:42 +01:00
|
|
|
.note-list__count {
|
2026-02-14 21:22:54 +01:00
|
|
|
font-size: 11px;
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-tertiary);
|
|
|
|
|
background: var(--bg-button);
|
2026-02-14 18:22:42 +01:00
|
|
|
padding: 2px 8px;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 21:14:16 +01:00
|
|
|
.note-list__add-btn {
|
|
|
|
|
width: 24px;
|
|
|
|
|
height: 24px;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 6px;
|
2026-02-15 10:34:59 +01:00
|
|
|
background: var(--bg-button);
|
|
|
|
|
color: var(--text-tertiary);
|
2026-02-14 21:14:16 +01:00
|
|
|
font-size: 16px;
|
|
|
|
|
line-height: 1;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
padding: 0;
|
|
|
|
|
transition: all 0.15s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__add-btn:hover {
|
2026-02-15 10:34:59 +01:00
|
|
|
background: var(--accent-blue);
|
2026-02-14 21:14:16 +01:00
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 19:46:44 +01:00
|
|
|
/* Search */
|
|
|
|
|
.note-list__search {
|
|
|
|
|
padding: 8px 12px;
|
2026-02-15 10:34:59 +01:00
|
|
|
border-bottom: 1px solid var(--border-primary);
|
2026-02-14 19:46:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__search-input {
|
|
|
|
|
width: 100%;
|
2026-02-14 21:22:54 +01:00
|
|
|
padding: 7px 10px;
|
2026-02-15 10:34:59 +01:00
|
|
|
background: var(--bg-input);
|
|
|
|
|
border: 1px solid var(--border-input);
|
2026-02-14 19:46:44 +01:00
|
|
|
border-radius: 6px;
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-primary);
|
2026-02-14 19:46:44 +01:00
|
|
|
font-size: 13px;
|
|
|
|
|
outline: none;
|
|
|
|
|
box-sizing: border-box;
|
2026-02-14 21:22:54 +01:00
|
|
|
transition: border-color 0.15s;
|
2026-02-14 19:46:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__search-input::placeholder {
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-faint);
|
2026-02-14 19:46:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__search-input:focus {
|
2026-02-15 10:34:59 +01:00
|
|
|
border-color: var(--accent-blue);
|
2026-02-14 19:46:44 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 19:48:59 +01:00
|
|
|
/* Type filter pills */
|
|
|
|
|
.note-list__pills {
|
|
|
|
|
display: flex;
|
|
|
|
|
gap: 4px;
|
|
|
|
|
padding: 8px 12px;
|
2026-02-15 10:34:59 +01:00
|
|
|
border-bottom: 1px solid var(--border-primary);
|
2026-02-14 19:48:59 +01:00
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__pill {
|
|
|
|
|
padding: 3px 10px;
|
|
|
|
|
font-size: 11px;
|
2026-02-15 10:34:59 +01:00
|
|
|
border: 1px solid var(--border-primary);
|
2026-02-14 19:48:59 +01:00
|
|
|
border-radius: 12px;
|
|
|
|
|
background: transparent;
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-tertiary);
|
2026-02-14 19:48:59 +01:00
|
|
|
cursor: pointer;
|
|
|
|
|
white-space: nowrap;
|
2026-02-14 21:22:54 +01:00
|
|
|
transition: all 0.15s;
|
2026-02-14 19:48:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__pill:hover {
|
2026-02-15 10:34:59 +01:00
|
|
|
background: var(--bg-button);
|
|
|
|
|
color: var(--text-secondary);
|
2026-02-14 19:48:59 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-15 10:05:19 +01:00
|
|
|
.note-list__pill-count {
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
margin-left: 2px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 19:48:59 +01:00
|
|
|
.note-list__pill--active {
|
2026-02-15 10:34:59 +01:00
|
|
|
background: var(--accent-blue-bg);
|
|
|
|
|
color: var(--accent-blue);
|
|
|
|
|
border-color: var(--accent-blue-bg);
|
2026-02-14 19:48:59 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-15 10:05:19 +01:00
|
|
|
.note-list__pill--active .note-list__pill-count {
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 18:22:42 +01:00
|
|
|
.note-list__items {
|
|
|
|
|
flex: 1;
|
2026-02-14 21:22:54 +01:00
|
|
|
overflow-y: auto;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__empty {
|
2026-02-14 21:22:54 +01:00
|
|
|
padding: 32px 16px;
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-faint);
|
2026-02-14 18:22:42 +01:00
|
|
|
font-size: 13px;
|
|
|
|
|
text-align: center;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 21:22:54 +01:00
|
|
|
/* Note items */
|
2026-02-14 18:22:42 +01:00
|
|
|
.note-list__item {
|
|
|
|
|
padding: 10px 16px;
|
2026-02-15 10:34:59 +01:00
|
|
|
border-bottom: 1px solid var(--border-subtle);
|
2026-02-14 18:22:42 +01:00
|
|
|
cursor: pointer;
|
2026-02-14 21:22:54 +01:00
|
|
|
transition: background 0.1s;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__item:hover {
|
2026-02-15 10:34:59 +01:00
|
|
|
background: var(--bg-hover-subtle);
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 21:22:54 +01:00
|
|
|
.note-list__item-top {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: baseline;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
gap: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 18:22:42 +01:00
|
|
|
.note-list__title {
|
2026-02-14 21:22:54 +01:00
|
|
|
font-size: 13px;
|
|
|
|
|
font-weight: 600;
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-primary);
|
2026-02-14 21:22:54 +01:00
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__date {
|
|
|
|
|
font-size: 11px;
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-faint);
|
2026-02-14 21:22:54 +01:00
|
|
|
flex-shrink: 0;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__snippet {
|
|
|
|
|
font-size: 12px;
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-muted);
|
2026-02-14 21:22:54 +01:00
|
|
|
margin-top: 3px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
line-height: 1.4;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__meta {
|
|
|
|
|
display: flex;
|
2026-02-14 21:22:54 +01:00
|
|
|
gap: 6px;
|
2026-02-14 18:22:42 +01:00
|
|
|
font-size: 11px;
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-tertiary);
|
2026-02-14 21:22:54 +01:00
|
|
|
margin-top: 5px;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 21:22:54 +01:00
|
|
|
/* Type badges with distinct colors */
|
2026-02-14 18:22:42 +01:00
|
|
|
.note-list__type {
|
2026-02-14 21:22:54 +01:00
|
|
|
padding: 1px 7px;
|
2026-02-14 18:22:42 +01:00
|
|
|
border-radius: 3px;
|
2026-02-14 21:22:54 +01:00
|
|
|
font-weight: 500;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
letter-spacing: 0.02em;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__type--project {
|
|
|
|
|
background: rgba(74, 158, 255, 0.15);
|
|
|
|
|
color: #4a9eff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__type--responsibility {
|
|
|
|
|
background: rgba(156, 114, 255, 0.15);
|
|
|
|
|
color: #9c72ff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__type--procedure {
|
|
|
|
|
background: rgba(255, 152, 0, 0.15);
|
|
|
|
|
color: #ff9800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__type--experiment {
|
|
|
|
|
background: rgba(0, 200, 150, 0.15);
|
|
|
|
|
color: #00c896;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__type--note {
|
|
|
|
|
background: rgba(200, 200, 200, 0.1);
|
|
|
|
|
color: #999;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__type--person {
|
|
|
|
|
background: rgba(255, 100, 130, 0.15);
|
|
|
|
|
color: #ff6482;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__type--event {
|
|
|
|
|
background: rgba(255, 200, 50, 0.15);
|
|
|
|
|
color: #e6b800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__type--topic {
|
|
|
|
|
background: rgba(100, 220, 200, 0.15);
|
|
|
|
|
color: #64dcc8;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__status {
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--accent-green);
|
2026-02-14 21:22:54 +01:00
|
|
|
font-size: 10px;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
2026-02-14 19:44:39 +01:00
|
|
|
|
2026-02-15 12:56:28 +01:00
|
|
|
/* Git status indicators */
|
|
|
|
|
.note-list__git-status {
|
|
|
|
|
display: inline-flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
font-size: 10px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
margin-right: 6px;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
font-family: 'SF Mono', 'Menlo', monospace;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__git-status--modified {
|
|
|
|
|
background: rgba(255, 152, 0, 0.15);
|
|
|
|
|
color: #ff9800;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__git-status--added {
|
|
|
|
|
background: rgba(76, 175, 80, 0.15);
|
|
|
|
|
color: #4caf50;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__git-status--deleted {
|
|
|
|
|
background: rgba(244, 67, 54, 0.15);
|
|
|
|
|
color: #f44336;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__git-status--untracked {
|
|
|
|
|
background: rgba(76, 175, 80, 0.15);
|
|
|
|
|
color: #4caf50;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__git-status--renamed {
|
|
|
|
|
background: rgba(33, 150, 243, 0.15);
|
|
|
|
|
color: #2196f3;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 21:22:54 +01:00
|
|
|
/* Selected & pinned states */
|
2026-02-14 20:07:23 +01:00
|
|
|
.note-list__item--selected {
|
2026-02-15 10:34:59 +01:00
|
|
|
background: var(--bg-selected);
|
|
|
|
|
border-left: 3px solid var(--accent-blue);
|
2026-02-14 21:22:54 +01:00
|
|
|
padding-left: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__item--selected:hover {
|
2026-02-15 10:34:59 +01:00
|
|
|
background: var(--bg-selected);
|
2026-02-14 20:07:23 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 19:44:39 +01:00
|
|
|
.note-list__item--pinned {
|
2026-02-15 10:34:59 +01:00
|
|
|
background: var(--bg-hover-subtle);
|
|
|
|
|
border-left: 3px solid var(--accent-green);
|
2026-02-14 19:44:39 +01:00
|
|
|
padding-left: 13px;
|
|
|
|
|
}
|
2026-02-15 10:30:13 +01:00
|
|
|
|
|
|
|
|
/* Relationship groups */
|
|
|
|
|
.note-list__group {
|
2026-02-15 10:34:59 +01:00
|
|
|
border-top: 1px solid var(--border-subtle);
|
2026-02-15 10:30:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__group-header {
|
|
|
|
|
padding: 10px 16px 4px;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__group-label {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
letter-spacing: 0.05em;
|
|
|
|
|
text-transform: uppercase;
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-muted);
|
2026-02-15 10:30:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__group-count {
|
|
|
|
|
font-size: 10px;
|
2026-02-15 10:34:59 +01:00
|
|
|
color: var(--text-faint);
|
|
|
|
|
background: var(--bg-button);
|
2026-02-15 10:30:13 +01:00
|
|
|
padding: 1px 6px;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
}
|