mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
116537eb19
Summary: Some minor cleanup, remove preview, widen transactions, remove timestamps (i could go either way). I mainly want to interact more on mobile but am finding its pretty crowded. I still need to think more about these views. Test Plan: Review on iOS and Chrome Reviewers: epriestley, btrahan Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4680
53 lines
922 B
CSS
53 lines
922 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;
|
|
}
|
|
|
|
.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: #777;
|
|
float: right;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.device-phone .phabricator-transaction-info {
|
|
display: none;
|
|
}
|
|
|
|
.phabricator-transaction-content {
|
|
background: #fcfcfc;
|
|
line-height: 1.4em;
|
|
padding: .3em 1em;
|
|
overflow: auto;
|
|
}
|