mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
22ad1ff2c5
Summary: Depends on D19992. Ref T13222. If administrators provide a custom login message, show it on the login screen. Test Plan: {F6137930} - Viewed login screen with and without a custom message. Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T13222 Differential Revision: https://secure.phabricator.com/D19994
66 lines
1.1 KiB
CSS
66 lines
1.1 KiB
CSS
/**
|
|
* @provides auth-css
|
|
*/
|
|
|
|
.phabricator-login-buttons {
|
|
max-width: 508px;
|
|
margin: 16px auto;
|
|
}
|
|
|
|
.phabricator-login-buttons .phabricator-login-button .button {
|
|
width: 246px;
|
|
}
|
|
|
|
.device-desktop .phabricator-login-buttons .aphront-multi-column-column-last {
|
|
text-align: right;
|
|
}
|
|
|
|
.device .phabricator-login-buttons {
|
|
text-align: center;
|
|
}
|
|
|
|
.phabricator-link-button {
|
|
text-align: center;
|
|
}
|
|
|
|
.auth-account-view {
|
|
background-color: {$lightbluebackground};
|
|
border: 1px solid {$thinblueborder};
|
|
border-radius: 3px;
|
|
min-height: 50px;
|
|
position: relative;
|
|
padding: 4px 4px 4px 64px;
|
|
}
|
|
|
|
.auth-account-view-profile-image {
|
|
width: 50px;
|
|
height: 50px;
|
|
top: 6px;
|
|
left: 6px;
|
|
|
|
background-repeat: no-repeat;
|
|
background-size: 100%;
|
|
box-shadow: {$borderinset};
|
|
position: absolute;
|
|
}
|
|
|
|
.auth-account-view-name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.auth-account-view-provider-name {
|
|
color: {$lightgreytext};
|
|
}
|
|
|
|
.auth-account-view-account-uri {
|
|
word-break: break-word;
|
|
}
|
|
|
|
.auth-custom-message {
|
|
margin: 32px auto 64px;
|
|
max-width: 548px;
|
|
background: #fff;
|
|
padding: 16px;
|
|
border: 1px solid {$lightblueborder};
|
|
border-radius: 4px;
|
|
}
|