mirror of
https://github.com/gnosygnu/xowa.git
synced 2026-03-02 03:49:30 +00:00
Css: Do not preprend selector for body [#815]
This commit is contained in:
@@ -1,8 +1,22 @@
|
||||
/*
|
||||
XOWA: the XOWA Offline Wiki Application
|
||||
Copyright (C) 2012-2020 gnosygnu@gmail.com
|
||||
|
||||
XOWA is licensed under the terms of the General Public License (GPL) Version 3,
|
||||
or alternatively under the terms of the Apache License Version 2.0.
|
||||
|
||||
You may use XOWA according to either of these licenses as is most appropriate
|
||||
for your project on a case-by-case basis.
|
||||
|
||||
The terms of each license can be found in the source code repository:
|
||||
|
||||
GPLv3 License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-GPLv3.txt
|
||||
Apache License: https://github.com/gnosygnu/xowa/blob/master/LICENSE-APACHE2.txt
|
||||
*/
|
||||
package gplx.xowa.xtns.template_styles;
|
||||
|
||||
import gplx.Bry_;
|
||||
import gplx.String_;
|
||||
import gplx.langs.javascripts.JsString_;
|
||||
import gplx.langs.javascripts.util.regex.JsPattern_;
|
||||
import gplx.xowa.htmls.minifys.XoCssMin;
|
||||
|
||||
@@ -65,19 +79,19 @@ public class XoCssTransformer {
|
||||
if (i > 0)
|
||||
sb.append(",");
|
||||
|
||||
// prepend the selector
|
||||
sb.append(selector);
|
||||
String item = items[i].trim();
|
||||
if (item.length() > 0) { // ignore empty items
|
||||
// prepend the selector, except if it starts with 'body'
|
||||
if (!String_.MidByLenSafe(item, 0, 4).equals("body")) {
|
||||
sb.append(selector);
|
||||
sb.append(' ');
|
||||
}
|
||||
|
||||
// for pretty-printing, only add `\s` if item doesn't start with space
|
||||
String item = items[i];
|
||||
if (item.length() > 0 && !Character.isWhitespace(item.charAt(0))) {
|
||||
sb.append(' ');
|
||||
// put back the item
|
||||
sb.append(item);
|
||||
}
|
||||
|
||||
// put back the item
|
||||
sb.append(item);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else {
|
||||
// EX: `@media`
|
||||
sb.append(match);
|
||||
|
||||
Reference in New Issue
Block a user