Test url: media/browser?multiselect=true

Comments

mikeytown2’s picture

Title: media module & css_emimage: multiselect background broken » media module -> plupload & css_emimage: multiselect background broken. CSS Sprite Issue

CSS Rule in question:

This http://drupalcode.org/project/plupload.git/blob/6884b4af2f069d8b70488630...

li.plupload_uploading { 
  background: #ECF3DC url(/sites/all/modules/plupload/images/backgrounds.gif) repeat-x 0 -238px 
}

Turns into

li.plupload_uploading { 
  background: #ECF3DC none repeat-x 0 -238px 
}

.plupload_filelist li,
li.plupload_uploading{
  background-image:url(data:image/gif;base64,R0lGODl....==)
}

And for notes
http://drupalcode.org/project/plupload.git/blob/6884b4af2f069d8b70488630...

.plupload_filelist li {
  background:#F5F5F5 url('images/backgrounds.gif') repeat-x 0 -156px;
  border-bottom:1px solid #DDD;
  padding:10px 8px;
}
mikeytown2’s picture

Going to see if background-position: inherit; does the trick as the position is not inherited http://www.w3schools.com/cssref/pr_background-position.asp

Also going to set background-attachment: inherit; as this is also not inherited http://www.w3schools.com/cssref/pr_background-attachment.asp

mikeytown2’s picture

inherit doesn't do the trick