mirror of
https://github.com/zotero/zotero.git
synced 2026-09-23 00:43:17 +00:00
- Revert `notesList` to standalone notes mode only - Fix splitter styling on Windows - Fix `contextPane` performance fixes - Add a customizable throttle function to `Zotero.Utilities` - Fix reader tab selection issues - Improve error handling in the new editor - Update pdf-reader and zotero-note-editor submodules - Fix contextPane child notes list - Properly notify editor about new images - Fix note title and body snippet extraction - Persist right-hand pane state when switching tab - Hopefully fix two panes visible at the same time
62 lines
815 B
SCSS
62 lines
815 B
SCSS
.notes-list-container {
|
|
display: flex;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.notes-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 0;
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.note-row {
|
|
padding: 8px 12px;
|
|
|
|
&:not(:last-child) {
|
|
border-bottom: 1px solid $shade-3;
|
|
}
|
|
|
|
&:active {
|
|
background: #e2e2e2;
|
|
}
|
|
|
|
.inner {
|
|
> *:not(:first-child) {
|
|
margin-top: 3px;
|
|
}
|
|
|
|
.first-line {
|
|
display: flex;
|
|
|
|
.title {
|
|
flex-grow: 1;
|
|
width: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.second-line {
|
|
display: flex;
|
|
|
|
.date {
|
|
color: $shade-6;
|
|
}
|
|
|
|
.body {
|
|
flex-grow: 1;
|
|
width: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-left: 10px;
|
|
color: $shade-6;
|
|
}
|
|
}
|
|
}
|
|
}
|