Jump to content

CSS changes after 4.8.1


Alexwerilles

Recommended Posts

Alexwerilles

after the update (4.8.1) some css adjustments no longer work. How do I hide "Display" and "Home Screen" in settings?

image.png.c57250f432e81b1183cd538e3d4c3aba.png

 

Also, how can I hide the emby version that is below "App settings"?

image.png.cdd513b1b229f3d8cc9669daa0b8b24f.png

 

And also how do I hide "Emby Web" and Keyboard and Remote" also in settings?

image.png.838dc1a2cf04b9de3124ef78190bcd46.png

Link to comment
Share on other sites

Happy2Play

 

2 hours ago, Alexwerilles said:

after the update (4.8.1) some css adjustments no longer work. How do I hide "Display" and "Home Screen" in settings?

image.png.c57250f432e81b1183cd538e3d4c3aba.png

Something like this

div.view-settings-settings [title="Display"], div.view-settings-settings [title="Home Screen"] {display: none;}

 

2 hours ago, Alexwerilles said:

Also, how can I hide the emby version that is below "App settings"?

image.png.cdd513b1b229f3d8cc9669daa0b8b24f.png

Something like this

div.dialogContainer div.listItemBody-2-lines div.listItemBodyText-secondary {display: none;}

 

2 hours ago, Alexwerilles said:

And also how do I hide "Emby Web" and Keyboard and Remote" also in settings?

image.png.838dc1a2cf04b9de3124ef78190bcd46.png

Something like this

div.view-settings-settings div.dynamicRoutes h3:nth-child(3), div.view-settings-settings div.dynamicRoutes div:nth-child(4) {display: none;}

and for footer version number

div.view-settings-settings div.settingsContentContainer p.appInfo {display: none;}

 

As for navdrawer that is another story as there could be two open navdrawers now.

 

Link to comment
Share on other sites

Alexwerilles
26 minutes ago, Happy2Play said:

 

Something like this

div.view-settings-settings [title="Display"], div.view-settings-settings [title="Home Screen"] {display: none;}

 

Something like this

div.dialogContainer div.listItemBody-2-lines div.listItemBodyText-secondary {display: none;}

 

Something like this

div.view-settings-settings div.dynamicRoutes h3:nth-child(3), div.view-settings-settings div.dynamicRoutes div:nth-child(4) {display: none;}

and for footer version number

div.view-settings-settings div.settingsContentContainer p.appInfo {display: none;}

 

As for navdrawer that is another story as there could be two open navdrawers now.

 

 

So it is no longer possible to remove these options from the drawer?

 

image.png.51b89a79c81fbeda37bf8116ab59139d.png

Link to comment
Share on other sites

Happy2Play
3 minutes ago, Alexwerilles said:

 

So it is no longer possible to remove these options from the drawer?

 

image.png.51b89a79c81fbeda37bf8116ab59139d.png

Sort of as both drawers will share code.

div.mainDrawer [title="Display"], div.mainDrawer [title="Home Screen"], div.mainDrawer [title="Emby Web"], div.mainDrawer [title="Keyboard and Remote"] {display: none;}

Issue will leave the collaspe container for Emby Web.  And if using child element will remove something different from other drawer.

Link to comment
Share on other sites

Happy2Play

So yes in theory you could just do this but do not know of all the areas used.

[title="Display"], [title="Home Screen"], [title="Emby Web"], [title="Keyboard and Remote"] {display: none;}

 

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