Oliver Watkins
Oliver Watkins

Reputation: 13519

ext-all.css file in Extjs 5

Using extjs4.x there is an ext-all.css file which can be found at this location :

ext-4.X --> resources --> css --> ext-all.css

It initially just points to a look and feel :

@import '../ext-theme-gray/ext-theme-gray-all.css';

We then customize it with our own custom CSS, such as icons etc.

@import '../ext-theme-gray/ext-theme-gray-all.css';

.ico-outlet {
    background-image :url('../../../../../img/bank-icon.png') !important;
}

This is the standard way of adding CSS customizations (..i think)

..

My question is: Where can i find this file in ExtJS-5? Or what is the equivalent?

Upvotes: 1

Views: 2662

Answers (1)

matt
matt

Reputation: 4047

It's mentioned in the upgrade guide:

The compiled theme files are now present in the following folder off the root of the distribution:

packages/{theme}/build/resources/{theme}-all(-rtl)(-debug).css

Upvotes: 6

Related Questions