overrides_custom problems login screen on AWS Edition

Hello everyone

I uploaded a new theme (in root directory as a superuser) and activated it.

In this theme I included the following code in overrides_custom.css

loginPage #copy {
    display: none;
}

I wanted to disable the left column of the default login screen.
But I cannot see the changes in the login page.(even after deleting cache and restaring the server)
Changes regardig colors etc. apply correctly.
Can anyone help?

Thanks

Philipp

stegmann's picture
373
Joined: Jul 18 2013 - 6:50am
Last seen: 7 years 2 months ago

3 Answers:

Thank you.
The problem was: I left the '#'. (shame on me)

Now it works. :)

Thanks a lot for the hint.

 

stegmann's picture
373
Joined: Jul 18 2013 - 6:50am
Last seen: 7 years 2 months ago

I'm not sure why this is, but the following seems to work, at least on the stand-alone server (your code did not work on the stand-alone; I haven't tried AWS):

#loginPage #copy {
    display: none;
}
 
#loginPage #loginForm {
border:1px solid #666;
position: absolute;
top: 0;
left: 0;
bottom: 0;
background:#fff;
width:260px;
}

It will give you a blue background instead of the #copy area. My guess would be that without the login form somewhere, the overrides don't work. However, why it isn't putting the login form on the left, I don't know....

Note also you left # off the beginning of the first line in your example, but putting that in didn't seem to make it work.

elizam's picture
14410
Joined: Mar 5 2012 - 9:19am
Last seen: 2 years 10 months ago

You could also remove all the branding. The Ultimate Guide has a section in Chapter 11 "Customizing JSP and JavaScript for the Login Page" that tells you where all the messages and logos are; you could use that to remove everything and make a white page.

elizam - 9 years 9 months ago

FYI:

JasperReports Server Ultimate Guide, v5.2.0, v5.1.0, v5.0.0: Section 11.4: Customizing JSP and JavaScript for the Login Page

Download

djohnson53's picture
163952
Joined: May 25 2012 - 11:10am
Last seen: 1 year 4 months ago
Feedback