mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-11 17:32:41 +01:00
385bf4f815
Summary: Removes the special CSS to change the sidebar when the header is called. Also switched to using a more standard background color. I'd also like to make collapsed the default, but can't find best way to do that. Test Plan: Vist profile, projects, collapse and open nav, try a workboard color. Still all good. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Differential Revision: https://secure.phabricator.com/D16673
30 lines
599 B
CSS
30 lines
599 B
CSS
/**
|
|
* @provides phui-theme-css
|
|
*/
|
|
|
|
/*--- Header Colors ----------------------------------------------------------*/
|
|
|
|
.phui-theme-blindigo .phabricator-main-menu-background {
|
|
background: #41506e;
|
|
}
|
|
|
|
.phui-theme-dark .phabricator-main-menu-background {
|
|
background: #171c20;
|
|
}
|
|
|
|
.phui-theme-indigo .phabricator-main-menu-background {
|
|
background: #2C1D4A;
|
|
}
|
|
|
|
.phui-theme-red .phabricator-main-menu-background {
|
|
background: #650404;
|
|
}
|
|
|
|
.phui-theme-blue .phabricator-main-menu-background {
|
|
background: #003965;
|
|
}
|
|
|
|
.phui-theme-green .phabricator-main-menu-background {
|
|
background: #124A1B;
|
|
}
|
|
|