Details
-
Bug
-
Resolution: Fixed
-
None
-
Medium
-
FIX: Deleted tags in TrackChanges in the HTML-Editor now look deleted as well (decorated with a strike-through)
-
Empty show more show less
Description
They should look "strikedthrough".
According to Thomas this could be a solution:
https://web.dev/css-masking/
Also perhaps with something like this code (discuss with Thomas and Ines-Paul first, because they tried a lot already to achieve this). Also Stephan might have good ideas how to solve this.
<!DOCTYPE html>
<html>
<body>
<style>
div {
width: 15px;
position: relative;
display: inline;
}
span {
position: absolute;
display: inline;
height: 2px;
width: 15px;
background: red;
}
.secondOverlayLine {
top: 33%;
}
</style>dies ist ein
<div id="preview-image-wrapper">
<span class="secondOverlayLine"></span>
<img src="http://placehold.it/15x15">
</div> test.
</body>
</html>