mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 13:22:42 +01:00
f55c082e65
Summary: Basic hookup for Differential -> Feed. Also introduces "one-line" stories for less-important stuff. Test Plan: Interacted with some revisions, got feed stories out of it. Reviewed By: jungejason Reviewers: jungejason, aran, tuomaspelkonen, codeblock CC: aran, jungejason Differential Revision: 632
29 lines
436 B
CSS
29 lines
436 B
CSS
/**
|
|
* @provides phabricator-feed-css
|
|
*/
|
|
|
|
.phabricator-feed-story {
|
|
padding-left: 64px;
|
|
margin: .5em 0 1em;
|
|
background: 5px 2px no-repeat;
|
|
min-height: 64px;
|
|
}
|
|
|
|
.phabricator-feed-story-one-line {
|
|
min-height: 0;
|
|
font-size: 11px;
|
|
color: #444444;
|
|
}
|
|
|
|
.phabricator-feed-story-head {
|
|
}
|
|
|
|
.phabricator-feed-story-body {
|
|
padding: .5em 0;
|
|
color: #444444;
|
|
}
|
|
|
|
.phabricator-feed-story-foot {
|
|
color: #888888;
|
|
font-size: 11px;
|
|
}
|