mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
cb0bb8165d
Summary: Make it easy to join or leave (well, slightly less easy) a project. Publish join/leave to feed. Fix a couple of membership editor bugs. Test Plan: Joined, left a project. Reviewers: btrahan, jungejason Reviewed By: btrahan CC: aran, epriestley Maniphest Tasks: T681 Differential Revision: https://secure.phabricator.com/D1485
36 lines
677 B
CSS
36 lines
677 B
CSS
/**
|
|
* @provides phabricator-profile-header-css
|
|
*/
|
|
|
|
.phabricator-profile-header {
|
|
background: #efefef;
|
|
width: 100%;
|
|
border-bottom: 1px solid #cccccc;
|
|
}
|
|
|
|
.phabricator-profile-header .profile-header-name {
|
|
font-size: 22px;
|
|
font-weight: bold;
|
|
padding: 12px 12px 6px;
|
|
width: 100%;
|
|
}
|
|
|
|
.phabricator-profile-header .profile-header-actions {
|
|
padding: 12px;
|
|
}
|
|
|
|
.phabricator-profile-header .profile-header-picture-frame {
|
|
margin: 11px;
|
|
width: 50px;
|
|
height: 50px;
|
|
position: relative;
|
|
|
|
background: no-repeat;
|
|
border: 1px solid #ffffff;
|
|
}
|
|
|
|
.phabricator-profile-header .profile-header-description {
|
|
padding: 0 12px 12px;
|
|
color: #444444;
|
|
font-size: 11px;
|
|
}
|