(→Like SMF: link to old version of sandbox) |
|||
Line 8: | Line 8: | ||
:** we need to change the code put out by {{Tag|code}}. It needs to include the {{Tag|a}} part, since you can't do "onclick" in wikitext. | :** we need to change the code put out by {{Tag|code}}. It needs to include the {{Tag|a}} part, since you can't do "onclick" in wikitext. | ||
:* look good, we will need some skin changes for the <.code> and <.pre> tags. | :* look good, we will need some skin changes for the <.code> and <.pre> tags. | ||
:To see the effect of <.pre> skin changes, Please look at [ | :To see the effect of <.pre> skin changes, Please look at [http://wiki.simplemachines.org/smf/index.php?title=User:AngelinaBelle/sandbox&direction=prev&oldid=4664] using the Classic vs. the default skin. | ||
:The problem code is: | :The problem code is: | ||
: <pre><a href="javascript:void(0);" onclick="return smfSelectText(this);" class="codeoperation">[Select]</a></pre> | : <pre><a href="javascript:void(0);" onclick="return smfSelectText(this);" class="codeoperation">[Select]</a></pre> |
Revision as of 12:10, 18 March 2011
Like SMF
Would it be possible to add the [code] stuff in here so we can do select all with a link? Would having it in a div with a height so scrollbars can be shown also be of use?--Groundup 14:42, 1 March 2011 (EST)
Yes, it would be possible to do most of that. HOWEVER.In order for it to :- work, we need
- we need the "select all" javascript in the skin
- we need to change the code put out by
<code></code>
. It needs to include the<a></a>
part, since you can't do "onclick" in wikitext.
- look good, we will need some skin changes for the <.code> and <.pre> tags.
- work, we need
- To see the effect of <.pre> skin changes, Please look at [1] using the Classic vs. the default skin.
- The problem code is:
<a href="javascript:void(0);" onclick="return smfSelectText(this);" class="codeoperation">[Select]</a>
- The new code for
<code></code>
could be:
<div class="codeheader">Code: <a href="javascript:void(0);" onclick="return smfSelectText(this);" class="codeoperation"> [Select]</a></div> <code class="codebody"><pre>
</pre></code>
-- AngelinaBelle (talk) 11:43, 2 March 2011 (EST)