mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 01:12:41 +01:00
55e2efc6fc
Summary: Adds the new gradient to document views Test Plan: Tested multiple pages in my sandbox in Phriction, UIExamples. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6827
51 lines
861 B
CSS
51 lines
861 B
CSS
/**
|
|
* @provides phabricator-header-view-css
|
|
*/
|
|
|
|
.phabricator-header-shell {
|
|
background-color: #e0e3ec;
|
|
border-width: 1px 0;
|
|
border-style: solid;
|
|
border-color: #c0c5d1;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.phabricator-header-shell + .phabricator-form-view {
|
|
border-top-width: 0;
|
|
}
|
|
|
|
.phabricator-header-view {
|
|
padding: 1.25em 2%;
|
|
font-size: 15px;
|
|
color: #111111;
|
|
}
|
|
|
|
.device-desktop .phabricator-header-view {
|
|
width: 66%;
|
|
}
|
|
|
|
.phabricator-header-tags {
|
|
margin-left: 12px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.phabricator-header-tags .phabricator-tag-view {
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.phabricator-header-image {
|
|
display: inline-block;
|
|
background-repeat: no-repeat;
|
|
border: 1px solid white;
|
|
width: 50px;
|
|
height: 50px;
|
|
margin: 12px;
|
|
float: left;
|
|
}
|
|
|
|
.phabricator-header-subheader {
|
|
color: #444444;
|
|
font-weight: normal;
|
|
font-size: 13px;
|
|
margin-top: 4px;
|
|
}
|