/plugin/ckgedit/scripts/ |
H A D | css6.php | 68 $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 D | css3.php | 73 $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 D | css2.php | 77 $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 D | shBrushAppleScript.js | 33 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 D | shBrushPerl.js | 62 { regex: /#.*$/gm, css: 'comments' }, 63 { regex: /^#!.*\n/g, css: 'preprocessor' }, // shebang 64 { regex: /-?\w+(?=\s*=(>|>))/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: /(?:&|[$@%*]|\$#)\$?[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 D | shBrushHaxe.js | 30 { 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 D | shBrushPowerShell.js | 51 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // on… 52 …{ regex: /(<|<)#[\s\S]*?#(>|>)/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 D | shBrushSass.js | 77 { 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 D | shBrushPython.js | 42 { 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 D | shBrushAppleScript.js | 17 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 D | shBrushPerl.js | 46 { regex: /#.*$/gm, css: 'comments' }, 47 { regex: /^#!.*\n/g, css: 'preprocessor' }, // shebang 48 { regex: /-?\w+(?=\s*=(>|>))/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: /(?:&|[$@%*]|\$#)\$?[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 D | shBrushHaxe.js | 14 { 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 D | shBrushPowerShell.js | 35 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // on… 36 …{ regex: /(<|<)#[\s\S]*?#(>|>)/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 D | shBrushSass.js | 61 { 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 D | shBrushPython.js | 26 { 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 D | shBrushCSharp.js | 19 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 D | css_optimiser.php | 72 $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 D | style.ini | 19 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 D | css.rules.page.inc.php | 65 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 D | all.less | 2 @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 D | jquery.socialshareprivacy.css | 1 @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 D | dwcssloader.php | 97 $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 D | ExtractStyleBlocks.php |
|
/plugin/syntaxhighlighter4/dist/ |
H A D | syntaxhighlighter.js | 2388 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 D | script.js | 11 tplmod_aside_width = parseInt(jQuery("aside#dokuwiki__aside").css('width'));
12 tplmod_content_width = parseInt(jQuery("article#dokuwiki__content").css('width'));
16 tplmod_aside_width = parseInt(jQuery("nav#dokuwiki__aside").css('width'));
17 tplmod_content_width = parseInt(jQuery("main#dokuwiki__content").css('width'));
20 tplmod_aside_width = parseInt(jQuery("div#dokuwiki__aside").css('width'));
21 tplmod_content_width = parseInt(jQuery("div#dokuwiki__content").css('width'));
24 tplmod_content_padding.t =jQuery("div.wrapper").css('padding-top');
25 tplmod_content_padding.b =jQuery("div.wrapper").css('padding-bottom');
37 jQuery("html").css('background-color',JSINFO['tmplft_bgcolor'] );
38 jQuery("body").css('backgroun [all...] |