rails-rateit 0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +36 -0
- data/Rakefile +2 -0
- data/example/content/antenna-black.png +0 -0
- data/example/content/antenna-red.png +0 -0
- data/example/content/antenna-yellow.png +0 -0
- data/example/content/antenna.css +16 -0
- data/example/content/bigstars.css +34 -0
- data/example/content/star-black32.png +0 -0
- data/example/content/star-gold32.png +0 -0
- data/example/content/star-red32.png +0 -0
- data/example/content/star-white32.png +0 -0
- data/example/content/star_2.gif +0 -0
- data/example/content/star_3.gif +0 -0
- data/example/content/star_4.gif +0 -0
- data/example/example.htm +576 -0
- data/example/rateit.aspx +9 -0
- data/example/sh/shBrushCSharp.js +65 -0
- data/example/sh/shBrushCss.js +91 -0
- data/example/sh/shBrushJScript.js +52 -0
- data/example/sh/shBrushXml.js +69 -0
- data/example/sh/shCore.css +226 -0
- data/example/sh/shCore.js +17 -0
- data/example/sh/shCoreDefault.css +328 -0
- data/lib/generators/rateit/install/install_generator.rb +18 -0
- data/lib/rails-rateit.rb +17 -0
- data/lib/rateit/version.rb +3 -0
- data/lib/rateit/view_helpers/action_view.rb +14 -0
- data/rails-rateit.gemspec +17 -0
- data/vendor/assets/images/delete.gif +0 -0
- data/vendor/assets/images/star.gif +0 -0
- data/vendor/assets/javascripts/jquery.rateit.js +250 -0
- data/vendor/assets/stylesheets/rateit.css.erb +90 -0
- metadata +80 -0
data/example/rateit.aspx
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
<%@ Page Language="C#" %>
|
2
|
+
<%
|
3
|
+
//Get value
|
4
|
+
float value = float.Parse(Request.Form["value"]);
|
5
|
+
int productID = int.Parse(Request.Form["id"]);
|
6
|
+
|
7
|
+
Response.Write(string.Format("You voted {0} on product: {1}.<br/>Time on server: {2}", value, productID, DateTime.Now.ToString()));
|
8
|
+
|
9
|
+
%>
|
@@ -0,0 +1,65 @@
|
|
1
|
+
/**
|
2
|
+
* SyntaxHighlighter
|
3
|
+
* http://alexgorbatchev.com/SyntaxHighlighter
|
4
|
+
*
|
5
|
+
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
6
|
+
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
7
|
+
*
|
8
|
+
* @version
|
9
|
+
* 3.0.83 (July 02 2010)
|
10
|
+
*
|
11
|
+
* @copyright
|
12
|
+
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
13
|
+
*
|
14
|
+
* @license
|
15
|
+
* Dual licensed under the MIT and GPL licenses.
|
16
|
+
*/
|
17
|
+
;(function()
|
18
|
+
{
|
19
|
+
// CommonJS
|
20
|
+
typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
|
21
|
+
|
22
|
+
function Brush()
|
23
|
+
{
|
24
|
+
var keywords = 'abstract as base bool break byte case catch char checked class const ' +
|
25
|
+
'continue decimal default delegate do double else enum event explicit ' +
|
26
|
+
'extern false finally fixed float for foreach get goto if implicit in int ' +
|
27
|
+
'interface internal is lock long namespace new null object operator out ' +
|
28
|
+
'override params private protected public readonly ref return sbyte sealed set ' +
|
29
|
+
'short sizeof stackalloc static string struct switch this throw true try ' +
|
30
|
+
'typeof uint ulong unchecked unsafe ushort using virtual void while';
|
31
|
+
|
32
|
+
function fixComments(match, regexInfo)
|
33
|
+
{
|
34
|
+
var css = (match[0].indexOf("///") == 0)
|
35
|
+
? 'color1'
|
36
|
+
: 'comments'
|
37
|
+
;
|
38
|
+
|
39
|
+
return [new SyntaxHighlighter.Match(match[0], match.index, css)];
|
40
|
+
}
|
41
|
+
|
42
|
+
this.regexList = [
|
43
|
+
{ regex: SyntaxHighlighter.regexLib.singleLineCComments, func : fixComments }, // one line comments
|
44
|
+
{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
|
45
|
+
{ regex: /@"(?:[^"]|"")*"/g, css: 'string' }, // @-quoted strings
|
46
|
+
{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
|
47
|
+
{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
|
48
|
+
{ regex: /^\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion
|
49
|
+
{ regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // c# keyword
|
50
|
+
{ regex: /\bpartial(?=\s+(?:class|interface|struct)\b)/g, css: 'keyword' }, // contextual keyword: 'partial'
|
51
|
+
{ regex: /\byield(?=\s+(?:return|break)\b)/g, css: 'keyword' } // contextual keyword: 'yield'
|
52
|
+
];
|
53
|
+
|
54
|
+
this.forHtmlScript(SyntaxHighlighter.regexLib.aspScriptTags);
|
55
|
+
};
|
56
|
+
|
57
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
58
|
+
Brush.aliases = ['c#', 'c-sharp', 'csharp'];
|
59
|
+
|
60
|
+
SyntaxHighlighter.brushes.CSharp = Brush;
|
61
|
+
|
62
|
+
// CommonJS
|
63
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
64
|
+
})();
|
65
|
+
|
@@ -0,0 +1,91 @@
|
|
1
|
+
/**
|
2
|
+
* SyntaxHighlighter
|
3
|
+
* http://alexgorbatchev.com/SyntaxHighlighter
|
4
|
+
*
|
5
|
+
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
6
|
+
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
7
|
+
*
|
8
|
+
* @version
|
9
|
+
* 3.0.83 (July 02 2010)
|
10
|
+
*
|
11
|
+
* @copyright
|
12
|
+
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
13
|
+
*
|
14
|
+
* @license
|
15
|
+
* Dual licensed under the MIT and GPL licenses.
|
16
|
+
*/
|
17
|
+
;(function()
|
18
|
+
{
|
19
|
+
// CommonJS
|
20
|
+
typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
|
21
|
+
|
22
|
+
function Brush()
|
23
|
+
{
|
24
|
+
function getKeywordsCSS(str)
|
25
|
+
{
|
26
|
+
return '\\b([a-z_]|)' + str.replace(/ /g, '(?=:)\\b|\\b([a-z_\\*]|\\*|)') + '(?=:)\\b';
|
27
|
+
};
|
28
|
+
|
29
|
+
function getValuesCSS(str)
|
30
|
+
{
|
31
|
+
return '\\b' + str.replace(/ /g, '(?!-)(?!:)\\b|\\b()') + '\:\\b';
|
32
|
+
};
|
33
|
+
|
34
|
+
var keywords = 'ascent azimuth background-attachment background-color background-image background-position ' +
|
35
|
+
'background-repeat background baseline bbox border-collapse border-color border-spacing border-style border-top ' +
|
36
|
+
'border-right border-bottom border-left border-top-color border-right-color border-bottom-color border-left-color ' +
|
37
|
+
'border-top-style border-right-style border-bottom-style border-left-style border-top-width border-right-width ' +
|
38
|
+
'border-bottom-width border-left-width border-width border bottom cap-height caption-side centerline clear clip color ' +
|
39
|
+
'content counter-increment counter-reset cue-after cue-before cue cursor definition-src descent direction display ' +
|
40
|
+
'elevation empty-cells float font-size-adjust font-family font-size font-stretch font-style font-variant font-weight font ' +
|
41
|
+
'height left letter-spacing line-height list-style-image list-style-position list-style-type list-style margin-top ' +
|
42
|
+
'margin-right margin-bottom margin-left margin marker-offset marks mathline max-height max-width min-height min-width orphans ' +
|
43
|
+
'outline-color outline-style outline-width outline overflow padding-top padding-right padding-bottom padding-left padding page ' +
|
44
|
+
'page-break-after page-break-before page-break-inside pause pause-after pause-before pitch pitch-range play-during position ' +
|
45
|
+
'quotes right richness size slope src speak-header speak-numeral speak-punctuation speak speech-rate stemh stemv stress ' +
|
46
|
+
'table-layout text-align top text-decoration text-indent text-shadow text-transform unicode-bidi unicode-range units-per-em ' +
|
47
|
+
'vertical-align visibility voice-family volume white-space widows width widths word-spacing x-height z-index';
|
48
|
+
|
49
|
+
var values = 'above absolute all always aqua armenian attr aural auto avoid baseline behind below bidi-override black blink block blue bold bolder '+
|
50
|
+
'both bottom braille capitalize caption center center-left center-right circle close-quote code collapse compact condensed '+
|
51
|
+
'continuous counter counters crop cross crosshair cursive dashed decimal decimal-leading-zero default digits disc dotted double '+
|
52
|
+
'embed embossed e-resize expanded extra-condensed extra-expanded fantasy far-left far-right fast faster fixed format fuchsia '+
|
53
|
+
'gray green groove handheld hebrew help hidden hide high higher icon inline-table inline inset inside invert italic '+
|
54
|
+
'justify landscape large larger left-side left leftwards level lighter lime line-through list-item local loud lower-alpha '+
|
55
|
+
'lowercase lower-greek lower-latin lower-roman lower low ltr marker maroon medium message-box middle mix move narrower '+
|
56
|
+
'navy ne-resize no-close-quote none no-open-quote no-repeat normal nowrap n-resize nw-resize oblique olive once open-quote outset '+
|
57
|
+
'outside overline pointer portrait pre print projection purple red relative repeat repeat-x repeat-y rgb ridge right right-side '+
|
58
|
+
'rightwards rtl run-in screen scroll semi-condensed semi-expanded separate se-resize show silent silver slower slow '+
|
59
|
+
'small small-caps small-caption smaller soft solid speech spell-out square s-resize static status-bar sub super sw-resize '+
|
60
|
+
'table-caption table-cell table-column table-column-group table-footer-group table-header-group table-row table-row-group teal '+
|
61
|
+
'text-bottom text-top thick thin top transparent tty tv ultra-condensed ultra-expanded underline upper-alpha uppercase upper-latin '+
|
62
|
+
'upper-roman url visible wait white wider w-resize x-fast x-high x-large x-loud x-low x-slow x-small x-soft xx-large xx-small yellow';
|
63
|
+
|
64
|
+
var fonts = '[mM]onospace [tT]ahoma [vV]erdana [aA]rial [hH]elvetica [sS]ans-serif [sS]erif [cC]ourier mono sans serif';
|
65
|
+
|
66
|
+
this.regexList = [
|
67
|
+
{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
|
68
|
+
{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings
|
69
|
+
{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings
|
70
|
+
{ regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors
|
71
|
+
{ regex: /(-?\d+)(\.\d+)?(px|em|pt|\:|\%|)/g, css: 'value' }, // sizes
|
72
|
+
{ regex: /!important/g, css: 'color3' }, // !important
|
73
|
+
{ regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords
|
74
|
+
{ regex: new RegExp(getValuesCSS(values), 'g'), css: 'value' }, // values
|
75
|
+
{ regex: new RegExp(this.getKeywords(fonts), 'g'), css: 'color1' } // fonts
|
76
|
+
];
|
77
|
+
|
78
|
+
this.forHtmlScript({
|
79
|
+
left: /(<|<)\s*style.*?(>|>)/gi,
|
80
|
+
right: /(<|<)\/\s*style\s*(>|>)/gi
|
81
|
+
});
|
82
|
+
};
|
83
|
+
|
84
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
85
|
+
Brush.aliases = ['css'];
|
86
|
+
|
87
|
+
SyntaxHighlighter.brushes.CSS = Brush;
|
88
|
+
|
89
|
+
// CommonJS
|
90
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
91
|
+
})();
|
@@ -0,0 +1,52 @@
|
|
1
|
+
/**
|
2
|
+
* SyntaxHighlighter
|
3
|
+
* http://alexgorbatchev.com/SyntaxHighlighter
|
4
|
+
*
|
5
|
+
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
6
|
+
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
7
|
+
*
|
8
|
+
* @version
|
9
|
+
* 3.0.83 (July 02 2010)
|
10
|
+
*
|
11
|
+
* @copyright
|
12
|
+
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
13
|
+
*
|
14
|
+
* @license
|
15
|
+
* Dual licensed under the MIT and GPL licenses.
|
16
|
+
*/
|
17
|
+
;(function()
|
18
|
+
{
|
19
|
+
// CommonJS
|
20
|
+
typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
|
21
|
+
|
22
|
+
function Brush()
|
23
|
+
{
|
24
|
+
var keywords = 'break case catch continue ' +
|
25
|
+
'default delete do else false ' +
|
26
|
+
'for function if in instanceof ' +
|
27
|
+
'new null return super switch ' +
|
28
|
+
'this throw true try typeof var while with'
|
29
|
+
;
|
30
|
+
|
31
|
+
var r = SyntaxHighlighter.regexLib;
|
32
|
+
|
33
|
+
this.regexList = [
|
34
|
+
{ regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings
|
35
|
+
{ regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings
|
36
|
+
{ regex: r.singleLineCComments, css: 'comments' }, // one line comments
|
37
|
+
{ regex: r.multiLineCComments, css: 'comments' }, // multiline comments
|
38
|
+
{ regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion
|
39
|
+
{ regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords
|
40
|
+
];
|
41
|
+
|
42
|
+
this.forHtmlScript(r.scriptScriptTags);
|
43
|
+
};
|
44
|
+
|
45
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
46
|
+
Brush.aliases = ['js', 'jscript', 'javascript'];
|
47
|
+
|
48
|
+
SyntaxHighlighter.brushes.JScript = Brush;
|
49
|
+
|
50
|
+
// CommonJS
|
51
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
52
|
+
})();
|
@@ -0,0 +1,69 @@
|
|
1
|
+
/**
|
2
|
+
* SyntaxHighlighter
|
3
|
+
* http://alexgorbatchev.com/SyntaxHighlighter
|
4
|
+
*
|
5
|
+
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
6
|
+
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
7
|
+
*
|
8
|
+
* @version
|
9
|
+
* 3.0.83 (July 02 2010)
|
10
|
+
*
|
11
|
+
* @copyright
|
12
|
+
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
13
|
+
*
|
14
|
+
* @license
|
15
|
+
* Dual licensed under the MIT and GPL licenses.
|
16
|
+
*/
|
17
|
+
;(function()
|
18
|
+
{
|
19
|
+
// CommonJS
|
20
|
+
typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
|
21
|
+
|
22
|
+
function Brush()
|
23
|
+
{
|
24
|
+
function process(match, regexInfo)
|
25
|
+
{
|
26
|
+
var constructor = SyntaxHighlighter.Match,
|
27
|
+
code = match[0],
|
28
|
+
tag = new XRegExp('(<|<)[\\s\\/\\?]*(?<name>[:\\w-\\.]+)', 'xg').exec(code),
|
29
|
+
result = []
|
30
|
+
;
|
31
|
+
|
32
|
+
if (match.attributes != null)
|
33
|
+
{
|
34
|
+
var attributes,
|
35
|
+
regex = new XRegExp('(?<name> [\\w:\\-\\.]+)' +
|
36
|
+
'\\s*=\\s*' +
|
37
|
+
'(?<value> ".*?"|\'.*?\'|\\w+)',
|
38
|
+
'xg');
|
39
|
+
|
40
|
+
while ((attributes = regex.exec(code)) != null)
|
41
|
+
{
|
42
|
+
result.push(new constructor(attributes.name, match.index + attributes.index, 'color1'));
|
43
|
+
result.push(new constructor(attributes.value, match.index + attributes.index + attributes[0].indexOf(attributes.value), 'string'));
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
if (tag != null)
|
48
|
+
result.push(
|
49
|
+
new constructor(tag.name, match.index + tag[0].indexOf(tag.name), 'keyword')
|
50
|
+
);
|
51
|
+
|
52
|
+
return result;
|
53
|
+
}
|
54
|
+
|
55
|
+
this.regexList = [
|
56
|
+
{ regex: new XRegExp('(\\<|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\>|>)', 'gm'), css: 'color2' }, // <![ ... [ ... ]]>
|
57
|
+
{ regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // <!-- ... -->
|
58
|
+
{ regex: new XRegExp('(<|<)[\\s\\/\\?]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(>|>)', 'sg'), func: process }
|
59
|
+
];
|
60
|
+
};
|
61
|
+
|
62
|
+
Brush.prototype = new SyntaxHighlighter.Highlighter();
|
63
|
+
Brush.aliases = ['xml', 'xhtml', 'xslt', 'html'];
|
64
|
+
|
65
|
+
SyntaxHighlighter.brushes.Xml = Brush;
|
66
|
+
|
67
|
+
// CommonJS
|
68
|
+
typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
|
69
|
+
})();
|
@@ -0,0 +1,226 @@
|
|
1
|
+
/**
|
2
|
+
* SyntaxHighlighter
|
3
|
+
* http://alexgorbatchev.com/SyntaxHighlighter
|
4
|
+
*
|
5
|
+
* SyntaxHighlighter is donationware. If you are using it, please donate.
|
6
|
+
* http://alexgorbatchev.com/SyntaxHighlighter/donate.html
|
7
|
+
*
|
8
|
+
* @version
|
9
|
+
* 3.0.83 (July 02 2010)
|
10
|
+
*
|
11
|
+
* @copyright
|
12
|
+
* Copyright (C) 2004-2010 Alex Gorbatchev.
|
13
|
+
*
|
14
|
+
* @license
|
15
|
+
* Dual licensed under the MIT and GPL licenses.
|
16
|
+
*/
|
17
|
+
.syntaxhighlighter a,
|
18
|
+
.syntaxhighlighter div,
|
19
|
+
.syntaxhighlighter code,
|
20
|
+
.syntaxhighlighter table,
|
21
|
+
.syntaxhighlighter table td,
|
22
|
+
.syntaxhighlighter table tr,
|
23
|
+
.syntaxhighlighter table tbody,
|
24
|
+
.syntaxhighlighter table thead,
|
25
|
+
.syntaxhighlighter table caption,
|
26
|
+
.syntaxhighlighter textarea {
|
27
|
+
-moz-border-radius: 0 0 0 0 !important;
|
28
|
+
-webkit-border-radius: 0 0 0 0 !important;
|
29
|
+
background: none !important;
|
30
|
+
border: 0 !important;
|
31
|
+
bottom: auto !important;
|
32
|
+
float: none !important;
|
33
|
+
height: auto !important;
|
34
|
+
left: auto !important;
|
35
|
+
line-height: 1.1em !important;
|
36
|
+
margin: 0 !important;
|
37
|
+
outline: 0 !important;
|
38
|
+
overflow: visible !important;
|
39
|
+
padding: 0 !important;
|
40
|
+
position: static !important;
|
41
|
+
right: auto !important;
|
42
|
+
text-align: left !important;
|
43
|
+
top: auto !important;
|
44
|
+
vertical-align: baseline !important;
|
45
|
+
width: auto !important;
|
46
|
+
box-sizing: content-box !important;
|
47
|
+
font-family: "Consolas", "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important;
|
48
|
+
font-weight: normal !important;
|
49
|
+
font-style: normal !important;
|
50
|
+
font-size: 1em !important;
|
51
|
+
min-height: inherit !important;
|
52
|
+
min-height: auto !important;
|
53
|
+
}
|
54
|
+
|
55
|
+
.syntaxhighlighter {
|
56
|
+
width: 100% !important;
|
57
|
+
margin: 1em 0 1em 0 !important;
|
58
|
+
position: relative !important;
|
59
|
+
overflow: auto !important;
|
60
|
+
font-size: 1em !important;
|
61
|
+
}
|
62
|
+
.syntaxhighlighter.source {
|
63
|
+
overflow: hidden !important;
|
64
|
+
}
|
65
|
+
.syntaxhighlighter .bold {
|
66
|
+
font-weight: bold !important;
|
67
|
+
}
|
68
|
+
.syntaxhighlighter .italic {
|
69
|
+
font-style: italic !important;
|
70
|
+
}
|
71
|
+
.syntaxhighlighter .line {
|
72
|
+
white-space: pre !important;
|
73
|
+
}
|
74
|
+
.syntaxhighlighter table {
|
75
|
+
width: 100% !important;
|
76
|
+
}
|
77
|
+
.syntaxhighlighter table caption {
|
78
|
+
text-align: left !important;
|
79
|
+
padding: .5em 0 0.5em 1em !important;
|
80
|
+
}
|
81
|
+
.syntaxhighlighter table td.code {
|
82
|
+
width: 100% !important;
|
83
|
+
}
|
84
|
+
.syntaxhighlighter table td.code .container {
|
85
|
+
position: relative !important;
|
86
|
+
}
|
87
|
+
.syntaxhighlighter table td.code .container textarea {
|
88
|
+
box-sizing: border-box !important;
|
89
|
+
position: absolute !important;
|
90
|
+
left: 0 !important;
|
91
|
+
top: 0 !important;
|
92
|
+
width: 100% !important;
|
93
|
+
height: 100% !important;
|
94
|
+
border: none !important;
|
95
|
+
background: white !important;
|
96
|
+
padding-left: 1em !important;
|
97
|
+
overflow: hidden !important;
|
98
|
+
white-space: pre !important;
|
99
|
+
}
|
100
|
+
.syntaxhighlighter table td.gutter .line {
|
101
|
+
text-align: right !important;
|
102
|
+
padding: 0 0.5em 0 1em !important;
|
103
|
+
}
|
104
|
+
.syntaxhighlighter table td.code .line {
|
105
|
+
padding: 0 1em !important;
|
106
|
+
}
|
107
|
+
.syntaxhighlighter.nogutter td.code .container textarea, .syntaxhighlighter.nogutter td.code .line {
|
108
|
+
padding-left: 0em !important;
|
109
|
+
}
|
110
|
+
.syntaxhighlighter.show {
|
111
|
+
display: block !important;
|
112
|
+
}
|
113
|
+
.syntaxhighlighter.collapsed table {
|
114
|
+
display: none !important;
|
115
|
+
}
|
116
|
+
.syntaxhighlighter.collapsed .toolbar {
|
117
|
+
padding: 0.1em 0.8em 0em 0.8em !important;
|
118
|
+
font-size: 1em !important;
|
119
|
+
position: static !important;
|
120
|
+
width: auto !important;
|
121
|
+
height: auto !important;
|
122
|
+
}
|
123
|
+
.syntaxhighlighter.collapsed .toolbar span {
|
124
|
+
display: inline !important;
|
125
|
+
margin-right: 1em !important;
|
126
|
+
}
|
127
|
+
.syntaxhighlighter.collapsed .toolbar span a {
|
128
|
+
padding: 0 !important;
|
129
|
+
display: none !important;
|
130
|
+
}
|
131
|
+
.syntaxhighlighter.collapsed .toolbar span a.expandSource {
|
132
|
+
display: inline !important;
|
133
|
+
}
|
134
|
+
.syntaxhighlighter .toolbar {
|
135
|
+
position: absolute !important;
|
136
|
+
right: 1px !important;
|
137
|
+
top: 1px !important;
|
138
|
+
width: 11px !important;
|
139
|
+
height: 11px !important;
|
140
|
+
font-size: 10px !important;
|
141
|
+
z-index: 10 !important;
|
142
|
+
}
|
143
|
+
.syntaxhighlighter .toolbar span.title {
|
144
|
+
display: inline !important;
|
145
|
+
}
|
146
|
+
.syntaxhighlighter .toolbar a {
|
147
|
+
display: block !important;
|
148
|
+
text-align: center !important;
|
149
|
+
text-decoration: none !important;
|
150
|
+
padding-top: 1px !important;
|
151
|
+
}
|
152
|
+
.syntaxhighlighter .toolbar a.expandSource {
|
153
|
+
display: none !important;
|
154
|
+
}
|
155
|
+
.syntaxhighlighter.ie {
|
156
|
+
font-size: .9em !important;
|
157
|
+
padding: 1px 0 1px 0 !important;
|
158
|
+
}
|
159
|
+
.syntaxhighlighter.ie .toolbar {
|
160
|
+
line-height: 8px !important;
|
161
|
+
}
|
162
|
+
.syntaxhighlighter.ie .toolbar a {
|
163
|
+
padding-top: 0px !important;
|
164
|
+
}
|
165
|
+
.syntaxhighlighter.printing .line.alt1 .content,
|
166
|
+
.syntaxhighlighter.printing .line.alt2 .content,
|
167
|
+
.syntaxhighlighter.printing .line.highlighted .number,
|
168
|
+
.syntaxhighlighter.printing .line.highlighted.alt1 .content,
|
169
|
+
.syntaxhighlighter.printing .line.highlighted.alt2 .content {
|
170
|
+
background: none !important;
|
171
|
+
}
|
172
|
+
.syntaxhighlighter.printing .line .number {
|
173
|
+
color: #bbbbbb !important;
|
174
|
+
}
|
175
|
+
.syntaxhighlighter.printing .line .content {
|
176
|
+
color: black !important;
|
177
|
+
}
|
178
|
+
.syntaxhighlighter.printing .toolbar {
|
179
|
+
display: none !important;
|
180
|
+
}
|
181
|
+
.syntaxhighlighter.printing a {
|
182
|
+
text-decoration: none !important;
|
183
|
+
}
|
184
|
+
.syntaxhighlighter.printing .plain, .syntaxhighlighter.printing .plain a {
|
185
|
+
color: black !important;
|
186
|
+
}
|
187
|
+
.syntaxhighlighter.printing .comments, .syntaxhighlighter.printing .comments a {
|
188
|
+
color: #008200 !important;
|
189
|
+
}
|
190
|
+
.syntaxhighlighter.printing .string, .syntaxhighlighter.printing .string a {
|
191
|
+
color: blue !important;
|
192
|
+
}
|
193
|
+
.syntaxhighlighter.printing .keyword {
|
194
|
+
color: #006699 !important;
|
195
|
+
font-weight: bold !important;
|
196
|
+
}
|
197
|
+
.syntaxhighlighter.printing .preprocessor {
|
198
|
+
color: gray !important;
|
199
|
+
}
|
200
|
+
.syntaxhighlighter.printing .variable {
|
201
|
+
color: #aa7700 !important;
|
202
|
+
}
|
203
|
+
.syntaxhighlighter.printing .value {
|
204
|
+
color: #009900 !important;
|
205
|
+
}
|
206
|
+
.syntaxhighlighter.printing .functions {
|
207
|
+
color: #ff1493 !important;
|
208
|
+
}
|
209
|
+
.syntaxhighlighter.printing .constants {
|
210
|
+
color: #0066cc !important;
|
211
|
+
}
|
212
|
+
.syntaxhighlighter.printing .script {
|
213
|
+
font-weight: bold !important;
|
214
|
+
}
|
215
|
+
.syntaxhighlighter.printing .color1, .syntaxhighlighter.printing .color1 a {
|
216
|
+
color: gray !important;
|
217
|
+
}
|
218
|
+
.syntaxhighlighter.printing .color2, .syntaxhighlighter.printing .color2 a {
|
219
|
+
color: #ff1493 !important;
|
220
|
+
}
|
221
|
+
.syntaxhighlighter.printing .color3, .syntaxhighlighter.printing .color3 a {
|
222
|
+
color: red !important;
|
223
|
+
}
|
224
|
+
.syntaxhighlighter.printing .break, .syntaxhighlighter.printing .break a {
|
225
|
+
color: black !important;
|
226
|
+
}
|