mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 18:32:41 +01:00
b06b3d79b7
Summary: Ref T7707. My analysis there was a bit confused and this isn't really all that important, but seems cleaner and desirable to be agnostic to the underlying image size. Test Plan: Tested Safari, Firefox and Chrome with a variety of profile image sizes. Reviewers: chad, btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T7707 Differential Revision: https://secure.phabricator.com/D12825
52 lines
874 B
CSS
52 lines
874 B
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: #fff;
|
|
border: 1px solid {$lightblueborder};
|
|
border-radius: 2px;
|
|
min-height: 50px;
|
|
position: relative;
|
|
padding: 4px 4px 4px 64px;
|
|
}
|
|
|
|
.auth-account-view-profile-image {
|
|
width: 50px;
|
|
height: 50px;
|
|
top: 4px;
|
|
left: 4px;
|
|
|
|
background-repeat: no-repeat;
|
|
background-size: 100%;
|
|
position: absolute;
|
|
}
|
|
|
|
.auth-account-view-name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.auth-account-view-provider-name {
|
|
color: {$lightgreytext};
|
|
}
|