mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
b51b780e56
Summary: Should just be white here. Test Plan: review a task and diff. Reviewers: epriestley Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D7047
63 lines
1.1 KiB
CSS
63 lines
1.1 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;
|
|
}
|
|
|
|
.device-phone .phabricator-transaction-view {
|
|
margin: 10px 0;
|
|
}
|
|
|
|
.phabricator-transaction-detail {
|
|
border-color: #dddddd;
|
|
border-width: 1px 10px;
|
|
border-style: solid;
|
|
margin-left: 54px;
|
|
}
|
|
|
|
.device-phone .phabricator-transaction-detail {
|
|
margin: 0;
|
|
min-height: 50px;
|
|
background: #fff;
|
|
}
|
|
|
|
.phabricator-transaction-header {
|
|
background: #f3f3f3;
|
|
padding: 4px 1em;
|
|
}
|
|
|
|
.phabricator-transaction-header a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.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};
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
padding-bottom: 4px;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
div.phabricator-remarkup + .phabricator-transaction-subheader {
|
|
margin-top: 12px;
|
|
}
|