mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
bdfed87a60
Summary: Wanted to clean this up a little to make Deedy's diff hopefully easier. Removes some unneeded CSS, and Deedy's should remove more with object list. Test Plan: Search for people, documents, tasks, etc. Test mobile and desktop layouts Reviewers: epriestley, DeedyDas Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5880
37 lines
616 B
CSS
37 lines
616 B
CSS
/**
|
|
* @provides phabricator-search-results-css
|
|
*/
|
|
|
|
.phabricator-search-result {
|
|
margin: 4px 0 16px;
|
|
}
|
|
|
|
.device-phone .phabricator-search-result-box .phui-box {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.phabricator-search-result .result-image {
|
|
position: relative;
|
|
float: left;
|
|
width: 50px;
|
|
height: 50px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.phabricator-search-result .result-type {
|
|
margin-top: 4px;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.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;
|
|
}
|