mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
7aeefc0cca
Summary: Mostly this is an exercise to clean up our CSS and Celerity processor by making sure all important color decisions are generatable. It's somewhat resonable to use if you don't review code. Posting it up here mostly so I don't lose the work. Test Plan: Visit lots and lots of pages with dark mode on and off. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D18227
73 lines
1.5 KiB
CSS
73 lines
1.5 KiB
CSS
/**
|
|
* @provides application-search-view-css
|
|
*/
|
|
|
|
.application-search-view {
|
|
background-color: {$page.content};
|
|
}
|
|
|
|
.application-search-view .phui-crumbs-view {
|
|
background-color: {$page.content};
|
|
}
|
|
|
|
.application-search-view .application-search-results.phui-object-box {
|
|
margin: 0;
|
|
padding: 0 16px 24px;
|
|
}
|
|
|
|
.device-phone .application-search-view
|
|
.application-search-results.phui-object-box {
|
|
padding: 0 12px 24px;
|
|
}
|
|
|
|
.application-search-view .application-search-results .phui-profile-header {
|
|
padding: 22px 8px;
|
|
border-bottom: 1px solid {$thinblueborder};
|
|
}
|
|
|
|
.application-search-view .phui-object-box.phui-object-box-collapsed
|
|
.phui-header-shell {
|
|
padding: 20px 8px;
|
|
}
|
|
|
|
.application-search-results
|
|
.phui-profile-header.phui-header-shell .phui-header-header {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.device-phone.application-search-view .application-search-results
|
|
.phui-profile-header {
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.device-phone .application-search-results
|
|
.phui-profile-header.phui-header-shell {
|
|
padding: 12px 0 12px 4px;
|
|
}
|
|
|
|
.device-phone .application-search-results
|
|
.phui-profile-header.phui-header-shell .phui-header-header {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.device-phone.application-search-view
|
|
.application-search-results.phui-object-box {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.application-search-view .phui-box-border {
|
|
border: none;
|
|
}
|
|
|
|
.application-search-pager {
|
|
margin: 0 16px 16px 16px;
|
|
padding: 8px;
|
|
}
|
|
|
|
.device-phone .application-search-pager {
|
|
margin: 12px;
|
|
}
|
|
|
|
.application-search-view .phui-oi-list-view.phui-oi-list-big {
|
|
margin-top: 12px;
|
|
}
|