mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
e2430d0aa5
Summary: In new PHUITwoColumnLayout, some new colors were used that aren't in the High Contrast PostProcessor. Adding them and proper fallbacks. Test Plan: High Contrast on/off on a timeline page. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16515
41 lines
642 B
CSS
41 lines
642 B
CSS
/**
|
|
* @provides phui-curtain-view-css
|
|
*/
|
|
|
|
.phui-curtain-panel {
|
|
padding: 16px 0;
|
|
margin: 0 4px;
|
|
}
|
|
|
|
.device .phui-curtain-panel {
|
|
padding: 8px 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.device-desktop .phui-curtain-panel {
|
|
border-top: 1px solid {$greybackground};
|
|
}
|
|
|
|
.phui-curtain-panel-header {
|
|
padding: 0 0 4px;
|
|
color: {$bluetext};
|
|
font-weight: bold;
|
|
}
|
|
|
|
.phui-curtain-panel-body {
|
|
padding: 4px 0 0;
|
|
}
|
|
|
|
.device .phui-curtain-panel-body {
|
|
padding: 0;
|
|
}
|
|
|
|
/* Project tags */
|
|
|
|
.phui-curtain-panel-body .phabricator-handle-tag-list-item {
|
|
line-height: 21px;
|
|
}
|
|
|
|
.phui-side-column .phui-curtain-panel-body .phui-tag-view {
|
|
white-space: pre-wrap;
|
|
}
|