mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
45ca0472a9
Summary: Uses standard background color of profile icons. Test Plan: Review herald, commit stories. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D15831
108 lines
1.9 KiB
CSS
108 lines
1.9 KiB
CSS
/**
|
|
* @provides phui-feed-story-css
|
|
*/
|
|
|
|
.phui-object-box .phui-box.phui-feed-story {
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.phui-object-box .phui-box.phui-feed-story:last-child {
|
|
border: none;
|
|
}
|
|
|
|
.phui-feed-story-head .phui-feed-story-actor {
|
|
width: 35px;
|
|
height: 35px;
|
|
float: left;
|
|
margin-right: 8px;
|
|
border-radius: 3px;
|
|
box-shadow: {$borderinset};
|
|
}
|
|
|
|
.phui-feed-story-head .phui-feed-story-actor-image {
|
|
background-size: 35px;
|
|
}
|
|
|
|
.phui-feed-story-head .phui-feed-story-actor-icon {
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
font-size: 24px;
|
|
line-height: 32px;
|
|
color: #fff;
|
|
background-color: #c4cde0;
|
|
}
|
|
|
|
.phui-feed-story-head {
|
|
padding: 12px 4px;
|
|
overflow: hidden;
|
|
color: {$greytext};
|
|
word-break: break-word;
|
|
}
|
|
|
|
.phui-feed-story-head .phui-link-person {
|
|
color: {$darkgreytext};
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phui-feed-story-body {
|
|
margin: 4px 4px 8px;
|
|
padding-bottom: 8px;
|
|
color: {$darkgreytext};
|
|
word-break: break-word;
|
|
max-height: 300px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.phui-feed-story-foot {
|
|
font-size: {$smallerfontsize};
|
|
padding: 0 4px 12px;
|
|
}
|
|
|
|
.phui-feed-story-foot,
|
|
.phui-feed-story-foot a {
|
|
color: {$greytext};
|
|
}
|
|
|
|
.phui-feed-story-foot .phui-icon-view {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.phui-feed-story-bigtext-post {
|
|
line-height: 18px;
|
|
color: {$darkgreytext};
|
|
}
|
|
|
|
.phui-feed-story-bigtext-post h3 {
|
|
font-size: {$biggestfontsize};
|
|
line-height: 18px;
|
|
color: {$darkgreytext};
|
|
margin: 0 0 5px 0;
|
|
}
|
|
|
|
.phui-feed-token-bar {
|
|
margin-top: 8px;
|
|
border-top: 1px solid #e7e7e7;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.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;
|
|
height: 18px;
|
|
width: 18px;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.phui-feed-story-action-list .phui-icon-view {
|
|
display: block;
|
|
}
|