Jump to content

About custom manual login screen - EmbyServer 4740


CarlosLima
Go to solution Solved by Happy2Play,

Recommended Posts

CarlosLima

Hi,
I use the custom login screen from the image and I would like to fix a few things that I don't think work in the new stable version of EmbyServer.
I leave the codes that I used in the previous stable version 4.6x.
1. - The text Please Sign In, I would like to remove.
2. - The box and text Remember Me, I'd like to remove.

/* #1 */
#manualloginPage h1 {display: none;}

/* #2 */
#manualloginPage label.checkboxContainer {display: none;}

/* #3 */
body > div.mainAnimatedPages.skinBody > div > div > form {
    max-width: 30em; }

#loginPage .button-submit  {
    background: #3086CF; }
   
#loginPage .inputLabelFocused {
   color: #3086CF !important; }

#loginPage .checkboxOutline, .emby-input:focus {
   border-color: #3086CF !important; }
   
#loginPage .checkboxOutline {
   background-color: #3086CF !important; }


3. - The width of all fields would like to be reduced by approximately 50%.
Eu também gostaria de pedir o favor para analisar o meu código CSS #3. Eu utilizo esse código há um longo tempo (anos) e não gostaria de saber se ele pode ser otimizado.

Thank you from now. Thanks.

download.png

Link to comment
Share on other sites

  • Solution
Happy2Play

1 and 2 work fine as long as you readd pageid.

3

What are all the #loginPage items?  They don't exist on that page, will guess they all should be #manualloginPage

What is checkboxOutline as you are already hiding the Remember Me checkbox?

But will guess this is what you are after

/* #3 */
#manualloginPage form {max-width: 30em;}

#manualloginPage button[type="submit"] {background: #3086CF;}
   
#manualloginPage .inputLabelFocused {color: #3086CF;}

#manualloginPage input.emby-input:focus {border-color: #3086CF;}

image.thumb.png.66956c5fa9606440a0eb0b2a4f50003c.png

 

  • Thanks 1
Link to comment
Share on other sites

CarlosLima

You nailed it, very grateful.
Yes, I only use manuallogin. It was perfect.
Thanks

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