﻿html {
    overflow-y: scroll;
	height: 100%;
}

/* Tekst redigering diff styles */
.tekst-diff {
    font-family: inherit;
    white-space: pre-wrap;
}

.tekst-diff-deleted {
    background-color: rgba(255, 129, 130, 0.4);
    color: #ff4d4d;
    text-decoration: line-through;
    padding: 0 2px;
    border-radius: 2px;
}

.tekst-diff-added {
    background-color: rgba(46, 160, 67, 0.3);
    color: #2ea043;
    font-weight: 500;
    padding: 0 2px;
    border-radius: 2px;
}

.tekst-diff-edited {
    background-color: rgba(210, 153, 34, 0.3);
    color: #b08000;
    font-weight: 500;
    padding: 0 2px;
    border-radius: 2px;
}

