mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
396e8ba82c
Summary: Does a handful of things to make Calendar significantly more useful - Enabled overlapping events - Profile has a 'week view' of the user - Profile has a 'month view' of the users - Multiple users on a calendar are color coded - Browse view slightly more useful This stops short of implementing the new 'home' view on Calendar, mostly this is a big step though to make that happen next. Test Plan: Make lots of events on diffent users. Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, epriestley, aran Maniphest Tasks: T2897, T4375 Differential Revision: https://secure.phabricator.com/D8317
33 lines
625 B
CSS
33 lines
625 B
CSS
/**
|
|
* @provides phui-object-box-css
|
|
*/
|
|
|
|
div.phui-object-box.phui-object-box-flush {
|
|
margin-top: 0;
|
|
}
|
|
|
|
.phui-object-box .phui-header-shell {
|
|
padding: 4px 5px 4px 12px;
|
|
border-bottom: 1px solid {$lightblueborder};
|
|
border-top: none;
|
|
}
|
|
|
|
.phui-object-box .phui-header-image {
|
|
margin: 1px 8px 0px -7px;
|
|
}
|
|
|
|
.phui-object-box .phui-header-shell h1 {
|
|
color: {$bluetext};
|
|
text-shadow: 0 1px #fff;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.phui-object-box .phui-header-shell + .aphront-error-view {
|
|
margin: 0;
|
|
border-width: 0;
|
|
border-bottom: 1px solid {$lightblueborder};
|
|
}
|
|
|
|
.device-phone .phui-object-box {
|
|
margin: 8px 8px 0 8px;
|
|
}
|