Jump to content

Recommended Posts

Happy2Play
Posted
1 minute ago, Gremory17 said:

hay alguna forma de arreglar como se ven las temporadas? la imagenimage.thumb.png.a70fe90570bd6d114eb66311f62c8608.png

Did you update versions as this issue was identified a few posts back.  But new versions can be found here.

@fillidillcan you put the newest code in first post.  Thanks

Happy2Play
Posted

Actually, your issue would appear to be new covering Seasons folders vs the previous episode row you reported but cannot reproduce with v3.4 code. @Gremory17

Is this the only code you are using?

Gremory17
Posted (edited)
1 hour ago, Happy2Play said:

Actually, your issue would appear to be new covering Seasons folders vs the previous episode row you reported but cannot reproduce with v3.4 code. @Gremory17

Is this the only code you are using?

version 3.4 estoy ocupando y aun me sale cortado lo de las imagenes de temporada dificulta un poco entrar a la temporada, no son todos

tambien identifique que la informacion del video ahora lo hace hacia la derecha esto solo aplica si el video tiene multi sub o audio aparteimage.thumb.png.fbd158829f945a747657a0efe1e833d1.png
image.thumb.png.c36f09810dac63cf17b37889aef20773.png

Edited by Gremory17
Happy2Play
Posted
57 minutes ago, Gremory17 said:

version 3.4 estoy ocupando y aun me sale cortado lo de las imagenes de temporada dificulta un poco entrar a la temporada, no son todos

tambien identifique que la informacion del video ahora lo hace hacia la derecha esto solo aplica si el video tiene multi sub o audio aparteimage.thumb.png.fbd158829f945a747657a0efe1e833d1.png
image.thumb.png.c36f09810dac63cf17b37889aef20773.png

Can you post a copy of the css you are using.  As I cannot reproduce Seasons issue.

As for the tracksection info floating right that is a change @fillidillactually did in v3.4 so you would want to compare it to v3.2 or v3.3 and remove the changes.

 

Gremory17
Posted
13 minutes ago, Happy2Play said:

Can you post a copy of the css you are using.  As I cannot reproduce Seasons issue.

As for the tracksection info floating right that is a change @fillidillactually did in v3.4 so you would want to compare it to v3.2 or v3.3 and remove the changes.

 

Emby-Stable-style-v3.4.txt

Gremory17
Posted
7 hours ago, Happy2Play said:

I am not sure then as I can not reproduce Seasons issue.

image.png.002ecafbe0722ca275da5b548e394b9b.png

Are you scaling the browser at all?

no sucede con todos pero si me da ese problema

Happy2Play
Posted
5 minutes ago, Gremory17 said:

It doesn't happen with everyone but it does give me that problem

Might want to delete the video with your site address. 

What browser is that? Vivaldi?

Happy2Play
Posted

But I have been able to reproduce this on one show so far so I will check and see if I can find the issue.

Gremory17
Posted
17 minutes ago, Happy2Play said:

Might want to delete the video with your site address. 

What browser is that? Vivaldi?

navegador brave

Happy2Play
Posted (edited)
9 minutes ago, Gremory17 said:

Brave Browser

Thanks, I was able to reproduce this as this is an issue for items without season images as the inherited image is smaller and the height: auto !important creates the issue.  @fillidill Easy to reproduce find item with no season images or pick a show and delete season images.

.verticalSection.seriesItemsSection .itemsContainer:not(.allEpisodesItemsContainer) {
    display: inline-block !important;
    width: 100% !important;
    min-width: unset !important;
    min-height: unset !important;
    height: auto !important;
    contain: unset !important;
}

image.thumb.png.e55e659e838baaa7edeff109f4a512d9.png

Looks like it can be disabled or removed. 

Or add a season image to one of the seasons to correct the issue.

Edited by Happy2Play
  • Thanks 1
Gremory17
Posted
5 minutes ago, Happy2Play said:

Thanks, I was able to reproduce this as this is an issue for items without season images as the inherited image is smaller and the height: auto !important creates the issue.  @fillidill 

.verticalSection.seriesItemsSection .itemsContainer:not(.allEpisodesItemsContainer) {
    display: inline-block !important;
    width: 100% !important;
    min-width: unset !important;
    min-height: unset !important;
    height: auto !important;
    contain: unset !important;
}

Looks like it can be disabled or removed. 

Or add a season image to one of the seasons to correct the issue.

image.thumb.png.a2d9bb3fa282783634a1f58512e0fc11.pngmuchas gracias removiendo esa parte de codigo resuelve el problema

Happy2Play
Posted
4 minutes ago, Gremory17 said:

Thank you very much removing that part of code solves the problem

Don't believe it will have any side effect in my quick look around.

Gremory17
Posted
6 minutes ago, Happy2Play said:

Don't believe it will have any side effect in my quick look around.

revise los demas archivos y todo bien, no veo ningun error en portadas de temporadas,  ahora bien que deberia mover para que los detalles de video este abajo de la sinopsis del capitulo y no se vea reflejado a la derecha image.thumb.png.348b7b757001d7161e3da7c19eb582fe.png

