mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
a91a3cd22f
Summary: Follow on to D12410. This kills the general CSS file that once powered application transaction in favor of a specific CSS file for the shared transaction styles for both full view and durable column view. I was able to delete some stuff and identify some shared stuff but there is probably more to go here. Also, rename "phabricator-x" to "conpherence-x" for class names. Test Plan: viewed full conpherence and durable column conpherence and things looked nice Reviewers: chad, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D12412
27 lines
515 B
CSS
27 lines
515 B
CSS
/**
|
|
* @provides conpherence-transaction-css
|
|
*/
|
|
|
|
.conpherence-transaction-view {
|
|
position: relative;
|
|
}
|
|
|
|
.conpherence-transaction-content {
|
|
overflow: auto;
|
|
}
|
|
|
|
.conpherence-transaction-header .phui-link-person {
|
|
font-weight: bold;
|
|
color: {$darkbluetext};
|
|
}
|
|
|
|
.conpherence-transaction-view.date-marker {
|
|
border-top: 1px solid {$thinblueborder};
|
|
}
|
|
.conpherence-transaction-view.date-marker .date {
|
|
position: relative;
|
|
top: -11px;
|
|
background-color: #fff;
|
|
color: {$darkbluetext};
|
|
font-weight: bold;
|
|
}
|