mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
188c21ae08
Summary: Ref T3165. This: - Fixes a bug with overlapping matches. - Makes the UI a little less hideous (and more standard). - Links comments into the chat history view. Test Plan: {F396749} Reviewers: chad, btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T3165 Differential Revision: https://secure.phabricator.com/D12777
46 lines
844 B
CSS
46 lines
844 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;
|
|
}
|
|
|
|
.conpherence-fulltext-results {
|
|
margin: 0 8px 8px;
|
|
background: {$lightgreybackground};
|
|
border: 1px solid {$lightgreyborder};
|
|
}
|
|
|
|
.conpherence-fulltext-result {
|
|
margin: 0 0 1px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.conpherence-fulltext-match {
|
|
background: {$lightyellow};
|
|
}
|
|
|
|
.conpherence-fulltext-results .epoch-link {
|
|
float: right;
|
|
}
|