mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-14 02:59:05 +00:00
Change the CSS to allow the browser to break words and wrap lines in
pre/tt blocks, so that it doesn't overflow the body size, which the android chrome browser handles by making the text very small.
This commit is contained in:
parent
6c6a885cb0
commit
3a54cf8be7
@ -2,7 +2,13 @@
|
||||
<meta name="HandheldFriendly" content="true"/>
|
||||
<style type="text/css">
|
||||
pre {
|
||||
margin-left: 1em;
|
||||
margin-left: 1em;
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
tt {
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
@ -116,7 +122,7 @@ commandline.</dd>
|
||||
shell. There is one variable per line, with a
|
||||
"<em>name</em><tt>=</tt><em>value</em>" format.
|
||||
A common use would be
|
||||
"<tt>ENV=>/data/data/org.galexander.sshd/files/.profile</tt>",
|
||||
"<tt>ENV=/data/data/org.galexander.sshd/files/.profile</tt>",
|
||||
if your device has a
|
||||
build of <tt>mksh</tt> that does not execute a <tt>.profile</tt>
|
||||
automatically.</dd>
|
||||
|
Loading…
Reference in New Issue
Block a user