1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2024-12-12 09:04:06 +02:00
obsidian-livesync/styles.css
vorotamoroz 53b4d4cd20 fixes below:
Make text selectable in log dialog.
Dumping errors when couldn't connect
Invalid uri could not detected.
Add tooltips to statusbar
2021-11-08 17:52:07 +09:00

31 lines
520 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;
user-select: text;
}
.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%);
}