Home
last modified time | relevance | path

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

12345678910>>...39

/plugin/ckgedit/scripts/
Dcss6.php68 $css="";
75 $css .= '@media screen {';
76 css_ckg_interwiki($css);
77 css_ckg_filetypes($css);
78 $css .= '}';
95 …$css .= NL.'@media screen { /* START screen styles */'.NL.$css_ckg_content.NL.'} /* /@media END s…
99 … $css .= NL.'/* START rest styles */ '.NL.$css_ckg_content.NL.'/* END rest styles */'.NL;
105 $css = css_ckg_applystyle($css, $styleini['replacements']);
107 $css = css_ckg_parseless($css);
112 …$css = preg_replace_callback('#(url\([ \'"]*)('.$base.')(.*?(?:\.(png|gif)))#i','css_ckg_datauri',…
[all …]
/plugin/epub/scripts/
Dcss3.php73 $css="";
80 $css .= '@media screen {';
81 css_interwiki($css);
82 css_filetypes($css);
83 $css .= '}';
102 …$css .= NL.'@media screen { /* START screen styles */'.NL.$css_content.NL.'} /* /@media END scree…
106 $css .= NL.'/* START rest styles */ '.NL.$css_content.NL.'/* END rest styles */'.NL;
112 $css = css_applystyle($css, $styleini['replacements']);
117 $css = css_parseless($css);
124 $css = css_compress($css);
[all …]
Dcss2.php77 $css = "";
79 $css .= css_loadfile($file, $location);
83 $css = css_applystyle($css,$tplinc);
86 $css = css_moveimports($css);
87 io_saveFile($path . 'Styles/style.css' ,$css);
99 function css_applystyle($css,$tplinc){ argument
102 $css = strtr($css,$ini['replacements']);
104 return $css;
120 $css = io_readFile($file);
121 if(!$location) return $css;
[all …]
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
Dcss_optimiser.php72 $css = new csstidy(); variable
79 if(isset($_REQUEST['case_properties'])) $css->set_cfg('case_properties',$_REQUEST['case_properties'…
80 if(isset($_REQUEST['lowercase'])) $css->set_cfg('lowercase_s',true);
81 if(!isset($_REQUEST['compress_c']) && isset($_REQUEST['post'])) $css->set_cfg('compress_colors',fal…
82 if(!isset($_REQUEST['compress_fw']) && isset($_REQUEST['post'])) $css->set_cfg('compress_font-weigh…
83 if(isset($_REQUEST['merge_selectors'])) $css->set_cfg('merge_selectors', $_REQUEST['merge_selectors…
84 if(isset($_REQUEST['optimise_shorthands'])) $css->set_cfg('optimise_shorthands',$_REQUEST['optimise…
85 if(!isset($_REQUEST['rbs']) && isset($_REQUEST['post'])) $css->set_cfg('remove_bslash',false);
86 if(isset($_REQUEST['preserve_css'])) $css->set_cfg('preserve_css',true);
87 if(isset($_REQUEST['sort_sel'])) $css->set_cfg('sort_selectors',true);
[all …]
/plugin/geonav/tpl/startermap/
Dstyle.ini19 css/basic.css = screen
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/syntaxhighlighter3/sxh3/src/js/
DshBrushAppleScript.js17 css: 'comments' }, property
20 css: 'comments' }, property
23 css: 'string' }, property
26 css: 'color1' }, property
29 css: 'color1' }, property
32 css: 'color2' }, property
35 css: 'keyword' }, property
38 css: 'keyword' }, property
41 css: 'color3' }, property
44 css: 'color4' }, property
[all …]
DshBrushPerl.js45 …{ regex: /(<<|&lt;&lt;)((\w+)|(['"])(.+?)\4)[\s\S]+?\n\3\5\n/g, css: 'string' }, // here doc (mayb… property
46 { regex: /#.*$/gm, css: 'comments' }, property
47 { regex: /^#!.*\n/g, css: 'preprocessor' }, // shebang property
48 { regex: /-?\w+(?=\s*=(>|&gt;))/g, css: 'string' }, // fat comma property
51 { regex: /\bq[qwxr]?\([\s\S]*?\)/g, css: 'string' }, // quote-like operators () property
52 { regex: /\bq[qwxr]?\{[\s\S]*?\}/g, css: 'string' }, // quote-like operators {} property
53 { regex: /\bq[qwxr]?\[[\s\S]*?\]/g, css: 'string' }, // quote-like operators [] property
54 { regex: /\bq[qwxr]?(<|&lt;)[\s\S]*?(>|&gt;)/g, css: 'string' }, // quote-like operators <> property
55 { regex: /\bq[qwxr]?([^\w({<[])[\s\S]*?\1/g, css: 'string' }, // quote-like operators non-paired property
57 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
[all …]
DshBrushHaxe.js14 { regex:SyntaxHighlighter.regexLib.singleLineCComments , css:'comments' }, property
16 { regex:SyntaxHighlighter.regexLib.multiLineCComments , css:'comments' }, property
18 { regex:SyntaxHighlighter.regexLib.doubleQuotedString , css:'string' }, property
20 { regex:SyntaxHighlighter.regexLib.singleQuotedString , css:'string' }, property
22 { regex:/\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi , css:'value' }, property
24 { regex:new RegExp ( this.getKeywords ( inits ) , 'gm' ) , css:'color3' }, property
26 { regex:new RegExp ( this.getKeywords ( keywords ) , 'gm' ) , css:'keyword' }, property
28 { regex:new RegExp ( 'var' , 'gm' ) , css:'variable' }, property
30 { regex:new RegExp ( 'trace' , 'gm' ) , css:'color1' }, property
32 { regex:new RegExp ( '#if' , 'gm' ) , css:'comments' }, property
[all …]
DshBrushPowerShell.js34 …{ regex: new RegExp('^\\s*#[#\\s]*\\.('+this.getKeywords(commenthelp)+').*$', 'gim'), css: 'prep… property
35 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // on… property
36 …{ regex: /(&lt;|<)#[\s\S]*?#(&gt;|>)/gm, css: 'comments here' }, // multi-line co… property
38 …{ regex: new RegExp('@"\\n[\\s\\S]*?\\n"@', 'gm'), css: 'script string here' }, // do… property
39 …{ regex: new RegExp("@'\\n[\\s\\S]*?\\n'@", 'gm'), css: 'script string single here' }, … property
40 …{ regex: new RegExp('"(?:\\$\\([^\\)]*\\)|[^"]|`"|"")*[^`]"','g'), css: 'string' }, //… property
41 …{ regex: new RegExp("'(?:[^']|'')*'", 'g'), css: 'string single' }, // single quo… property
43 …{ regex: new RegExp('[\\$|@|@@](?:(?:global|script|private|env):)?[A-Z0-9_]+', 'gi'), css: 'vari… property
44 …(?:\\b'+verbs.replace(/ /g, '\\b|\\b')+')-[a-zA-Z_][a-zA-Z0-9_]*', 'gmi'), css: 'functions' }, … property
45 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' }, // keywor… property
[all …]
DshBrushSass.js61 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments property
62 { regex: r.singleLineCComments, css: 'comments' }, // singleline comments property
63 { regex: r.doubleQuotedString, css: 'string' }, // double quoted strings property
64 { regex: r.singleQuotedString, css: 'string' }, // single quoted strings property
65 { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors property
66 { regex: /\b(-?\d+)(\.\d+)?(px|em|rem|pt|\:|\%|)\b/g, css: 'value' }, // sizes property
67 { regex: /\$[\w-]+/g, css: 'variable' }, // variables property
68 …{ regex: new RegExp(getKeywordsPrependedBy(statements, '!'), 'g'), css: 'color3' }, // statements property
69 …{ regex: new RegExp(getKeywordsPrependedBy(preprocessor, '@'), 'g'), css: 'preprocessor' }, // pre… property
70 { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords property
[all …]
DshBrushPython.js26 { regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, property
27 { regex: /^\s*@\w+/gm, css: 'decorator' }, property
28 { regex: /(['\"]{3})([^\1])*?\1/gm, css: 'comments' }, property
29 { regex: /"(?!")(?:\.|\\\"|[^\""\n])*"/gm, css: 'string' }, property
30 { regex: /'(?!')(?:\.|(\\\')|[^\''\n])*'/gm, css: 'string' }, property
31 { regex: /\+|\-|\*|\/|\%|=|==/gm, css: 'keyword' }, property
32 { regex: /\b\d+\.?\w*/g, css: 'value' }, property
33 { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, property
34 { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' }, property
35 { regex: new RegExp(this.getKeywords(special), 'gm'), css: 'color1' } property
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
DshBrushAppleScript.js33 css: 'comments' }, property
36 css: 'comments' }, property
39 css: 'string' }, property
42 css: 'color1' }, property
45 css: 'color1' }, property
48 css: 'color2' }, property
51 css: 'keyword' }, property
54 css: 'keyword' }, property
57 css: 'color3' }, property
60 css: 'color4' }, property
[all …]
DshBrushPerl.js61 …{ regex: /(<<|&lt;&lt;)((\w+)|(['"])(.+?)\4)[\s\S]+?\n\3\5\n/g, css: 'string' }, // here doc (mayb… property
62 { regex: /#.*$/gm, css: 'comments' }, property
63 { regex: /^#!.*\n/g, css: 'preprocessor' }, // shebang property
64 { regex: /-?\w+(?=\s*=(>|&gt;))/g, css: 'string' }, // fat comma property
67 { regex: /\bq[qwxr]?\([\s\S]*?\)/g, css: 'string' }, // quote-like operators () property
68 { regex: /\bq[qwxr]?\{[\s\S]*?\}/g, css: 'string' }, // quote-like operators {} property
69 { regex: /\bq[qwxr]?\[[\s\S]*?\]/g, css: 'string' }, // quote-like operators [] property
70 { regex: /\bq[qwxr]?(<|&lt;)[\s\S]*?(>|&gt;)/g, css: 'string' }, // quote-like operators <> property
71 { regex: /\bq[qwxr]?([^\w({<[])[\s\S]*?\1/g, css: 'string' }, // quote-like operators non-paired property
73 { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, property
[all …]
DshBrushHaxe.js30 { regex:SyntaxHighlighter.regexLib.singleLineCComments , css:'comments' }, property
32 { regex:SyntaxHighlighter.regexLib.multiLineCComments , css:'comments' }, property
34 { regex:SyntaxHighlighter.regexLib.doubleQuotedString , css:'string' }, property
36 { regex:SyntaxHighlighter.regexLib.singleQuotedString , css:'string' }, property
38 { regex:/\b([\d]+(\.[\d]+)?|0x[a-f0-9]+)\b/gi , css:'value' }, property
40 { regex:new RegExp ( this.getKeywords ( inits ) , 'gm' ) , css:'color3' }, property
42 { regex:new RegExp ( this.getKeywords ( keywords ) , 'gm' ) , css:'keyword' }, property
44 { regex:new RegExp ( 'var' , 'gm' ) , css:'variable' }, property
46 { regex:new RegExp ( 'trace' , 'gm' ) , css:'color1' }, property
48 { regex:new RegExp ( '#if' , 'gm' ) , css:'comments' }, property
[all …]
DshBrushPowerShell.js50 …{ regex: new RegExp('^\\s*#[#\\s]*\\.('+this.getKeywords(commenthelp)+').*$', 'gim'), css: 'prep… property
51 …{ regex: SyntaxHighlighter.regexLib.singleLinePerlComments, css: 'comments' }, // on… property
52 …{ regex: /(&lt;|<)#[\s\S]*?#(&gt;|>)/gm, css: 'comments here' }, // multi-line co… property
54 …{ regex: new RegExp('@"\\n[\\s\\S]*?\\n"@', 'gm'), css: 'script string here' }, // do… property
55 …{ regex: new RegExp("@'\\n[\\s\\S]*?\\n'@", 'gm'), css: 'script string single here' }, … property
56 …{ regex: new RegExp('"(?:\\$\\([^\\)]*\\)|[^"]|`"|"")*[^`]"','g'), css: 'string' }, //… property
57 …{ regex: new RegExp("'(?:[^']|'')*'", 'g'), css: 'string single' }, // single quo… property
59 …{ regex: new RegExp('[\\$|@|@@](?:(?:global|script|private|env):)?[A-Z0-9_]+', 'gi'), css: 'vari… property
60 …(?:\\b'+verbs.replace(/ /g, '\\b|\\b')+')-[a-zA-Z_][a-zA-Z0-9_]*', 'gmi'), css: 'functions' }, … property
61 …{ regex: new RegExp(this.getKeywords(keywords), 'gmi'), css: 'keyword' }, // keywor… property
[all …]
DshBrushSass.js77 { regex: r.multiLineCComments, css: 'comments' }, // multiline comments property
78 { regex: r.singleLineCComments, css: 'comments' }, // singleline comments property
79 { regex: r.doubleQuotedString, css: 'string' }, // double quoted strings property
80 { regex: r.singleQuotedString, css: 'string' }, // single quoted strings property
81 { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors property
82 { regex: /\b(-?\d+)(\.\d+)?(px|em|rem|pt|\:|\%|)\b/g, css: 'value' }, // sizes property
83 { regex: /\$[\w-]+/g, css: 'variable' }, // variables property
84 …{ regex: new RegExp(getKeywordsPrependedBy(statements, '!'), 'g'), css: 'color3' }, // statements property
85 …{ regex: new RegExp(getKeywordsPrependedBy(preprocessor, '@'), 'g'), css: 'preprocessor' }, // pre… property
86 { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords property
[all …]
/plugin/pagecss/vendor/csstidy-2.2.1/
H A Dcss_optimiser.php109 $css = new csstidy(); variable
118 if (isset($_REQUEST['case_properties'])) $css->set_cfg('case_properties',$_REQUEST['case_properties…
119 if (isset($_REQUEST['lowercase'])) $css->set_cfg('lowercase_s',true);
120 if (!isset($_REQUEST['compress_c']) && isset($_REQUEST['post'])) $css->set_cfg('compress_colors',fa…
121 if (!isset($_REQUEST['compress_fw']) && isset($_REQUEST['post'])) $css->set_cfg('compress_font-weig…
122 if (isset($_REQUEST['merge_selectors'])) $css->set_cfg('merge_selectors', $_REQUEST['merge_selector…
123 if (isset($_REQUEST['optimise_shorthands'])) $css->set_cfg('optimise_shorthands',$_REQUEST['optimis…
124 if (!isset($_REQUEST['rbs']) && isset($_REQUEST['post'])) $css->set_cfg('remove_bslash',false);
125 if (isset($_REQUEST['preserve_css'])) $css->set_cfg('preserve_css',true);
126 if (isset($_REQUEST['sort_sel'])) $css->set_cfg('sort_selectors',true);
[all …]
/plugin/asciidocjs/node_modules/clean-css/
DHistory.md1 [4.2.4 / 2021-10-21](https://github.com/jakubpawlowicz/clean-css/compare/v4.2.3...v4.2.4)
7 [4.2.3 / 2020-01-28](https://github.com/jakubpawlowicz/clean-css/compare/v4.2.2...v4.2.3)
10 * Fixed issue [#1106](https://github.com/jakubpawlowicz/clean-css/issues/1106) - regression in hand…
12 [4.2.2 / 2020-01-25](https://github.com/jakubpawlowicz/clean-css/compare/v4.2.1...v4.2.2)
16 * Fixed issue [#1077](https://github.com/jakubpawlowicz/clean-css/issues/1077) - local fonts with c…
17 * Fixed issue [#1082](https://github.com/jakubpawlowicz/clean-css/issues/1082) - correctly convert …
18 * Fixed issue [#1085](https://github.com/jakubpawlowicz/clean-css/issues/1085) - prevent unquoting …
20 [4.2.1 / 2018-08-07](https://github.com/jakubpawlowicz/clean-css/compare/v4.2.0...v4.2.1)
25 [4.2.0 / 2018-08-02](https://github.com/jakubpawlowicz/clean-css/compare/4.1...4.2.0)
28 * Adds `process` method for compatibility with optimize-css-assets-webpack-plugin.
[all …]
/plugin/bpmnio/
Dall.less1 @import "vendor/bpmn-js/dist/assets/diagram-js.css";
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";
6 @import "vendor/dmn-js/dist/assets/diagram-js.css";
7 @import "vendor/dmn-js/dist/assets/dmn-js-shared.css";
8 @import "vendor/dmn-js/dist/assets/dmn-js-drd.css";
9 @import "vendor/dmn-js/dist/assets/dmn-js-decision-table.css";
10 @import "vendor/dmn-js/dist/assets/dmn-js-literal-expression.css";
11 @import "vendor/dmn-js/dist/assets/dmn-font/css/dmn.css";
[all …]
/plugin/html2pdf/html2pdf/html2ps/
Dcss.rules.page.inc.php65 var $css; variable in CSSAtRulePage
71 $this->css =& new CSSPropertyCollection();
91 $this->css->add_property($property);
97 var $css; variable in CSSAtRuleMarginBox
106 …$css = "-html2ps-html-content: ''; content: ''; width: auto; height: auto; margin: 0; border: none…
107 $css = $css . $this->_getCSSDefaults($selector);
109 $this->css = new CSSRule(array(
111 parse_css_properties($css, $null),
166 $this->css->add_property($property);
170 return $this->css->get_property($code);
[all …]
/plugin/odt/helper/
Ddwcssloader.php97 $css = '';
98 $css .= $this->get_css_for_filetypes();
107 $css .= "\n@media screen {\n" . $css_content . "\n}\n";
110 $css .= "\n@media screen {\n" . $css_content . "\n}\n";
113 $css .= "\n@media print {\n" . $css_content . "\n}\n";
116 $css .= "\n@media print {\n" . $css_content . "\n}\n";
118 $css .= $css_content;
132 …$css .= NL.'@media screen { /* START screen styles */'.NL.$css_content.NL.'} /* /@media END screen…
135 …$css .= NL.'@media print { /* START print styles */'.NL.$css_content.NL.'} /* /@media END print st…
140 … $css .= NL.'/* START rest styles */ '.NL.$css_content.NL.'/* END rest styles */'.NL;
[all …]
/plugin/socialshareprivacy2/SSP/stylesheets/
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");
8 @import url("jquery.socialshareprivacy.hackernews.css");
9 @import url("jquery.socialshareprivacy.linkedin.css");
10 @import url("jquery.socialshareprivacy.mail.css");
[all …]
/plugin/syntaxhighlighter4/dist/
Dsyntaxhighlighter.js2382 function Match(value, index, css) {
2388 this.css = css;
2478 …esultMatch === 'string') resultMatch = [new _match.Match(resultMatch, match.index, regexInfo.css)];
2599 wrapLinesWithCode: function wrapLinesWithCode(str, css) {
2600 if (str == null || str.length == 0 || str == '\n' || css == null) return str;
2634 … line = line.length === 0 ? spaces : spaces + '<code class="' + css + '">' + line + '</code>';
2805 …pos), matchBrushName + 'plain') + _this.wrapLinesWithCode(match.value, matchBrushName + match.css);
3727 left: { regex: regexGroup.left, css: 'script' }, property
3728 right: { regex: regexGroup.right, css: 'script' }, property
3764 css: 'comments' property
[all …]
/plugin/tplmod/
Dscript.js11 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('background-color',JSINFO['tmplft_bgcolor'] );
[all …]
/plugin/scrape/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Filter/
DExtractStyleBlocks.php116 * @param string $css CSS styling to clean
122 public function cleanCSS($css, $config, $context) argument
132 $css = trim($css);
133 if (strncmp('<!--', $css, 4) === 0) {
134 $css = substr($css, 4);
136 if (strlen($css) > 3 && substr($css, -3) == '-->') {
137 $css = substr($css, 0, -3);
139 $css = trim($css);
141 $this->_tidy->parse($css);
146 foreach ($this->_tidy->css as $k => $decls) {
[all …]

12345678910>>...39