mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
53 lines
793 B
CSS
53 lines
793 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;
|
|
}
|
|
|
|
*/
|
|
|
|
.note-list .list-item:hover {
|
|
background-color: rgba(0,160,255,0.1) !important;
|
|
}
|
|
|
|
.side-bar .selected {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.side-bar .list-item:hover,
|
|
.side-bar .synchronize-button:hover {
|
|
background-color: #533d7d;
|
|
}
|
|
|
|
.header .button:hover {
|
|
background-color: rgba(0,160,255,0.1);
|
|
border: 1px solid rgba(0,160,255,0.5);
|
|
box-sizing: 'border-box';
|
|
}
|
|
|
|
.header .button {
|
|
border: 1px solid rgba(0,160,255,0);
|
|
} |