Happy2Play
Posted
8 minutes ago, Gremory17 said:

I checked the other files and everything is fine, I don't see any errors in season covers, now I should move so that the video details are below the synopsis of the chapter and not reflected on the right image.thumb.png.348b7b757001d7161e3da7c19eb582fe.png

Have you compared the previous version to new version?

Should be a matter of removing new code but will look some more as I see some quirks I previously mentioned with section width and trackselection moving with width.

image.thumb.png.c753f09c8b8b1513c42e79b9696a3e53.png

Happy2Play
Posted

I commented out that entire section.

/*@media (min-width: 50em) {
	.itemPrimaryNameContainer-logo {
		margin-bottom: 1em !important;
	}
	.topDetailsContainer .verticalFieldItem.trackSelections,
	.topDetailsContainer .verticalFieldItem.tagline,
	.topDetailsContainer .verticalFieldItem.overview-container,
	.topDetailsContainer .verticalFieldItem.directors{
		max-width: 48% !important;
		width: 48% !important;
	}
	.topDetailsContainer .verticalFieldItem.trackSelections {
	  max-width: 20vw !important;
	  min-width: 400px !important;
	  float: right !important;
	  margin-top: 5px !important;
	}
}*/

and added width here.

.flex-grow.detailTextContainer form.trackSelections {
    order: 3 !important;
    width: min-content;
}

As I was seeing this.

image.thumb.png.96a16a6fed4b7e1d479aac2db32a520a.png

Happy2Play
Posted

Still don't see how you get this

image.png

As I get image on other side.  With edited comments above.

image.thumb.png.f6bf1db99a5fb5bc2d5eb4cf86ef4408.png

Gremory17
Posted
10 hours ago, Happy2Play said:

Still don't see how you get this

image.png

As I get image on other side.  With edited comments above.

image.thumb.png.f6bf1db99a5fb5bc2d5eb4cf86ef4408.png

 

Muchas gracias quedo perfecto el css, dejare la version 3.5 con las 2 partes que me ayudaste arreglar @Happy2Play

image.thumb.png.f7ee3871e0c58a2bad971a5d895748ee.png

Emby3.5.txt

Happy2Play
Posted (edited)
54 minutes ago, Gremory17 said:

 

Thank you very much the css was perfect, I will leave version 3.5 with the 2 parts that you helped me fix @Happy2Play

image.thumb.png.f7ee3871e0c58a2bad971a5d895748ee.png

Emby3.5.txt 119.01 kB · 1 download

Looks like you made 2 mistakes the "ancho" breaks the code below.  And the code is actually duplicated as it exists later without the addition of width.

}*/ancho
.flex-grow.detailTextContainer form.trackSelections {
    order: 3 !important;
    width: min-content;
}

So you need to remove "ancho" and should remove duplicate code but is not code breaking only the uncommented word.

That should fix the issue with Video track shifting right.

Edited by Happy2Play
Happy2Play
Posted

And if that does not work then will probably need to change to previous method mention here lowering max width.

 

Gremory17
Posted
8 minutes ago, Happy2Play said:

Looks like you made 2 mistakes the "ancho" breaks the code below.  And the code is actually duplicated as it exists later without the addition of width.

}*/ancho
.flex-grow.detailTextContainer form.trackSelections {
    order: 3 !important;
    width: min-content;
}

So you need to remove "ancho" and should remove duplicate code but is not code breaking only the uncommented word.

That should fix the issue with Video track shifting right.

 

Ahora si estaria bien verdad? @Happy2Play

image.thumb.png.d6ff0f98af4366f66014c50d154d5117.png

Happy2Play
Posted (edited)
3 minutes ago, Gremory17 said:

 

Now it would be okay right? @Happy2Play

image.thumb.png.d6ff0f98af4366f66014c50d154d5117.png

Yes the tracksection is correct and you see the same as I do with image on the right a little oversized.🙃  At least via episodes.

Edited by Happy2Play
Gremory17
Posted (edited)
9 minutes ago, Happy2Play said:

Yes the tracksection is correct and you see the same as I do with image on the right a little oversized.🙃  At least via episodes.

:D bueno xD no creo que afecte mucho visualmente si esta sobredimensionada lo dejare asi ya que funciona bien gracias por la ayuda :D 

Emby3.5.1.txt

Edited by Gremory17
  • 1 month later...
HairyBizRat
Posted

Wow I just had to comment on this topic. One of the main reasons I just moved from Plex to Emby is because Emby looks better in every way so I find it funny that some think the opposite.

different strokes for different folks I guess lol

  • Like 1
Eigeplackter
Posted

My apologies if this issue has been handled somewhere in the thread.

Is there a special setting to get the back button on top of the screen ?

It doesnt seem to be hidden under the sidebar and I cant move backwards, i.e. when I'm into a collection with several movies.

Im running the official Chrome Version 127.0.6533.100 (64-bit) and used css 3.4  and 3.5.1.

 

image.png.9d544b7f2f63f64af830150a738cac80.png

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...