apache / apache/royale-asjs

migrate flex css to real css

Open
#951 4 comments 0 reactions 0 assignees View on GitHub
Dominant language
ActionScript
Stars
380
Forks
120
PR merge metrics
No merged PRs in 30d

Description

Hi,

I have an issue in my migration from Flex to AR with CSS. My CSS from the Flex project is 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;
}
```

Does a solution exist to convert the old CSS into a CSS file readable by web browsers ?

Contributor guide

No contributing guide indexed for this repository

Research direction

The issue names no repository files, tests, or entry points. Start by locating the Royale ASJS CSS migration path and determine whether camelCase properties, Flex-specific names, and unitless values are transformed; done means documenting or implementing a defined conversion path that produces browser-readable CSS.

Written by the indexing model from the issue text.

Assessment

Tech stack
css
Domain
frontend
Issue type
Feature
Difficulty
5/5
Estimated time
Over a week
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
25/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.