Guest Posted June 24, 2022 Posted June 24, 2022 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.
Solution Happy2Play 9447 Posted June 24, 2022 Solution Posted June 24, 2022 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;}
Guest Posted June 25, 2022 Posted June 25, 2022 You nailed it, very grateful. Yes, I only use manuallogin. It was perfect. Thanks
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now