ExtJs 4 Firefox css conditional -


i need give particular style in css firefox in extjs 4.2 looking in web found extjs give particular class when in browser tried:

 .x-body.x-gecko .x-btn-action-nav-large.x-btn-inner {      font-size: 5em; } 

or

.x-body.x-gecko {     .x-btn-action-nav-large.x-btn-inner {          font-size: 5em;     } } 

but nothing work , showed in firefox suggestion?

try:

.x-body.x-gecko .x-btn-action-nav-large .x-btn-inner {      font-size: 5em; } 

you need space between last 2 rules inner element child of button.

you do:

.x-gecko .x-btn-action-nav-large .x-btn-inner {      font-size: 5em; } 

Comments

Popular posts from this blog

java - WrongTypeOfReturnValue exception thrown when unit testing using mockito -

php - Magento - Deleted Base url key -

android - How to disable Button if EditText is empty ? -