horizon/openstack_dashboard/static/dashboard/scss/_splash.scss
Thai Tran 7b57608ad0 Enable login via openID and SAML
This patch introduces the settings and some changes to login template
needed to enable websso. However, it does not break existing functionality.
Note that there is a related patch, but this patch is INDEPENDENT.

Once enabled, it will allow users to select different auth mechanisms:
1. credentials
2. oidc protocol
3. saml2 protocol

Specs: https://review.openstack.org/#/c/133529/
Related patch: https://review.openstack.org/#/c/136178/

Implements: blueprint federated-identity
Change-Id: I3792fcadc19f8f9842bb7e793a12b818c872f7d0
2015-03-31 14:03:00 -07:00

33 lines
590 B
SCSS

/**
* Styling for the splash/login page.
* Restyled for federated login.
*/
#splash {
.login {
background: url(../img/logo-splash.png) no-repeat center 35px;
position: absolute;
top: 80px;
left: 50%;
margin: 0 0 0 -195px;
padding-top: 170px;
width: 390px;
border: 1px solid $border-color;
max-height: none;
border-radius: 6px;
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
background-clip: padding-box;
p#help_text {
display: none;
padding: 1em 0.5em;
margin: 0;
}
}
p.help-block {
display: none;
}
}