Home
last modified time | relevance | path

Searched refs:css (Results 26 – 50 of 852) sorted by relevance

12345678910>>...35

/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshBrushGroovy.js45 …{ regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line commen…
46 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comme…
47 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
48 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
49 { regex: /""".*"""/g, css: 'string' }, // GStrings
50 { regex: new RegExp('\\b([\\d]+(\\.[\\d]+)?|0x[a-f0-9]+)\\b', 'gi'), css: 'value' }, // numbers
51 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // goovy keyword
52 { regex: new RegExp(this.getKeywords(types), 'gm'), css: 'color1' }, // goovy/java type
53 { regex: new RegExp(this.getKeywords(constants), 'gm'), css: 'constants' }, // constants
54 { regex: new RegExp(this.getKeywords(methods), 'gm'), css: 'functions' } // methods
H A DshBrushCSharp.js35 var css = (match[0].indexOf("///") == 0)
40 return [new SyntaxHighlighter.Match(match[0], match.index, css)];
45 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
46 { regex: /@"(?:[^"]|"")*"/g, css: 'string' }, // @-quoted strings
47 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
48 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
49 …{ regex: /^\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endr…
50 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // c# keyword
51 …{ regex: /\bpartial(?=\s+(?:class|interface|struct)\b)/g, css: 'keyword' }, // contextual keywor…
52 … { regex: /\byield(?=\s+(?:return|break)\b)/g, css: 'keyword' } // contextual keyword: 'yield'
H A DshBrushJava.js33 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
34 { regex: /\/\*([^\*][\s\S]*?)?\*\//gm, css: 'comments' }, // multiline comments
35 { regex: /\/\*(?!\*\/)\*[\s\S]*?\*\//gm, css: 'preprocessor' }, // documentation comments
36 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
37 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
38 { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers
39 { regex: /(?!\@interface\b)\@[\$\w]+\b/g, css: 'color1' }, // annotation @anno
40 { regex: /\@interface\b/g, css: 'color2' }, // @interface keyword
41 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // java keyword
H A DshBrushAS3.js38 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
39 … { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
40 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings
41 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings
42 { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers
43 { regex: new RegExp(this.getKeywords(inits), 'gm'), css: 'color3' }, // initializations
44 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords
45 { regex: new RegExp('var', 'gm'), css: 'variable' }, // variable
46 { regex: new RegExp('trace', 'gm'), css: 'color1' } // trace
H A DshBrushTAP.js33 { regex: new RegExp('^1..\\d+', 'gm'), css: 'plain bold italic' },
36 { regex: new RegExp('^ok( \\d+)?', 'gm'), css: 'keyword' },
37 { regex: new RegExp('^not ok( \\d+)?', 'gm'), css: 'color3 bold' },
40 { regex: new RegExp('(?!^\\s*)#.*$', 'gm'), css: 'variable bold' },
43 { regex: new RegExp('^#.*$', 'gm'), css: 'comments bold' },
46 { regex: new RegExp('^(?!(not )?ok)[^1].*$', 'gm'), css: 'comments' },
49 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' },
50 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' },
H A DshBrushCss.js67 { 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
H A DshBrushDelphi.js37 { regex: /\(\*[\s\S]*?\*\)/gm, css: 'comments' }, // multiline comments (* *)
38 { regex: /{(?!\$)[\s\S]*?}/gm, css: 'comments' }, // multiline comments { }
39 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line
40 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
41 { regex: /\{\$[a-zA-Z]+ .+\}/g, css: 'color1' }, // compiler Directives and Region tags
42 { regex: /\b[\d\.]+\b/g, css: 'value' }, // numbers 12345
43 { regex: /\$[a-zA-Z0-9]+\b/g, css: 'value' }, // numbers $F5D3
44 { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshBrushGroovy.js29 …{ regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line commen…
30 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comme…
31 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
32 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
33 { regex: /""".*"""/g, css: 'string' }, // GStrings
34 { regex: new RegExp('\\b([\\d]+(\\.[\\d]+)?|0x[a-f0-9]+)\\b', 'gi'), css: 'value' }, // numbers
35 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // goovy keyword
36 { regex: new RegExp(this.getKeywords(types), 'gm'), css: 'color1' }, // goovy/java type
37 { regex: new RegExp(this.getKeywords(constants), 'gm'), css: 'constants' }, // constants
38 { regex: new RegExp(this.getKeywords(methods), 'gm'), css: 'functions' } // methods
H A DshBrushJava.js17 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
18 { regex: /\/\*([^\*][\s\S]*?)?\*\//gm, css: 'comments' }, // multiline comments
19 { regex: /\/\*(?!\*\/)\*[\s\S]*?\*\//gm, css: 'preprocessor' }, // documentation comments
20 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
21 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
22 { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers
23 { regex: /(?!\@interface\b)\@[\$\w]+\b/g, css: 'color1' }, // annotation @anno
24 { regex: /\@interface\b/g, css: 'color2' }, // @interface keyword
25 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // java keyword
H A DshBrushAS3.js22 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
23 … { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
24 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings
25 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings
26 { regex: /\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi, css: 'value' }, // numbers
27 { regex: new RegExp(this.getKeywords(inits), 'gm'), css: 'color3' }, // initializations
28 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords
29 { regex: new RegExp('var', 'gm'), css: 'variable' }, // variable
30 { regex: new RegExp('trace', 'gm'), css: 'color1' } // trace
H A DshBrushTAP.js17 { regex: new RegExp('^1..\\d+', 'gm'), css: 'plain bold italic' },
20 { regex: new RegExp('^ok( \\d+)?', 'gm'), css: 'keyword' },
21 { regex: new RegExp('^not ok( \\d+)?', 'gm'), css: 'color3 bold' },
24 { regex: new RegExp('(?!^\\s*)#.*$', 'gm'), css: 'variable bold' },
27 { regex: new RegExp('^#.*$', 'gm'), css: 'comments bold' },
30 { regex: new RegExp('^(?!(not )?ok)[^1].*$', 'gm'), css: 'comments' },
33 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' },
34 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' },
H A DshBrushCss.js51 { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
52 … { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings
53 … { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings
54 { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors
55 { regex: /(-?\d+)(\.\d+)?(px|em|pt|\:|\%|)/g, css: 'value' }, // sizes
56 { regex: /!important/g, css: 'color3' }, // !important
57 { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords
58 { regex: new RegExp(getValuesCSS(values), 'g'), css: 'value' }, // values
59 { regex: new RegExp(this.getKeywords(fonts), 'g'), css: 'color1' } // fonts
H A DshBrushDelphi.js21 { regex: /\(\*[\s\S]*?\*\)/gm, css: 'comments' }, // multiline comments (* *)
22 { regex: /{(?!\$)[\s\S]*?}/gm, css: 'comments' }, // multiline comments { }
23 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line
24 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
25 { regex: /\{\$[a-zA-Z]+ .+\}/g, css: 'color1' }, // compiler Directives and Region tags
26 { regex: /\b[\d\.]+\b/g, css: 'value' }, // numbers 12345
27 { regex: /\$[a-zA-Z0-9]+\b/g, css: 'value' }, // numbers $F5D3
28 { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword
H A DshBrushScala.js17 … { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
18 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
19 …{ regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // multi-line st…
20 …{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double-quo…
21 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
22 { regex: /0x[a-f0-9]+|\d+(\.\d+)?/gi, css: 'value' }, // numbers
23 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords
24 { regex: new RegExp(keyops, 'gm'), css: 'keyword' } // scala keyword
/plugin/farmsync/script/
H A DscrollToLine.js28 .css('width', $this.width() + 'px') // width with scrollbar, but close enough
29 .css('font-size', $this.css('font-size'))
30 .css('font-family', $this.css('font-family'))
31 .css('padding', $this.css('padding'))
32 .css('line-height', $this.css('line-height'));
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.ruleset.class.php107 $len = strlen($css);
109 $css = substr($css, $pos);
140 $css = $tail;
158 $css = $data->get_content();
159 if (!empty($css)) {
165 $css = preg_replace('/^\s*<!--/', '', $css);
166 $css = preg_replace('/-->\s*$/', '', $css);
189 $css = preg_replace("#/\*.*?\*/#is","",$css);
192 $css = parse_css_atpage_rules($css, $pipeline);
202 $css = preg_replace("/@import[^;]+;/","", $css);
[all …]
/plugin/syntaxhighlighter/Uncompressed/
H A DshBrushCss.js36 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments
37 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings
38 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings
39 { regex: new RegExp('\\#[a-zA-Z0-9]{3,6}', 'g'), css: 'value' }, // html colors
40 { regex: new RegExp('(-?\\d+)(\.\\d+)?(px|em|pt|\:|\%|)', 'g'), css: 'value' }, // sizes
41 { regex: new RegExp('!important', 'g'), css: 'important' }, // !important
42 { regex: new RegExp(this.GetKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords
43 { regex: new RegExp(this.GetValuesCSS(values), 'g'), css: 'value' }, // values
44 { regex: new RegExp(this.GetValuesCSS(fonts), 'g'), css: 'value' } // fonts
H A DshBrushPython.js11 { regex: dp.sh.RegexLib.SingleLinePerlComments, css: 'comment' },
12 { regex: new RegExp("^\\s*@\\w+", 'gm'), css: 'decorator' },
13 { regex: new RegExp("(['\"]{3})([^\\1])*?\\1", 'gm'), css: 'comment' },
14 { regex: new RegExp('"(?!")(?:\\.|\\\\\\"|[^\\""\\n\\r])*"', 'gm'), css: 'string' },
15 { regex: new RegExp("'(?!')*(?:\\.|(\\\\\\')|[^\\''\\n\\r])*'", 'gm'), css: 'string' },
16 { regex: new RegExp("\\b\\d+\\.?\\w*", 'g'), css: 'number' },
17 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' },
18 { regex: new RegExp(this.GetKeywords(special), 'gm'), css: 'special' }
H A DshBrushDelphi.js17 …{ regex: new RegExp('\\(\\*[\\s\\S]*?\\*\\)', 'gm'), css: 'comment' }, // multiline comments …
18 …{ regex: new RegExp('{(?!\\$)[\\s\\S]*?}', 'gm'), css: 'comment' }, // multiline comments { }
19 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line
20 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings
21 …{ regex: new RegExp('\\{\\$[a-zA-Z]+ .+\\}', 'g'), css: 'directive' }, // Compiler Directives …
22 { regex: new RegExp('\\b[\\d\\.]+\\b', 'g'), css: 'number' }, // numbers 12345
23 { regex: new RegExp('\\$[a-zA-Z0-9]+\\b', 'g'), css: 'number' }, // numbers $F5D3
24 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // keyword
H A DshBrushJava.js12 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments
13 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments
14 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings
15 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings
16 { regex: new RegExp('\\b([\\d]+(\\.[\\d]+)?|0x[a-f0-9]+)\\b', 'gi'), css: 'number' }, // numbers
17 …{ regex: new RegExp('(?!\\@interface\\b)\\@[\\$\\w]+\\b', 'g'), css: 'annotation' }, // annotati…
18 { regex: new RegExp('\\@interface\\b', 'g'), css: 'keyword' }, // @interface keyword
19 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // java keyword
/plugin/syntaxhighlighter/Scripts/
H A DshBrushCss.js9css:'comment'},{regex:dp.sh.RegexLib.DoubleQuotedString,css:'string'},{regex:dp.sh.RegexLib.Single…
H A DshBrushDelphi.js9css:'comment'},{regex:new RegExp('{(?!\\$)[\\s\\S]*?}','gm'),css:'comment'},{regex:dp.sh.RegexLib.…
H A DshBrushPython.js10css:'comment'},{regex:new RegExp("^\\s*@\\w+",'gm'),css:'decorator'},{regex:new RegExp("(['\"]{3})…
H A DshBrushJava.js9css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'comment'},{regex:dp.sh.RegexLib.Doubl…
/plugin/filelist/
H A Dscript.js

12345678910>>...35