mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
32 lines
417 B
CSS
32 lines
417 B
CSS
body, textarea {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
}
|
|
|
|
#react-root {
|
|
height: 100%;
|
|
}
|
|
|
|
.item-list {
|
|
overflow-x: hidden;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.note-list .item {
|
|
height: 40px; /* This must match NoteList.itemHeight */
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.note-list .item.odd {
|
|
background-color: lightgray;
|
|
}
|
|
|
|
.note-list .selected {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.side-bar .selected {
|
|
font-weight: bold;
|
|
} |