Jump to content

Media Info grey background


arrbee99

Recommended Posts

arrbee99

Me again. Any way to please get rid of this ugly grey background here

https://emby.media/community/index.php?/topic/90551-4602-media-info-display/

I've tried fiddling with this kind of stuff

/*div.card.backdropCard.card-nouserdata.card-hoverable.card-nofocustransform.focusable {color: #5d7e9b;}*/

/*div.emby-scroller.padded-top-focusscale.padded-bottom-focusscale.emby-scrollbuttons-scroller {background: transparent;|*/

div.scrollSlider.focuscontainer-x.itemsContainer.padded-left.padded-right.focusable {background: transparent;|

but getting nowhere.

Edited by arrbee99
Link to comment
Share on other sites

Happy2Play

😁Did you look at how Luke applied it?  

Hint

mediainfo.thumb.jpg.55f8421d8ae3cdad028ed3b09937ad05.jpg

Do you want all the same areas transparent?

Note for everyone else, this applies to 4.6.0.2+

Link to comment
Share on other sites

arrbee99

Well, I looked in that I tried to click on the element I want to change and select Inspect Element in the browser, then copy that text and add something in {} brackets at the end.

But yes, would like it all transparent please, as (I think) it was before.

Link to comment
Share on other sites

Happy2Play
7 minutes ago, arrbee99 said:

Well, I looked in that I tried to click on the element I want to change and select Inspect Element in the browser, then copy that text and add something in {} brackets at the end.

But yes, would like it all transparent please, as (I think) it was before.

 

/*Background and box outline*/
div.details-additionalContent-withbackdrop .cardContent-shadow, div.details-additionalContent-withbackdrop .defaultCardBackground0 {
    background-color: transparent !important;
    box-shadow: none;
}

 

  • Like 1
Link to comment
Share on other sites

arrbee99

That works well, but it makes any missing actor posters completely transparent -

1215285239_Embytransparentactors1.thumb.JPG.4e9145203182cd065b0a5a6790012044.JPG

I found this old stuff and tried adding it back in, but guess what...

#castContent .cardImageIcon {color: white;}

 

#castContent .defaultCardBackground1,

#castContent .defaultCardBackground2,

#castContent .defaultCardBackground3,

#castContent .defaultCardBackground4,

#castContent .defaultCardBackground5

 {background-color: rgba(55,55,55,.95);}

Link to comment
Share on other sites

Happy2Play
19 hours ago, arrbee99 said:

That works well, but it makes any missing actor posters completely transparent -

1215285239_Embytransparentactors1.thumb.JPG.4e9145203182cd065b0a5a6790012044.JPG

I found this old stuff and tried adding it back in, but guess what...

#castContent .cardImageIcon {color: white;}

#castContent .defaultCardBackground1,

#castContent .defaultCardBackground2,

#castContent .defaultCardBackground3,

#castContent .defaultCardBackground4,

#castContent .defaultCardBackground5

 {background-color: rgba(55,55,55,.95);}

 

There no longer is a #castContent id it is div.peopleSection, but Luke's code is !important so your code would have to change.  If you do not want cast and crew affected and only apply to Media info use this.

Change to this for Media Info only

/*Media Info background and box outline*/
div.audioVideoMediaInfo .cardContent-shadow, div.audioVideoMediaInfo .defaultCardBackground0 {
    background-color: transparent !important;
    box-shadow: none;
}

Then if you want to change the default color for case and crew you would do this.

div.peopleSection .defaultCardBackground1,div.peopleSection .defaultCardBackground2,div.peopleSection .defaultCardBackground3,div.peopleSection .defaultCardBackground4,div.peopleSection .defaultCardBackground5 {background-color: rgba(55,55,55,.95)!important;}

 

Edited by Happy2Play
Link to comment
Share on other sites

arrbee99

Thank you. The first works fine, the second (people) thing doesn't seem to make any difference. Might have the odd bit of css that interferes though...Will have a play latter, but I really should cut the grass...

Link to comment
Share on other sites

Happy2Play

Looks like I forgot !important when I copied code to forum above.

12 minutes ago, arrbee99 said:

Thank you. The first works fine, the second (people) thing doesn't seem to make any difference. Might have the odd bit of css that interferes though...Will have a play latter, but I really should cut the grass...

 

It is pretty much that same color already being applied, did you adjust the color?

 

Quote

div.peopleSection .defaultCardBackground1,div.peopleSection .defaultCardBackground2,div.peopleSection .defaultCardBackground3,div.peopleSection .defaultCardBackground4,div.peopleSection .defaultCardBackground5 {background-color: rgba(255,0,0,.95)!important;}

 

people.jpg.23dd874ccfee63684a6c8bf33ccf0bbd.jpg

Edited by Happy2Play
Link to comment
Share on other sites

Happy2Play
15 minutes ago, arrbee99 said:

I did. Went for a kind of purple, except it stayed grey.

That would suggest possible existing code interfering.  You could test by removing all code and applying only this new code.

Link to comment
Share on other sites

arrbee99

Still dun't work. Forgot to ask, would it require anything special for Firefox.

As I type this I think I really should try this in Chrome, or Edge...

Link to comment
Share on other sites

Happy2Play
3 hours ago, arrbee99 said:

Still dun't work. Forgot to ask, would it require anything special for Firefox.

As I type this I think I really should try this in Chrome, or Edge...

Not in my tests only code from above for div.peopleSection.

ff.thumb.jpg.eb3dac90e0543231cadbdde14d8dbd47.jpg

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...