diff options
author | wei <> | 2006-02-01 07:12:14 +0000 |
---|---|---|
committer | wei <> | 2006-02-01 07:12:14 +0000 |
commit | cff3c0c965c5f22918abe736432bd73a40bae5b2 (patch) | |
tree | 2609856dc7900d58ed88aca240c013a190b3981b /framework/3rdParty/geshi | |
parent | 4cec5a79840bc13480c02e1032e632e9dd9bba1f (diff) |
Update syntax highlighter with Copy Code option.
Diffstat (limited to 'framework/3rdParty/geshi')
-rw-r--r-- | framework/3rdParty/geshi/highlight.css | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/framework/3rdParty/geshi/highlight.css b/framework/3rdParty/geshi/highlight.css index be000a83..00a53f41 100644 --- a/framework/3rdParty/geshi/highlight.css +++ b/framework/3rdParty/geshi/highlight.css @@ -93,4 +93,21 @@ .javascript .st0 {color: #3366CC;}
.javascript .nu0 {color: #CC0000;}
.javascript .me1 {color: #006600;}
-.javascript .re0 {color: #0066FF;}
\ No newline at end of file +.javascript .re0 {color: #0066FF;}
+
+.source .copycode
+{
+ text-align: right;
+ float: right;
+}
+
+.source .copycode a
+{
+ cursor: pointer;
+ color: blue;
+}
+
+.source .copycode_hover a
+{
+ color: red;
+}
|