-
29 Feb 2012 2:14 AM #1
Answered: [RC2] How to disable zebrastripe
Answered: [RC2] How to disable zebrastripe
Hi,
I don't see a disableZebrastripe property in nested-list config, so how to disable this new style ?
thx
-
Best Answer Posted by Michou
So it seems that the "best" answer is to have one more css rule :
I'm not sure that this zebrastripe was really essential.Code:.x-list-normal .x-list-item:nth-child(even) .x-list-item-label { background: inherit; }
-
29 Feb 2012 5:17 AM #2
use sass variable
use sass variable
In order to disable zebrastripe, you only have to add $list-zebrastripe:false; in your sass file
-
29 Feb 2012 5:29 AM #3
thx
but I don't use a sass file
so I have to add one more css rule to stop this new one
Code:.x-list-normal .x-list-item:nth-child(even) .x-list-item-label - background-color: #eaeaea

-
29 Feb 2012 6:03 AM #4
So it seems that the "best" answer is to have one more css rule :
I'm not sure that this zebrastripe was really essential.Code:.x-list-normal .x-list-item:nth-child(even) .x-list-item-label { background: inherit; }


Reply With Quote