Melliti opened a new issue #951:
URL: https://github.com/apache/royale-asjs/issues/951
Hi,
I have a minor issue in my migration with CSS. My css is "Flex style" CSS in
camelCase and doesn't provide units (px, em, ...) for properties. For example:
```
.container {
cornerRadius:10;
borderColor: #777777;
fontFamily: Verdana;
fontSize: 12;
backgroundColor: #efefef;
}
```
Now, it should be
```
.container {
border-radius :10px;
border: solid 1px #777777;
font-family: Verdana;
font-size: 12px;
background-color: #efefef;
}
```
I created a program to convert camelCase into kebab case but i still have
issue with values in px and some properties that doesn't exist like
```cornerRadius``` which would become ```corner-radius``` with my program.
Does MXMLC have a flag to convert flex CSS in a real CSS readable by the
browser ? I must achieve the migration without modifying too much the code
base.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]