This is an automated email from the ASF dual-hosted git repository.
hiedra pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
The following commit(s) were added to refs/heads/develop by this push:
new 341eefc Small fix in the general style definition for *:after and
*:before in Jewel's general defaults.css file.
341eefc is described below
commit 341eefc2dfb246a1464daf9ee7d95b558f57372b
Author: Maria José Esteve <[email protected]>
AuthorDate: Thu Mar 3 02:39:15 2022 +0100
Small fix in the general style definition for *:after and *:before in
Jewel's general defaults.css file.
---
frameworks/projects/Jewel/src/main/resources/defaults.css | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/frameworks/projects/Jewel/src/main/resources/defaults.css
b/frameworks/projects/Jewel/src/main/resources/defaults.css
index 25eaea0..06f35a7 100644
--- a/frameworks/projects/Jewel/src/main/resources/defaults.css
+++ b/frameworks/projects/Jewel/src/main/resources/defaults.css
@@ -16,7 +16,12 @@
*/
@namespace j "library://ns.apache.org/royale/jewel";
@namespace "http://www.w3.org/1999/xhtml";
-*, ::after, ::before {
+
+*,
+*:before,
+*:after {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
box-sizing: border-box; }
html, body {