mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
11d8f1af18
Summary: Make it prettier, paginate, add user pictures, show document types, clean some stuff up a little. Plenty of room for improvement but this should make it a lot more useful. Test Plan: Here's what the new one looks like: https://secure.phabricator.com/file/view/PHID-FILE-edce2b83c2e3a121c2b7/ Reviewed By: jungejason Reviewers: tomo, jungejason, aran, tuomaspelkonen, mroch Commenters: tomo CC: aran, tomo, jungejason, epriestley Differential Revision: 545
41 lines
654 B
CSS
41 lines
654 B
CSS
/**
|
|
* @provides phabricator-search-results-css
|
|
*/
|
|
|
|
.phabricator-search-result-list {
|
|
padding: 1em 3em 2em;
|
|
}
|
|
|
|
.phabricator-search-result {
|
|
margin: 4px 0 16px;
|
|
}
|
|
|
|
.phabricator-search-result .result-image {
|
|
position: relative;
|
|
float: left;
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
.phabricator-search-result .result-desc {
|
|
margin-left: 58px;
|
|
}
|
|
|
|
.phabricator-search-result .result-type {
|
|
color: #888888;
|
|
font-size: 11px;
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.phabricator-search-result .result-name {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.search-results-pager .aphront-pager-view {
|
|
text-align: center;
|
|
}
|
|
|
|
.phabricator-search-no-results {
|
|
color: #888888;
|
|
font-size: 18px;
|
|
}
|