Home
last modified time | relevance | path

Searched refs:css (Results 51 – 75 of 852) sorted by relevance

12345678910>>...35

/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshBrushCpp.js79 … { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
80 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
81 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
82 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
83 { regex: /^ *#.*/gm, css: 'preprocessor' },
84 { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'color1 bold' },
85 { regex: new RegExp(this.getKeywords(functions), 'gm'), css: 'functions bold' },
86 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword bold' }
H A DshBrushScala.js33 … { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
34 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
35 …{ regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // multi-line st…
36 …{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double-quo…
37 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
38 { regex: /0x[a-f0-9]+|\d+(\.\d+)?/gi, css: 'value' }, // numbers
39 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords
40 { regex: new RegExp(keyops, 'gm'), css: 'keyword' } // scala keyword
H A DshBrushRuby.js35 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line commen…
36 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings
37 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings
38 { regex: /\b[A-Z0-9_]+\b/g, css: 'constants' }, // constants
39 { regex: /:[a-z][A-Za-z0-9_]*/g, css: 'color2' }, // symbols
40 …{ regex: /(\$|@@|@)\w+/g, css: 'variable bold' }, // $global, @instance, and @@class varia…
41 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords
42 { regex: new RegExp(this.getKeywords(builtins), 'gm'), css: 'color1' } // builtins
H A DshBrushPhp.js68 … { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
69 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
70 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strin…
71 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strin…
72 { regex: /\$\w+/g, css: 'variable' }, // variables
73 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // common functions
74 { regex: new RegExp(this.getKeywords(constants), 'gmi'), css: 'constants' }, // constants
75 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keyword
H A DshBrushErlang.js35 { regex: new RegExp("[A-Z][A-Za-z0-9_]+", 'g'), css: 'constants' },
36 { regex: new RegExp("\\%.+", 'gm'), css: 'comments' },
37 { regex: new RegExp("\\?[A-Za-z0-9_]+", 'g'), css: 'preprocessor' },
38 { regex: new RegExp("[a-z0-9_]+:[a-z0-9_]+", 'g'), css: 'functions' },
39 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' },
40 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' },
41 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }
H A DshBrushSql.js49 …{ regex: /--(.*)$/gm, css: 'comments' }, // one li…
50 …{ regex: /\/\*([^\*][\s\S]*?)?\*\//gm, css: 'comments' }, // multi …
51 …{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double…
52 …{ regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // single…
53 …{ regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'color2' }, // functi…
54 …{ regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operat…
55 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword
H A DshBrushColdFusion.js83 { regex: new RegExp('--(.*)$', 'gm'), css: 'comments' }, // one line and multiline comments
84 { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // single quoted strings
85 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted stri…
86 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted stri…
87 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // functions
88 … { regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operators and such
89 { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword
H A DshBrushJavaFX.js40 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' },
41 { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' },
42 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' },
43 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' },
44 …{ regex: /(-?\.?)(\b(\d*\.?\d+|\d+\.?\d*)(e[+-]?\d+)?|0x[a-f\d]+)\b\.?/gi, css: 'color2' }, // num…
45 { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'variable' }, // datatypes
46 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshBrushCpp.js63 … { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
64 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
65 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
66 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
67 { regex: /^ *#.*/gm, css: 'preprocessor' },
68 { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'color1 bold' },
69 { regex: new RegExp(this.getKeywords(functions), 'gm'), css: 'functions bold' },
70 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword bold' }
H A DshBrushRuby.js19 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // one line commen…
20 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings
21 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings
22 { regex: /\b[A-Z0-9_]+\b/g, css: 'constants' }, // constants
23 { regex: /:[a-z][A-Za-z0-9_]*/g, css: 'color2' }, // symbols
24 …{ regex: /(\$|@@|@)\w+/g, css: 'variable bold' }, // $global, @instance, and @@class varia…
25 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // keywords
26 { regex: new RegExp(this.getKeywords(builtins), 'gm'), css: 'color1' } // builtins
H A DshBrushPhp.js52 … { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
53 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
54 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strin…
55 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strin…
56 { regex: /\$\w+/g, css: 'variable' }, // variables
57 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // common functions
58 { regex: new RegExp(this.getKeywords(constants), 'gmi'), css: 'constants' }, // constants
59 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keyword
H A DshBrushErlang.js19 { regex: new RegExp("[A-Z][A-Za-z0-9_]+", 'g'), css: 'constants' },
20 { regex: new RegExp("\\%.+", 'gm'), css: 'comments' },
21 { regex: new RegExp("\\?[A-Za-z0-9_]+", 'g'), css: 'preprocessor' },
22 { regex: new RegExp("[a-z0-9_]+:[a-z0-9_]+", 'g'), css: 'functions' },
23 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' },
24 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' },
25 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }
H A DshBrushSql.js33 …{ regex: /--(.*)$/gm, css: 'comments' }, // one li…
34 …{ regex: /\/\*([^\*][\s\S]*?)?\*\//gm, css: 'comments' }, // multi …
35 …{ regex: SyntaxHighlighter.regexLib.multiLineDoubleQuotedString, css: 'string' }, // double…
36 …{ regex: SyntaxHighlighter.regexLib.multiLineSingleQuotedString, css: 'string' }, // single…
37 …{ regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'color2' }, // functi…
38 …{ regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operat…
39 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword
H A DshBrushColdFusion.js67 { regex: new RegExp('--(.*)$', 'gm'), css: 'comments' }, // one line and multiline comments
68 { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // single quoted strings
69 …{ regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted stri…
70 …{ regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted stri…
71 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // functions
72 … { regex: new RegExp(this.getKeywords(operators), 'gmi'), css: 'color1' }, // operators and such
73 { regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' } // keyword
H A DshBrushJavaFX.js24 { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' },
25 { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' },
26 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' },
27 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' },
28 …{ regex: /(-?\.?)(\b(\d*\.?\d+|\d+\.?\d*)(e[+-]?\d+)?|0x[a-f\d]+)\b\.?/gi, css: 'color2' }, // num…
29 { regex: new RegExp(this.getKeywords(datatypes), 'gm'), css: 'variable' }, // datatypes
30 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }
/plugin/stylingpages/
H A DREADME3 Allows users to change the css/js files of this plugin with wikitext.
5 The intended use of this plugin is to manage the css/less/js
16 1) <code>wiki:styling=/^(all|screen|print|speech)\.(css|less)$/</code>
20 * all.css and all.less - for all media types
21 * screen.css and screen.less - for screen media type (style.css and style.less are alternatives)
22 * print.css and print.less - for print media type
23 * speech.css and speech.less - for speech media type
35 4) <code>wiki:css=/^(all|screen|print|speech)\.(css|less)$/, wiki:javascript=/^script\.js$/</code>
47 <code css all.css>
48 /* placed in <stylingpages_plugin_dir>/all.css */
[all …]
/plugin/dirtylittlehelper/
H A Dscript.js213 jQuery('#dokuwiki__aside').css({'width': '0px'});
272 jQuery(this).css('left',position.left);
273 jQuery(this).css('top',position.top);
619 jQuery('#dlh_top_struct_c').css({'display':'none'});
649 jQuery('#dlh_top_struct_c').css({'display':'none'});
885 jQuery('body').css({'margin-top':'30px'});
899 jQuery('#dokuwiki__site').css({
918 jQuery('#wiki__text').css('height','');
919 jQuery('#wiki__text').css('min-height','300px');
921 jQuery('#wiki__text').css('max-width','1500px');
[all …]
/plugin/overlay/
H A Dscript.js19 jQuery(this).css('left',position.left);
20 jQuery(this).css('top',position.top);
43 var which = jQuery("#overlay").css('position');
63 var y = jQuery("#overlay").css('top');
64 var x = jQuery("#overlay").css('left');
71 jQuery("#overlay").css('position',which);
76 var which = jQuery("#overlay").css('position');
77 var y = jQuery("#overlay").css('top');
78 var x = jQuery("#overlay").css('left');
79 var width = parseInt(jQuery("#overlay").css('width'));
[all …]
/plugin/templateconfhelper/exe/
H A Dcss.php158 $css = ob_get_contents();
162 $css = _css_applystyle($css,$tplinc);
165 $css = css_moveimports($css);
169 $css = css_compress($css);
175 …$css = preg_replace_callback('#(url\([ \'"]*)('.$base.')(.*?(?:\.(png|gif)))#i','css_datauri',$css
178 http_cached_finish($cache->cache, $css);
181 function _css_applystyle($css,$tplinc){ argument
185 $css = strtr($css,$styleini['replacements']);
187 return $css;
/plugin/syntaxhighlighter/Uncompressed/
H A DshBrushRuby.js13 { regex: dp.sh.RegexLib.SingleLinePerlComments, css: 'comment' }, // one line comments
14 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings
15 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings
16 { regex: new RegExp(':[a-z][A-Za-z0-9_]*', 'g'), css: 'symbol' }, // symbols
17 …{ regex: new RegExp('(\\$|@@|@)\\w+', 'g'), css: 'variable' }, // $global, @instance, and @@cla…
18 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' }, // keywords
19 { regex: new RegExp(this.GetKeywords(builtins), 'gm'), css: 'builtin' } // builtins
H A DshBrushPhp.js47 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments
48 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments
49 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // double quoted strings
50 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // single quoted strings
51 { regex: new RegExp('\\$\\w+', 'g'), css: 'vars' }, // variables
52 { regex: new RegExp(this.GetKeywords(funcs), 'gmi'), css: 'func' }, // functions
53 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' } // keyword
H A DshBrushCpp.js59 { regex: dp.sh.RegexLib.SingleLineCComments, css: 'comment' }, // one line comments
60 { regex: dp.sh.RegexLib.MultiLineCComments, css: 'comment' }, // multiline comments
61 { regex: dp.sh.RegexLib.DoubleQuotedString, css: 'string' }, // strings
62 { regex: dp.sh.RegexLib.SingleQuotedString, css: 'string' }, // strings
63 { regex: new RegExp('^ *#.*', 'gm'), css: 'preprocessor' },
64 { regex: new RegExp(this.GetKeywords(datatypes), 'gm'), css: 'datatypes' },
65 { regex: new RegExp(this.GetKeywords(keywords), 'gm'), css: 'keyword' }
/plugin/syntaxhighlighter/Scripts/
H A DshBrushRuby.js10css:'comment'},{regex:dp.sh.RegexLib.DoubleQuotedString,css:'string'},{regex:dp.sh.RegexLib.Single…
H A DshBrushPhp.js9css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'comment'},{regex:dp.sh.RegexLib.Doubl…
H A DshBrushCpp.js9css:'comment'},{regex:dp.sh.RegexLib.MultiLineCComments,css:'comment'},{regex:dp.sh.RegexLib.Doubl…

12345678910>>...35