Here is a little modification that makes the indentation very slight and
instead adds a subtile grey dotted border on the left to indicate that it's
actually for a reply (the indentation makes nested replies impossible to read
on tablets or smartphones).
@media(max-width: 1024px){
#navigation{
display:none;
}
#main{
margin-right: 0px;
width: 100%
}
td.replies, td.created{
display: none;
}
th.topic-replies, th.topic-created{
display: none;
}
#page{
width: 100%;
min-width: 400px
}
.indented{
margin-left: 3px;
border-left: dotted 5px rgba(0,0,0,0.2);
}
}