diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-20 19:15:19 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-08-20 19:15:19 +0000 |
commit | 23cdab81ed046457ab94e3eed1422b9f6586a919 (patch) | |
tree | e677feff0b97d2a74c7cb119c616b157f57832e7 /doc/todo | |
parent | a9b7f01ec816944d5517bf6a800bd0b4bb07937a (diff) |
move from my inbox..
Diffstat (limited to 'doc/todo')
-rw-r--r-- | doc/todo/stylesheet_suggestion_for_verbatim_content.mdwn | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/doc/todo/stylesheet_suggestion_for_verbatim_content.mdwn b/doc/todo/stylesheet_suggestion_for_verbatim_content.mdwn new file mode 100644 index 000000000..962025f3c --- /dev/null +++ b/doc/todo/stylesheet_suggestion_for_verbatim_content.mdwn @@ -0,0 +1,29 @@ +I suggest the attached change for verbatim contents. Paddings/margins are +optional, but IMHO, we should at least define a monospace font. + +-- Recai (via email) + +[[tag patch]] + +<pre> +diff --git a/basewiki/style.css b/basewiki/style.css +index 6ec6f89..1970561 100644 +--- a/basewiki/style.css ++++ b/basewiki/style.css +@@ -198,3 +198,15 @@ li.L7 { + li.L8 { + list-style: upper-alpha; + } ++ ++/* verbatim content */ ++pre, tt, code { ++ font-family: "Courier", monospace; ++ color: black; ++} ++ ++pre { ++ margin-left: 1.5em; ++ padding: 0.5em; ++ overflow: hidden; ++} +</pre> |