1
0
mirror of https://github.com/vrtmrz/obsidian-livesync.git synced 2025-01-17 18:26:11 +02:00
obsidian-livesync/styles.css

31 lines
520 B
CSS
Raw Normal View History

2021-10-12 23:50:13 +09:00
.added {
color: black;
2021-10-12 23:50:13 +09:00
background-color: white;
}
.normal {
color: lightgray;
2021-10-12 23:50:13 +09:00
}
.deleted {
color: white;
2021-10-12 23:50:13 +09:00
background-color: black;
/* text-decoration: line-through; */
}
.op-scrollable {
overflow-y: scroll;
2021-10-12 23:50:13 +09:00
/* 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%);
}