mirror of
https://github.com/vrtmrz/obsidian-livesync.git
synced 2024-12-12 09:04:06 +02:00
44efde7762
add delete handling icon fix
21 lines
327 B
CSS
21 lines
327 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;
|
|
}
|