webbuild.css: fixes for code wrapping in output box inside pre tag

This commit is contained in:
Silvan Calarco 2025-01-09 12:35:57 +01:00
parent a5a362641e
commit d70b96d3e4

View File

@ -327,7 +327,7 @@ input#repsearchtext {
width:100% !important; width:100% !important;
height:350px; height:350px;
overflow:auto; overflow:auto;
overflow-x:hidden; overflow-x:auto;
word-wrap: break-word; word-wrap: break-word;
font-family:monospace; font-family:monospace;
font-size:9pt; font-size:9pt;
@ -369,6 +369,11 @@ input#repsearchtext {
color:white; color:white;
} }
.outputbox > pre {
white-space: pre-wrap;
word-break: break-word;
}
.outputbox > pre > p { .outputbox > pre > p {
background-color:gray; background-color:gray;
color:white; color:white;