Thread [Forum] Code-Box: Zeilennummern nicht bündig zu Codezeilen (31 answers)
Opened by GwenDragon at 2009-04-19 15:15

GwenDragon
 2009-04-23 18:24
#120845 #120845
User since
2005-01-17
14748 Artikel
Admin1
[Homepage]
user image
Wenn die Datei der outputlanguage definition für source-highlite so ist:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
include "html_common.outlang"

# line numbers
linenum "<code title=\"$text\">"

lineprefix ""

doctemplate
"<pre class=\"sourcecode\">
"
"</pre>
"
end

nodoctemplate
"<pre>"
"</pre>
"
end

# terminate each line by closing the code row
translations
"\n" "</code>\n"
end


Und das dazugehörige CSS:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
pre.sourcecode code:before {
content: attr(title)':';
padding: 0;
margin: 0 .5em 0 auto;
font-weight: bold;
color: #999;
}
pre.sourcecode:hover code:before {
content: '\20\20\20';
}


Könnte es gehen.

Könnten wir das mal im Testboard probieren?

Last edited: 2009-04-23 18:35:11 +0200 (CEST)

View full thread [Forum] Code-Box: Zeilennummern nicht bündig zu Codezeilen