2026-02-14 18:22:42 +01:00
|
|
|
.note-list {
|
|
|
|
|
background: #16162a;
|
|
|
|
|
color: #e0e0e0;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
border-right: 1px solid #2a2a4a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__header {
|
2026-02-14 21:22:54 +01:00
|
|
|
padding: 14px 16px;
|
2026-02-14 18:22:42 +01:00
|
|
|
border-bottom: 1px solid #2a2a4a;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__header h3 {
|
|
|
|
|
margin: 0;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
color: #777;
|
2026-02-14 18:22:42 +01:00
|
|
|
background: #2a2a4a;
|
|
|
|
|
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;
|
|
|
|
|
background: #2a2a4a;
|
|
|
|
|
color: #888;
|
|
|
|
|
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 {
|
|
|
|
|
background: #4a9eff;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-14 19:46:44 +01:00
|
|
|
/* Search */
|
|
|
|
|
.note-list__search {
|
|
|
|
|
padding: 8px 12px;
|
|
|
|
|
border-bottom: 1px solid #2a2a4a;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__search-input {
|
|
|
|
|
width: 100%;
|
2026-02-14 21:22:54 +01:00
|
|
|
padding: 7px 10px;
|
2026-02-14 19:46:44 +01:00
|
|
|
background: #1e1e3a;
|
|
|
|
|
border: 1px solid #2a2a4a;
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
color: #e0e0e0;
|
|
|
|
|
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-14 21:22:54 +01:00
|
|
|
color: #555;
|
2026-02-14 19:46:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__search-input:focus {
|
2026-02-14 21:22:54 +01:00
|
|
|
border-color: #4a9eff;
|
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;
|
|
|
|
|
border-bottom: 1px solid #2a2a4a;
|
|
|
|
|
flex-wrap: wrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__pill {
|
|
|
|
|
padding: 3px 10px;
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
border: 1px solid #2a2a4a;
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
background: transparent;
|
2026-02-14 21:22:54 +01:00
|
|
|
color: #777;
|
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 {
|
|
|
|
|
background: #2a2a4a;
|
2026-02-14 21:22:54 +01:00
|
|
|
color: #ccc;
|
2026-02-14 19:48:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__pill--active {
|
2026-02-14 21:22:54 +01:00
|
|
|
background: #4a9eff;
|
2026-02-14 19:48:59 +01:00
|
|
|
color: #ffffff;
|
2026-02-14 21:22:54 +01:00
|
|
|
border-color: #4a9eff;
|
2026-02-14 19:48:59 +01:00
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
color: #555;
|
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-14 21:22:54 +01:00
|
|
|
border-bottom: 1px solid rgba(42, 42, 74, 0.5);
|
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 {
|
|
|
|
|
background: #1e1e3a;
|
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
color: #e0e0e0;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
flex: 1;
|
|
|
|
|
min-width: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__date {
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
color: #555;
|
|
|
|
|
flex-shrink: 0;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__snippet {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #666;
|
|
|
|
|
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;
|
|
|
|
|
color: #888;
|
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-14 21:22:54 +01:00
|
|
|
color: #4caf50;
|
|
|
|
|
font-size: 10px;
|
2026-02-14 18:22:42 +01:00
|
|
|
}
|
2026-02-14 19:44:39 +01:00
|
|
|
|
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-14 21:22:54 +01:00
|
|
|
background: #24244a;
|
|
|
|
|
border-left: 3px solid #4a9eff;
|
|
|
|
|
padding-left: 13px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.note-list__item--selected:hover {
|
|
|
|
|
background: #28284e;
|
2026-02-14 20:07:23 +01:00
|
|
|
}
|
|
|
|
|
|
2026-02-14 19:44:39 +01:00
|
|
|
.note-list__item--pinned {
|
|
|
|
|
background: #1e1e3a;
|
2026-02-14 21:22:54 +01:00
|
|
|
border-left: 3px solid #4caf50;
|
2026-02-14 19:44:39 +01:00
|
|
|
padding-left: 13px;
|
|
|
|
|
}
|