0

I would like to add a frame to my menu so I could use border radius, but I do not want to derive the frame background color from the definition of my panels.

As I see it now the frame can only be defined on the panel level and the menu inherits this definition.

Can it be done?

kryger
  • 12,906
  • 8
  • 44
  • 65
AMember
  • 3,037
  • 2
  • 33
  • 64

1 Answers1

-1

The way you handle these is to use custom theme. ext-4.2.1-gpl/ext-4.2.1.883/docs/index.html#!/guide/theming will be help . It is in the extjs (sencha) SDK. more link

gloryBlade
  • 62
  • 8
  • This is not useful as I am already using a custom, but the menu css variables seam to derive from the panel variable. – AMember Sep 25 '13 at 18:48
  • I have ended up using the following ui to achive this [code]@include extjs-panel-ui( $ui-label: 'popupmenu-framed', $ui-border-color:#47607E, $ui-body-background-color:#47607E, $ui-body-border-width:0px, $ui-border-radius:5px );[code] – AMember Sep 30 '13 at 08:52