Home
last modified time | relevance | path

Searched refs:css (Results 1 – 25 of 852) sorted by relevance

12345678910>>...35

/plugin/ckgedit/scripts/
H A Dcss6.php68 $css="";
105 $css = css_ckg_applystyle($css, $styleini['replacements']);
107 $css = css_ckg_parseless($css);
118 $css .= '
212 $css = strtr($css, $replacements);
215 $css = $less.$css;
216 return $css;
489 $css = preg_replace('/(?<!:)\/\/.*$/m','',$css);
492 $css = preg_replace('![\r\n\t ]+!',' ',$css);
493 $css = preg_replace('/ ?([;,{}\/]) ?/','\\1',$css);
[all …]
/plugin/epub/scripts/
H A Dcss3.php73 $css="";
112 $css = css_applystyle($css, $styleini['replacements']);
117 $css = css_parseless($css);
124 $css = css_compress($css);
205 $css = strtr($css, $replacements);
208 $css = $less.$css;
209 return $css;
501 $css = preg_replace('/(?<!:)\/\/.*$/m','',$css);
504 $css = preg_replace('![\r\n\t ]+!',' ',$css);
505 $css = preg_replace('/ ?([;,{}\/]) ?/','\\1',$css);
[all …]
H A Dcss2.php77 $css = "";
83 $css = css_applystyle($css,$tplinc);
86 $css = css_moveimports($css);
102 $css = strtr($css,$ini['replacements']);
104 return $css;
120 $css = io_readFile($file);
121 if(!$location) return $css;
123 $css = preg_replace('#(url\([ \'"]*)(?!/|http://|https://| |\'|")#','\\1'.$location,$css);
135 function css_moveimports($css) argument
138 return $css;
[all …]
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshBrushAppleScript.js33 css: 'comments' },
36 css: 'comments' },
39 css: 'string' },
42 css: 'color1' },
45 css: 'color1' },
48 css: 'color2' },
51 css: 'keyword' },
54 css: 'keyword' },
57 css: 'color3' },
60 css: 'color4' },
[all …]
H A DshBrushPerl.js62 { regex: /#.*$/gm, css: 'comments' },
63 { regex: /^#!.*\n/g, css: 'preprocessor' }, // shebang
64 { regex: /-?\w+(?=\s*=(>|&gt;))/g, css: 'string' }, // fat comma
67 { regex: /\bq[qwxr]?\([\s\S]*?\)/g, css: 'string' }, // quote-like operators ()
73 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' },
74 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' },
76 { regex: /(?:&amp;|[$@%*]|\$#)\$?[a-zA-Z_](\w+|::)*/g, css: 'variable' },
77 { regex: /\b__(?:END|DATA)__\b[\s\S]*$/g, css: 'comments' },
80 { regex: /(^|\n)=\w[\s\S]*?(\n=cut\s*(?=\n)|$)/g, css: 'comments' }, // pod
82 { regex: new RegExp(this.getKeywords(funcs), 'gm'), css: 'functions' },
[all …]
H A DshBrushHaxe.js30 { regex:SyntaxHighlighter.regexLib.singleLineCComments , css:'comments' },
32 { regex:SyntaxHighlighter.regexLib.multiLineCComments , css:'comments' },
34 { regex:SyntaxHighlighter.regexLib.doubleQuotedString , css:'string' },
36 { regex:SyntaxHighlighter.regexLib.singleQuotedString , css:'string' },
38 { regex:/\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi , css:'value' },
44 { regex:new RegExp ( 'var' , 'gm' ) , css:'variable' },
46 { regex:new RegExp ( 'trace' , 'gm' ) , css:'color1' },
48 { regex:new RegExp ( '#if' , 'gm' ) , css:'comments' },
49 { regex:new RegExp ( '#elseif' , 'gm' ) , css:'comments' },
50 { regex:new RegExp ( '#end' , 'gm' ) , css:'comments' },
[all …]
H A DshBrushPowerShell.js51 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // on…
52 …{ regex: /(&lt;|<)#[\s\S]*?#(&gt;|>)/gm, css: 'comments here' }, // multi-line co…
54 …{ regex: new RegExp('@"\\n[\\s\\S]*?\\n"@', 'gm'), css: 'script string here' }, // do…
55 …{ regex: new RegExp("@'\\n[\\s\\S]*?\\n'@", 'gm'), css: 'script string single here' }, …
56 …{ regex: new RegExp('"(?:\\$\\([^\\)]*\\)|[^"]|`"|"")*[^`]"','g'), css: 'string' }, //…
57 …{ regex: new RegExp("'(?:[^']|'')*'", 'g'), css: 'string single' }, // single quo…
59 …{ regex: new RegExp('[\\$|@|@@](?:(?:global|script|private|env):)?[A-Z0-9_]+', 'gi'), css: 'vari…
61 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' }, // keywor…
62 …{ regex: new RegExp('-'+this.getKeywords(operators), 'gmi'), css: 'operator value' }, /…
63 …{ regex: new RegExp('\\[[A-Z_\\[][A-Z0-9_. `,\\[\\]]*\\]', 'gi'), css: 'constants' }, …
[all …]
H A DshBrushSass.js77 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments
78 { regex: r.singleLineCComments, css: 'comments' }, // singleline comments
79 { regex: r.doubleQuotedString, css: 'string' }, // double quoted strings
80 { regex: r.singleQuotedString, css: 'string' }, // single quoted strings
81 { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors
82 { regex: /\b(-?\d+)(\.\d+)?(px|em|rem|pt|\:|\%|)\b/g, css: 'value' }, // sizes
83 { regex: /\$[\w-]+/g, css: 'variable' }, // variables
84 …{ regex: new RegExp(getKeywordsPrependedBy(statements, '!'), 'g'), css: 'color3' }, // statements
86 { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords
87 { regex: new RegExp(getValuesCSS(values), 'g'), css: 'value' }, // values
[all …]
H A DshBrushPython.js42 { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' },
43 { regex: /^\s*@\w+/gm, css: 'decorator' },
44 { regex: /(['\"]{3})([^\1])*?\1/gm, css: 'comments' },
45 { regex: /"(?!")(?:\.|\\\"|[^\""\n])*"/gm, css: 'string' },
46 { regex: /'(?!')(?:\.|(\\\')|[^\''\n])*'/gm, css: 'string' },
47 { regex: /\+|\-|\*|\/|\%|=|==/gm, css: 'keyword' },
48 { regex: /\b\d+\.?\w*/g, css: 'value' },
49 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' },
50 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' },
51 { regex: new RegExp(this.getKeywords(special), 'gm'), css: 'color1' }
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshBrushAppleScript.js17 css: 'comments' },
20 css: 'comments' },
23 css: 'string' },
26 css: 'color1' },
29 css: 'color1' },
32 css: 'color2' },
35 css: 'keyword' },
38 css: 'keyword' },
41 css: 'color3' },
44 css: 'color4' },
[all …]
H A DshBrushPerl.js46 { regex: /#.*$/gm, css: 'comments' },
47 { regex: /^#!.*\n/g, css: 'preprocessor' }, // shebang
48 { regex: /-?\w+(?=\s*=(>|&gt;))/g, css: 'string' }, // fat comma
51 { regex: /\bq[qwxr]?\([\s\S]*?\)/g, css: 'string' }, // quote-like operators ()
57 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' },
58 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' },
60 { regex: /(?:&amp;|[$@%*]|\$#)\$?[a-zA-Z_](\w+|::)*/g, css: 'variable' },
61 { regex: /\b__(?:END|DATA)__\b[\s\S]*$/g, css: 'comments' },
64 { regex: /(^|\n)=\w[\s\S]*?(\n=cut\s*(?=\n)|$)/g, css: 'comments' }, // pod
66 { regex: new RegExp(this.getKeywords(funcs), 'gm'), css: 'functions' },
[all …]
H A DshBrushHaxe.js14 { regex:SyntaxHighlighter.regexLib.singleLineCComments , css:'comments' },
16 { regex:SyntaxHighlighter.regexLib.multiLineCComments , css:'comments' },
18 { regex:SyntaxHighlighter.regexLib.doubleQuotedString , css:'string' },
20 { regex:SyntaxHighlighter.regexLib.singleQuotedString , css:'string' },
22 { regex:/\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi , css:'value' },
28 { regex:new RegExp ( 'var' , 'gm' ) , css:'variable' },
30 { regex:new RegExp ( 'trace' , 'gm' ) , css:'color1' },
32 { regex:new RegExp ( '#if' , 'gm' ) , css:'comments' },
33 { regex:new RegExp ( '#elseif' , 'gm' ) , css:'comments' },
34 { regex:new RegExp ( '#end' , 'gm' ) , css:'comments' },
[all …]
H A DshBrushPowerShell.js35 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // on…
36 …{ regex: /(&lt;|<)#[\s\S]*?#(&gt;|>)/gm, css: 'comments here' }, // multi-line co…
38 …{ regex: new RegExp('@"\\n[\\s\\S]*?\\n"@', 'gm'), css: 'script string here' }, // do…
39 …{ regex: new RegExp("@'\\n[\\s\\S]*?\\n'@", 'gm'), css: 'script string single here' }, …
40 …{ regex: new RegExp('"(?:\\$\\([^\\)]*\\)|[^"]|`"|"")*[^`]"','g'), css: 'string' }, //…
41 …{ regex: new RegExp("'(?:[^']|'')*'", 'g'), css: 'string single' }, // single quo…
43 …{ regex: new RegExp('[\\$|@|@@](?:(?:global|script|private|env):)?[A-Z0-9_]+', 'gi'), css: 'vari…
45 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' }, // keywor…
46 …{ regex: new RegExp('-'+this.getKeywords(operators), 'gmi'), css: 'operator value' }, /…
47 …{ regex: new RegExp('\\[[A-Z_\\[][A-Z0-9_. `,\\[\\]]*\\]', 'gi'), css: 'constants' }, …
[all …]
H A DshBrushSass.js61 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments
62 { regex: r.singleLineCComments, css: 'comments' }, // singleline comments
63 { regex: r.doubleQuotedString, css: 'string' }, // double quoted strings
64 { regex: r.singleQuotedString, css: 'string' }, // single quoted strings
65 { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors
66 { regex: /\b(-?\d+)(\.\d+)?(px|em|rem|pt|\:|\%|)\b/g, css: 'value' }, // sizes
67 { regex: /\$[\w-]+/g, css: 'variable' }, // variables
68 …{ regex: new RegExp(getKeywordsPrependedBy(statements, '!'), 'g'), css: 'color3' }, // statements
70 { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords
71 { regex: new RegExp(getValuesCSS(values), 'g'), css: 'value' }, // values
[all …]
H A DshBrushPython.js26 { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' },
27 { regex: /^\s*@\w+/gm, css: 'decorator' },
28 { regex: /(['\"]{3})([^\1])*?\1/gm, css: 'comments' },
29 { regex: /"(?!")(?:\.|\\\"|[^\""\n])*"/gm, css: 'string' },
30 { regex: /'(?!')(?:\.|(\\\')|[^\''\n])*'/gm, css: 'string' },
31 { regex: /\+|\-|\*|\/|\%|=|==/gm, css: 'keyword' },
32 { regex: /\b\d+\.?\w*/g, css: 'value' },
33 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' },
34 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' },
35 { regex: new RegExp(this.getKeywords(special), 'gm'), css: 'color1' }
H A DshBrushCSharp.js19 var css = (match[0].indexOf("///") == 0)
24 return [new SyntaxHighlighter.Match(match[0], match.index, css)];
29 …{ regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
30 { regex: /@"(?:[^"]|"")*"/g, css: 'string' }, // @-quoted strings
31 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // strings
32 { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // strings
33 …{ regex: /^\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endr…
34 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, // c# keyword
35 …{ regex: /\bpartial(?=\s+(?:class|interface|struct)\b)/g, css: 'keyword' }, // contextual keywor…
36 … { regex: /\byield(?=\s+(?:return|break)\b)/g, css: 'keyword' } // contextual keyword: 'yield'
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
H A Dcss_optimiser.php72 $css = new csstidy(); variable
100 <?php echo $lang[$l][0]; echo $css->version; ?>)
264 $css->load_template($_REQUEST['custom'],false);
269 $css->load_template('highest_compression');
273 $css->load_template('high_compression');
277 $css->load_template('low_compression');
297 $ratio = $css->print->get_ratio();
298 $diff = $css->print->get_diff();
314 if(count($css->log) > 0): ?>
317 foreach($css->log as $line => $array)
[all …]
/plugin/geonav/tpl/startermap/
H A Dstyle.ini19 css/basic.css = screen key
20 ../dokuwiki/css/_imgdetail.css = screen
21 ../dokuwiki/css/_media_popup.css = screen
22 ../dokuwiki/css/_media_fullscreen.css = screen
23 ../dokuwiki/css/_fileuploader.css = screen
24 ../dokuwiki/css/_tabs.css = screen
25 ../dokuwiki/css/_links.css = screen
26 ../dokuwiki/css/_toc.css = screen
27 ../dokuwiki/css/_footnotes.css = screen
28 ../dokuwiki/css/_search.css = screen
[all …]
/plugin/html2pdf/html2pdf/html2ps/
H A Dcss.rules.page.inc.php65 var $css; variable in CSSAtRulePage
97 var $css; variable in CSSAtRuleMarginBox
107 $css = $css . $this->_getCSSDefaults($selector);
189 return $css;
198 return $css;
222 $css = $raw_suffix;
246 return $css;
284 return $css;
308 $css = $raw_suffix;
325 return $css;
[all …]
/plugin/bpmnio/
H A Dall.less2 @import "vendor/bpmn-js/dist/assets/bpmn-font/css/bpmn.css";
3 @import "vendor/bpmn-js/dist/assets/bpmn-font/css/bpmn-codes.css";
4 @import "vendor/bpmn-js/dist/assets/bpmn-font/css/bpmn-embedded.css";
7 @import "vendor/dmn-js/dist/assets/dmn-font/css/dmn.css";
8 @import "vendor/dmn-js/dist/assets/dmn-font/css/dmn-codes.css";
9 @import "vendor/dmn-js/dist/assets/dmn-font/css/dmn-embedded.css";
11 @import "css/editor.less";
12 @import "css/toolbar.less";
13 @import "css/hide_data.less";
14 @import "css/edit_button.less";
[all …]
/plugin/socialshareprivacy2/SSP/stylesheets/
H A Djquery.socialshareprivacy.css1 @import url("jquery.socialshareprivacy.common.css");
2 @import url("jquery.socialshareprivacy.buffer.css");
3 @import url("jquery.socialshareprivacy.delicious.css");
4 @import url("jquery.socialshareprivacy.disqus.css");
5 @import url("jquery.socialshareprivacy.facebook.css");
6 @import url("jquery.socialshareprivacy.flattr.css");
7 @import url("jquery.socialshareprivacy.gplus.css");
10 @import url("jquery.socialshareprivacy.mail.css");
12 @import url("jquery.socialshareprivacy.reddit.css");
14 @import url("jquery.socialshareprivacy.tumblr.css");
[all …]
/plugin/odt/helper/
H A Ddwcssloader.php97 $css = '';
147 $css = css_applystyle($css, $styleini['replacements']);
150 $css = css_parseless($css);
153 $css = css_applystyle($css, DOKU_INC . 'lib/tpl/' . $template . '/');
156 return $css;
204 $css = '';
207 $css .= '.mediafile {';
211 $css .= '}';
230 $css .= ".mf_$class {";
232 $css .= '}';
[all …]
/plugin/scrape/HTMLPurifier/Filter/
H A DExtractStyleBlocks.php
/plugin/syntaxhighlighter4/dist/
H A Dsyntaxhighlighter.js2388 this.css = css;
3862 css: 'value'
3916 css: 'plain'
4127 css: 'value'
4130 css: 'value'
4139 css: 'value'
4184 css: 'value'
4187 css: 'value'
4314 css: 'value'
5606 css: 'string'
[all …]
/plugin/tplmod/
H A Dscript.js10 tplmod_aside_width = parseInt(jQuery("aside#dokuwiki__aside").css('width'));
14 tplmod_aside_width = parseInt(jQuery("div#dokuwiki__aside").css('width'));
18 tplmod_content_padding.t =jQuery("div.wrapper").css('padding-top');
19 tplmod_content_padding.b =jQuery("div.wrapper").css('padding-bottom');
31 jQuery("html").css('background-color',JSINFO['tmplft_bgcolor'] );
32 jQuery("body").css('background-color',JSINFO['tmplft_bgcolor'] );
77 jQuery("span#dw__tagline").css("padding-top", "2px");
182 jQuery("div#dokuwiki__content").css('padding-left','0px');
191 jQuery("div.wrapper").css('padding-top','0px');
192 jQuery("div.wrapper").css('padding-bottom','0px');
[all …]

12345678910>>...35