zotero/scss/components/_notesList.scss

139 lines
2 KiB
SCSS
Raw Normal View History

2020-11-03 16:29:51 +00:00
.notes-list-container {
display: flex;
width: 100%;
overflow-y: auto;
flex-grow: 1;
background: #d2d8e2;
border-top: 1px solid lightgray;
2020-11-03 16:29:51 +00:00
}
.notes-list {
display: flex;
flex-direction: column;
height: 0;
flex-grow: 1;
padding-top: 2px;
& > section {
margin: 5px 0;
}
}
.header-row {
margin: 0 7px;
display: flex;
justify-content: space-between;
height: 24px;
h2 {
font-weight: bold;
margin: 0;
font-size: 13px;
align-self: center;
}
button {
height: 24px;
padding-left: 4px;
padding-right: 4px;
// Necessary on linux to horizontaly center text
line-height: 0;
}
}
.empty-row {
2021-02-25 11:05:55 +00:00
margin: 4px 7px 0;
text-align: center;
2020-11-03 16:29:51 +00:00
}
.note-row {
border: 1px solid #bcc4d2;
border-radius: 5px;
margin: 4px 7px;
background-color: #fff;
&:active {
2021-02-25 11:05:55 +00:00
background: #eef1f8;
}
2020-11-03 16:29:51 +00:00
.inner {
> *:not(:first-child) {
margin-top: 3px;
}
.parent-line {
2020-11-03 16:29:51 +00:00
display: flex;
width: calc(100% - 16px);
border-bottom: 1px solid #d7dad7;
align-items: center;
padding: 5px 8px 4px;
margin-bottom: 5px;
}
.parent-item-type {
margin-right: 3px;
width: 16px; // Don't show HiDPI icons at 2x size
}
.parent-title {
flex-grow: 1;
width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.title-line {
display: flex;
padding: 0 8px 0;
2020-11-03 16:29:51 +00:00
.title {
flex-grow: 1;
width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
font-weight: bold;
}
}
.body-line {
2020-11-03 16:29:51 +00:00
display: flex;
padding: 0 8px 6px;
2020-11-03 16:29:51 +00:00
.date {
color: $shade-6;
2020-11-03 16:29:51 +00:00
}
.body {
flex-grow: 1;
width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin-left: 10px;
color: $shade-6;
}
}
}
}
.more-row {
border: 1px solid #bcc4d2;
border-radius: 5px;
margin: 4px 7px;
2021-02-25 11:05:55 +00:00
background-color: white;
text-align: center;
padding: 5px;
&:active {
2021-02-25 11:05:55 +00:00
background: #eef1f8;
}
}
.standalone-note-row {
.title-line {
padding-top: 6px !important;
}
}