mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
6e86a04ab1
Summary: Does a few things, standardizes feed a bit more on people, projects. Cleans up Project pages to be more dashboard like. Adds usable mobile support. Remove extenal public feed styles. The Project pages won't win any design awards, but they are much more usable and responsive (mobile). I assume the default view to be workboard still at some point. Test Plan: Test out Profile, Project Profile, Public Feed, normal Feed. Mobile and Chrome. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5700
39 lines
724 B
CSS
39 lines
724 B
CSS
/**
|
|
* @provides phabricator-profile-header-css
|
|
*/
|
|
|
|
.phabricator-profile-header {
|
|
background: #e0e3ec;
|
|
border-width: 1px 0;
|
|
border-style: solid;
|
|
border-color: #c0c5d1;
|
|
width: 100%;
|
|
}
|
|
|
|
.phabricator-profile-header .profile-header-name {
|
|
font-size: 24px;
|
|
color: #333;
|
|
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: #555;
|
|
font-size: 13px;
|
|
}
|