0

I am using Sencha CMD to build up my theme package. I want that my framed panels will have border-radius of 8 pixels and that they will be white.

Here is what I have done:

$panel-frame-border-radius: 8px !default;
$panel-frame-border-color: #fff !default;

Now I see that the border radius has changed, but its color is still as the ext classic theme (blue).

How can I change this color?

AMember
  • 3,037
  • 2
  • 33
  • 64

1 Answers1

0

Ok , I solved it by adding the following rule

$panel-frame-background-color: #FFFFFF !default;

Did not realize that this was the appropriate property to use.

AMember
  • 3,037
  • 2
  • 33
  • 64