mirror of
http://galexander.org/git/simplesshd.git
synced 2025-01-01 02:40:52 +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"/>
|
<meta name="HandheldFriendly" content="true"/>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
pre {
|
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>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
@ -116,7 +122,7 @@ commandline.</dd>
|
|||||||
shell. There is one variable per line, with a
|
shell. There is one variable per line, with a
|
||||||
"<em>name</em><tt>=</tt><em>value</em>" format.
|
"<em>name</em><tt>=</tt><em>value</em>" format.
|
||||||
A common use would be
|
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
|
if your device has a
|
||||||
build of <tt>mksh</tt> that does not execute a <tt>.profile</tt>
|
build of <tt>mksh</tt> that does not execute a <tt>.profile</tt>
|
||||||
automatically.</dd>
|
automatically.</dd>
|
||||||
|
Loading…
Reference in New Issue
Block a user