mirror of
https://github.com/laurent22/joplin.git
synced 2025-01-20 18:48:28 +02:00
41 lines
583 B
CSS
41 lines
583 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;
|
|
}
|
|
|
|
.header .button:hover {
|
|
background-color: rgba(0,160,255,0.1);
|
|
border: 1px solid rgba(0,160,255,0.5);
|
|
}
|
|
|
|
.header .button {
|
|
border: 1px solid rgba(0,160,255,0);
|
|
} |