mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
800d800766
Summary: Looks like the border was almost always overridden and the background was only slightly darker. Safe to remove these. Fixes T10424 Test Plan: Set Workboard to "red" see red workboard. Toggle CSS on and off on homepage, note little to no visual difference. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T10424 Differential Revision: https://secure.phabricator.com/D15331
63 lines
1.6 KiB
CSS
63 lines
1.6 KiB
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;
|
|
}
|
|
|
|
/*--- Profile Nav Colors -----------------------------------------------------*/
|
|
|
|
|
|
.phui-theme-blindigo .phui-profile-menu .phabricator-side-menu,
|
|
.phui-theme-blindigo .phabricator-side-menu .phui-profile-menu-footer-1 {
|
|
background: #525867;
|
|
}
|
|
|
|
.phui-theme-dark .phui-profile-menu .phabricator-side-menu,
|
|
.phui-theme-dark .phabricator-side-menu .phui-profile-menu-footer-1 {
|
|
background: #30333A;
|
|
}
|
|
|
|
.phui-theme-indigo .phui-profile-menu .phabricator-side-menu,
|
|
.phui-theme-indigo .phabricator-side-menu .phui-profile-menu-footer-1 {
|
|
background: #423658;
|
|
}
|
|
|
|
.phui-theme-red .phui-profile-menu .phabricator-side-menu,
|
|
.phui-theme-red .phabricator-side-menu .phui-profile-menu-footer-1 {
|
|
background: #420C0C;
|
|
}
|
|
|
|
.phui-theme-blue .phui-profile-menu .phabricator-side-menu,
|
|
.phui-theme-blue .phabricator-side-menu .phui-profile-menu-footer-1 {
|
|
background: #062842;
|
|
}
|
|
|
|
.phui-theme-green .phui-profile-menu .phabricator-side-menu,
|
|
.phui-theme-green .phabricator-side-menu .phui-profile-menu-footer-1 {
|
|
background: #122916;
|
|
}
|
|
|