You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@royale.apache.org by Takeshita Shoichiro <jl...@gmail.com> on 2019/11/07 08:27:29 UTC

Unknown property errors with CSS file

Basic question about CSS file.

The following CSS file is claimed with 9 errors. Only color property is
accepted.  What's the problems?  I'm using VS Code.
And mxml specifies this CSS as follows:

<fx:Style source = "Style.css" />

Thanks for your help in advance.
-----------------------------------------------------------------------------------------------------------------------------

/* CSS file */
@namespace s "library://ns.apache.org/royale/spark";
@namespace mx "library://ns.apache.org/royale/mx";

.heading {
   fontFamily: Arial, Helvetica, sans-serif;
   fontSize: 17px;
   color: #9b1204;
   textDecoration:none;
   fontWeight:normal;
}

.button {
   fontWeight: bold;
}

.container {
   cornerRadius :10;
   horizontalCenter :0;
   borderColor: #777777;
   verticalCenter:0;
   backgroundColor: #efefef;
}

-- 
Shoichiro Takeshita
武下 祥一郎

RE: Unknown property errors with CSS file

Posted by Yishay Weiss <yi...@hotmail.com>.
Oops, my mistake, it should work. Just confirmed it works in Flash Builder.

________________________________
From: Piotr Zarzycki <pi...@gmail.com>
Sent: Thursday, November 7, 2019 10:41:48 AM
To: users@royale.apache.org <us...@royale.apache.org>
Subject: Re: Unknown property errors with CSS file

This is weird to me that VSCode has problems with that. Just remember that for Royale compiler both forms are correct.

On Thu, Nov 7, 2019, 9:39 AM Yishay Weiss <yi...@hotmail.com>> wrote:

Use hyphens instead of camel case, so e.g.



border-color

not

borderColor



Camel case is only for changing things programaically.



________________________________
From: Takeshita Shoichiro <jl...@gmail.com>>
Sent: Thursday, November 7, 2019 10:27:29 AM
To: users@royale.apache.org<ma...@royale.apache.org> <us...@royale.apache.org>>
Subject: Unknown property errors with CSS file

Basic question about CSS file.

The following CSS file is claimed with 9 errors. Only color property is accepted.  What's the problems?  I'm using VS Code.
And mxml specifies this CSS as follows:

<fx:Style source = "Style.css" />

Thanks for your help in advance.
-----------------------------------------------------------------------------------------------------------------------------

/* CSS file */
@namespace s "library://ns.apache.org/royale/spark<http://ns.apache.org/royale/spark>";
@namespace mx "library://ns.apache.org/royale/mx<http://ns.apache.org/royale/mx>";

.heading {
   fontFamily: Arial, Helvetica, sans-serif;
   fontSize: 17px;
   color: #9b1204;
   textDecoration:none;
   fontWeight:normal;
}

.button {
   fontWeight: bold;
}

.container {
   cornerRadius :10;
   horizontalCenter :0;
   borderColor: #777777;
   verticalCenter:0;
   backgroundColor: #efefef;
}

--
Shoichiro Takeshita
武下 祥一郎

Re: Unknown property errors with CSS file

Posted by Takeshita Shoichiro <jl...@gmail.com>.
Thanks a lot.

2019年11月7日(木) 17:42 Piotr Zarzycki <pi...@gmail.com>:

