mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2024-12-12 09:04:06 +02:00
0b526e9cea
- fixed bootup delay when vault contains many files. - status bar improvement. - add new feature, using trash when file has been delete in remote.
30 lines
497 B
CSS
30 lines
497 B
CSS
.added {
|
|
color: black;
|
|
background-color: white;
|
|
}
|
|
.normal {
|
|
color: lightgray;
|
|
}
|
|
.deleted {
|
|
color: white;
|
|
background-color: black;
|
|
/* text-decoration: line-through; */
|
|
}
|
|
.op-scrollable {
|
|
overflow-y: scroll;
|
|
/* min-height: 280px; */
|
|
max-height: 280px;
|
|
}
|
|
.op-pre {
|
|
white-space: pre-wrap;
|
|
}
|
|
.op-warn {
|
|
border: 1px solid salmon;
|
|
padding: 2px;
|
|
border-radius: 4px;
|
|
}
|
|
.syncstatusbar {
|
|
-webkit-filter: grayscale(100%);
|
|
filter: grayscale(100%);
|
|
}
|