fixing a regression where icons in a list would not display in their loading state

This commit is contained in:
rlx 2011-08-23 23:57:03 +00:00
parent cb8685a340
commit 9dd695b6ca
2 changed files with 13 additions and 13 deletions

View file

@ -82,7 +82,7 @@ Ox.IconList = function(options, self) {
updateKeys();
function constructItem(data) {
var isEmpty = Ox.isEmpty(data),
var isEmpty = Ox.isEmpty(data);
data = !isEmpty
? self.options.item(data, self.options.sort, self.options.size)
: {

View file

@ -233,8 +233,8 @@ Lists
================================================================================
*/
.OxThemeModern .OxIconList .OxItem > img.OxLoading,
.OxThemeModern .OxInfoList .OxIcon > img.OxLoading {
.OxThemeModern .OxIconList .OxItem > .OxIcon > img.OxLoading,
.OxThemeModern .OxInfoList .OxItem > .OxIcon > img.OxLoading {
border-color: rgb(48, 48, 48);
background: -moz-linear-gradient(top, rgb(32, 32, 32), rgb(0, 0, 0));
background: -webkit-linear-gradient(top, rgb(32, 32, 32), rgb(0, 0, 0));