> This is weird to me that VSCode has problems with that. Just remember that
> for Royale compiler both forms are correct.
>
> On Thu, Nov 7, 2019, 9:39 AM Yishay Weiss <yi...@hotmail.com> wrote:
>
>> Use hyphens instead of camel case, so e.g.
>>
>>
>>
>> border-color
>>
>> not
>>
>> borderColor
>>
>>
>>
>> Camel case is only for changing things programaically.
>>
>>
>> ------------------------------
>> *From:* Takeshita Shoichiro <jl...@gmail.com>
>> *Sent:* Thursday, November 7, 2019 10:27:29 AM
>> *To:* users@royale.apache.org <us...@royale.apache.org>
>> *Subject:* Unknown property errors with CSS file
>>
>> Basic question about CSS file.
>>
>> The following CSS file is claimed with 9 errors. Only color property is
>> accepted.  What's the problems?  I'm using VS Code.
>> And mxml specifies this CSS as follows:
>>
>> <fx:Style source = "Style.css" />
>>
>> Thanks for your help in advance.
>>
>> -----------------------------------------------------------------------------------------------------------------------------
>>
>> /* CSS file */
>> @namespace s "library://ns.apache.org/royale/spark";
>> @namespace mx "library://ns.apache.org/royale/mx";
>>
>> .heading {
>>    fontFamily: Arial, Helvetica, sans-serif;
>>    fontSize: 17px;
>>    color: #9b1204;
>>    textDecoration:none;
>>    fontWeight:normal;
>> }
>>
>> .button {
>>    fontWeight: bold;
>> }
>>
>> .container {
>>    cornerRadius :10;
>>    horizontalCenter :0;
>>    borderColor: #777777;
>>    verticalCenter:0;
>>    backgroundColor: #efefef;
>> }
>>
>> --
>> Shoichiro Takeshita
>> 武下 祥一郎
>>
> --
Shoichiro Takeshita
武下 祥一郎

Re: Unknown property errors with CSS file

Posted by Piotr Zarzycki <pi...@gmail.com>.
This is weird to me that VSCode has problems with that. Just remember that
for Royale compiler both forms are correct.

On Thu, Nov 7, 2019, 9:39 AM Yishay Weiss <yi...@hotmail.com> wrote:

> Use hyphens instead of camel case, so e.g.
>
>
>
> border-color
>
> not
>
> borderColor
>
>
>
> Camel case is only for changing things programaically.
>
>
> ------------------------------
> *From:* Takeshita Shoichiro <jl...@gmail.com>
> *Sent:* Thursday, November 7, 2019 10:27:29 AM
> *To:* users@royale.apache.org <us...@royale.apache.org>
> *Subject:* Unknown property errors with CSS file
>
> Basic question about CSS file.
>
> The following CSS file is claimed with 9 errors. Only color property is
> accepted.  What's the problems?  I'm using VS Code.
> And mxml specifies this CSS as follows:
>
> <fx:Style source = "Style.css" />
>
> Thanks for your help in advance.
>
> -----------------------------------------------------------------------------------------------------------------------------
>
> /* CSS file */
> @namespace s "library://ns.apache.org/royale/spark";
> @namespace mx "library://ns.apache.org/royale/mx";
>
> .heading {
>    fontFamily: Arial, Helvetica, sans-serif;
>    fontSize: 17px;
>    color: #9b1204;
>    textDecoration:none;
>    fontWeight:normal;
> }
>
> .button {
>    fontWeight: bold;
> }
>
> .container {
>    cornerRadius :10;
>    horizontalCenter :0;
>    borderColor: #777777;
>    verticalCenter:0;
>    backgroundColor: #efefef;
> }
>
> --
> Shoichiro Takeshita
> 武下 祥一郎
>

RE: Unknown property errors with CSS file

Posted by Yishay Weiss <yi...@hotmail.com>.
Use hyphens instead of camel case, so e.g.

border-color
not
borderColor

Camel case is only for changing things programaically.

________________________________
From: Takeshita Shoichiro <jl...@gmail.com>
Sent: Thursday, November 7, 2019 10:27:29 AM
To: users@royale.apache.org <us...@royale.apache.org>
Subject: Unknown property errors with CSS file

Basic question about CSS file.

The following CSS file is claimed with 9 errors. Only color property is accepted.  What's the problems?  I'm using VS Code.
And mxml specifies this CSS as follows:

<fx:Style source = "Style.css" />

Thanks for your help in advance.
-----------------------------------------------------------------------------------------------------------------------------

/* CSS file */
@namespace s "library://ns.apache.org/royale/spark<http://ns.apache.org/royale/spark>";
@namespace mx "library://ns.apache.org/royale/mx<http://ns.apache.org/royale/mx>";

.heading {
   fontFamily: Arial, Helvetica, sans-serif;
   fontSize: 17px;
   color: #9b1204;
   textDecoration:none;
   fontWeight:normal;
}

.button {
   fontWeight: bold;
}

.container {
   cornerRadius :10;
   horizontalCenter :0;
   borderColor: #777777;
   verticalCenter:0;
   backgroundColor: #efefef;
}

--
Shoichiro Takeshita
武下 祥一郎