mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 10:52:41 +01:00
3245e74f16
Summary: Depends on D17670. Fixes T12137. Fixes T12003. Ref T2632. This shows users a readout of which terms were actually searched for. This also drops those terms from the query we submit to the backend, dodging the weird behaviors / search engine bugs in T12137. This might need some design tweaking. Test Plan: {F4899825} Reviewers: chad Reviewed By: chad Maniphest Tasks: T12137, T12003, T2632 Differential Revision: https://secure.phabricator.com/D17672
31 lines
492 B
CSS
31 lines
492 B
CSS
/**
|
|
* @provides phabricator-search-results-css
|
|
*/
|
|
|
|
.phui-oi-link strong {
|
|
color: {$fire};
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.phui-source-fragment {
|
|
color: {$darkgreytext};
|
|
}
|
|
|
|
.phui-source-fragment strong {
|
|
background-color: {$lightyellow};
|
|
font-weight: normal;
|
|
color: #000;
|
|
}
|
|
|
|
.phui-fulltext-tokens {
|
|
margin: 16px 8px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phui-fulltext-tokens .phui-tag-view {
|
|
margin: 0 2px;
|
|
}
|
|
|
|
.phui-fulltext-tokens .phui-tag-view.phui-tag-shade-grey {
|
|
opacity: 0.5;
|
|
}
|