mirror of
https://github.com/zotero/zotero.git
synced 2026-09-26 01:11:23 +00:00
- Rollback all redundant changes made in the last few months - Introduce `contextPane` - Show child notes in the notes pane - Fix splitter styling - Various bug fixes - Fix contextPane switching and states persistence - Persist reader sidebar open/close state - Fix bottom pane placeholder updating concurrency issues - Fix toolbar placeholder width updating - Display titles for split button - Fix toolbar position when switching tabs - Add PDF tab loading cover - Improve notes and citations insertion - Clean up and refactor code - Fixes and cleanups to PDF reader
80 lines
1 KiB
SCSS
80 lines
1 KiB
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;
|
|
|
|
.icon {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.title {
|
|
flex-grow: 1;
|
|
width: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-left: 8px;
|
|
}
|
|
}
|
|
|
|
.second-line {
|
|
display: flex;
|
|
|
|
.title {
|
|
flex-grow: 1;
|
|
width: 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
font-weight: bold;
|
|
}
|
|
}
|
|
|
|
.third-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;
|
|
}
|
|
}
|
|
}
|
|
}
|