mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
abe24ff1ab
Summary: Ref T2852. Asana has one bug which I'm having a little trouble figuring out. I want to get more information to debug it, but I'll need them to run `bin/feed republish <story_id>` to get that data. Right now, it's incredibly hard to figure out the story ID for feed stories. So mostly this is to make that easier (click permalink; pull it out of the URL), but it also adds a little functionality and cleans the code up a bit. The page itself could be prettier and maybe some day we'll add comments or whatever, but it seems reasonably functionalish. Test Plan: {F49962} - Also loaded many pages of feed history to check that nothing broke. Reviewers: btrahan, chad Reviewed By: chad CC: chad, aran Maniphest Tasks: T2852 Differential Revision: https://secure.phabricator.com/D6440
81 lines
1.2 KiB
CSS
81 lines
1.2 KiB
CSS
/**
|
|
* @provides phui-feed-story-css
|
|
*/
|
|
|
|
.phui-feed-story {
|
|
background: 5px 2px no-repeat;
|
|
min-height: 50px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.phui-feed-story-head .phui-feed-story-actor-image {
|
|
width: 35px;
|
|
height: 35px;
|
|
background-size: 35px;
|
|
float: left;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.phui-feed-story-head {
|
|
padding: 10px;
|
|
overflow: hidden;
|
|
color: #333;
|
|
}
|
|
|
|
.phui-feed-story-body {
|
|
padding: 0 10px 10px;
|
|
color: #444444;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.phui-feed-story-foot {
|
|
font-size: 11px;
|
|
background: #f7f7f7;
|
|
padding: 10px;
|
|
line-height: 14px;
|
|
}
|
|
|
|
.phui-feed-story-foot,
|
|
.phui-feed-story-foot a {
|
|
color: #777;
|
|
}
|
|
|
|
.phui-feed-story-foot .phui-icon-view {
|
|
float: left;
|
|
display: inline-block;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.phui-feed-story-bigtext-post {
|
|
line-height: 18px;
|
|
color: #444;
|
|
}
|
|
|
|
.phui-feed-story-bigtext-post h3 {
|
|
font-size: 18px;
|
|
font-weight: 200;
|
|
line-height: 18px;
|
|
color: #39444f;
|
|
margin: 0 0 5px 0;
|
|
}
|
|
|
|
.phui-feed-token-bar {
|
|
margin-top: 10px;
|
|
border-top: 1px solid #e7e7e7;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.phui-feed-token-bar .phui-icon-view {
|
|
margin-right: 2px;
|
|
display: inline-block;
|
|
}
|
|
|
|
.phui-feed-story-action-list {
|
|
float: right;
|
|
padding-top: 4px;
|
|
}
|
|
|
|
.phui-feed-story-action-item {
|
|
float: right;
|
|
padding-left: 2px;
|
|
}
|