mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
d3323d0b3d
Summary: I try to access tasks a lot on my phone, but its hard to parse. I'm sure most of this will get tossed with new transactions, but wanted to land it anyways. Test Plan: Test ticket details on iOS simulator and Chrome. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4619
43 lines
766 B
CSS
43 lines
766 B
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;
|
|
}
|
|
|
|
.phabricator-transaction-detail {
|
|
border-color: #dddddd;
|
|
border-width: 1px 10px;
|
|
border-style: solid;
|
|
margin-left: 54px;
|
|
}
|
|
|
|
.device-phone .phabricator-transaction-detail {
|
|
margin: 0;
|
|
}
|
|
|
|
.phabricator-transaction-header {
|
|
background: #f3f3f3;
|
|
padding: 4px 1em;
|
|
}
|
|
|
|
.phabricator-transaction-header a {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phabricator-transaction-info {
|
|
color: #666666;
|
|
float: right;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.phabricator-transaction-content {
|
|
background: #fcfcfc;
|
|
line-height: 1.4em;
|
|
padding: .3em 1em;
|
|
overflow: auto;
|
|
}
|