mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
410380be3f
Summary: Minor things - Use radiused avatars like timeline - Fix edge case with conpherence edited and date markers Test Plan: Review a number of odd states in Conpherence full. Reviewers: epriestley, btrahan Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12251
72 lines
1.3 KiB
CSS
72 lines
1.3 KiB
CSS
/**
|
|
* @provides phabricator-transaction-view-css
|
|
*/
|
|
|
|
.phabricator-transaction-view {
|
|
background: 0px 2px no-repeat;
|
|
margin: 1em 0 1.25em;
|
|
min-height: 50px;
|
|
padding: 2px 0px;
|
|
position: relative;
|
|
}
|
|
|
|
.device-phone .phabricator-transaction-view {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.device-phone .phabricator-transaction-detail {
|
|
margin: 0;
|
|
min-height: 50px;
|
|
background: #fff;
|
|
}
|
|
|
|
.phabricator-transaction-header {
|
|
background: {$lightgreybackground};
|
|
padding: 5px 8px;
|
|
}
|
|
|
|
.phabricator-transaction-header a {
|
|
font-weight: bold;
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.phabricator-transaction-info {
|
|
color: {$greytext};
|
|
float: right;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.device-phone .phabricator-transaction-info {
|
|
display: none;
|
|
}
|
|
|
|
.phabricator-transaction-content {
|
|
background: #fff;
|
|
padding: 8px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.phabricator-transaction-subheader {
|
|
color: {$lightgreytext};
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.transaction-comment + .phabricator-transaction-subheader {
|
|
border-top: 1px solid {$thinblueborder};
|
|
margin-top: 12px;
|
|
padding-top: 12px;
|
|
}
|
|
|
|
div.phabricator-remarkup + .phabricator-transaction-subheader {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.phabricator-transaction-image {
|
|
float: left;
|
|
border-radius: 3px;
|
|
height: 35px;
|
|
width: 35px;
|
|
background-size: 35px;
|
|
position: absolute;
|
|
top: 5px;
|
|
}
|