@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove orphan CSS selectors in calendar/phui-calendar.css

Summary:
* `phui-calendar-bg-blue`
* `phui-calendar-bg-green`
* `phui-calendar-bg-grey`
* `phui-calendar-bg-indigo`
* `phui-calendar-bg-orange`
* `phui-calendar-bg-red`
* `phui-calendar-bg-sky`
* `phui-calendar-bg-viewer-invited`
* `phui-calendar-bg-violet`
* `phui-calendar-bg-yellow`
* `phui-calendar-blue`
* `phui-calendar-green`
* `phui-calendar-grey`
* `phui-calendar-indigo`
* `phui-calendar-orange`
* `phui-calendar-red`
* `phui-calendar-sky`
* `phui-calendar-violet`
* `phui-calendar-yellow`
* `phui-calendar-event-empty`
* `phui-calendar-list-dot`
* `phui-calendar-viewer-invited`
** Added in https://we.phorge.it/rP396e8ba82c221c085d17f1574551fbff42459452, usage removed in https://we.phorge.it/rP4016107411c12d8658a2cfeefeef19b7c12fa6cb (`$class = 'phui-calendar-list-item phui-calendar-'.$color;`) resp. https://we.phorge.it/rPb6c3d184d200e6bc43ba8f15a069c3a8620779cc from `src/view/phui/calendar/PHUICalendarListView.php`

Test Plan:
Grep the code for each CSS selector (`grep --exclude="*.css" -R 'some-search-string' .`), also do partial searches, get no results.
Optionally, play with calendar list view.

Create events in which you are:

- Busy
- Available
- Away
- Invited
- Invited and Confirmed

No visible color regressions.

Reviewers: O1 Blessed Committers, valerio.bozzolan

Reviewed By: O1 Blessed Committers, valerio.bozzolan

Subscribers: tobiaswiese, valerio.bozzolan, Matthew, Cigaryno

Differential Revision: https://we.phorge.it/D26000

+2 -137
+2 -2
resources/celerity/map.php
··· 122 122 'rsrc/css/phui/calendar/phui-calendar-day.css' => '9597d706', 123 123 'rsrc/css/phui/calendar/phui-calendar-list.css' => 'ccd7e4e2', 124 124 'rsrc/css/phui/calendar/phui-calendar-month.css' => 'cb758c42', 125 - 'rsrc/css/phui/calendar/phui-calendar.css' => 'f11073aa', 125 + 'rsrc/css/phui/calendar/phui-calendar.css' => '5dfee96b', 126 126 'rsrc/css/phui/object-item/phui-oi-big-ui.css' => 'fa74cc35', 127 127 'rsrc/css/phui/object-item/phui-oi-color.css' => 'b517bfa0', 128 128 'rsrc/css/phui/object-item/phui-oi-drag-ui.css' => 'da15d3dc', ··· 805 805 'phui-button-bar-css' => 'a4aa75c4', 806 806 'phui-button-css' => '66c38b9a', 807 807 'phui-button-simple-css' => '1ff278aa', 808 - 'phui-calendar-css' => 'f11073aa', 808 + 'phui-calendar-css' => '5dfee96b', 809 809 'phui-calendar-day-css' => '9597d706', 810 810 'phui-calendar-list-css' => 'ccd7e4e2', 811 811 'phui-calendar-month-css' => 'cb758c42',
-135
webroot/rsrc/css/phui/calendar/phui-calendar.css
··· 22 22 .phui-calendar-list .event-cancelled .phui-calendar-list-title { 23 23 text-decoration: line-through; 24 24 } 25 - 26 - .phui-calendar-viewer-invited a { 27 - color: {$green}; 28 - } 29 - 30 - .phui-calendar-red a { 31 - color: {$red}; 32 - } 33 - 34 - .phui-calendar-orange a { 35 - color: {$orange}; 36 - } 37 - 38 - .phui-calendar-yellow a { 39 - color: {$yellow}; 40 - } 41 - 42 - .phui-calendar-green a { 43 - color: {$green} 44 - } 45 - 46 - .phui-calendar-blue a { 47 - color: {$blue}; 48 - } 49 - 50 - .phui-calendar-sky a { 51 - color: {$sky}; 52 - } 53 - 54 - .phui-calendar-indigo a { 55 - color: {$indigo}; 56 - } 57 - 58 - .phui-calendar-violet a { 59 - color: {$violet}; 60 - } 61 - 62 - .phui-calendar-grey a { 63 - color: {$lightgreytext}; 64 - } 65 - 66 - .phui-calendar-bg-viewer-invited { 67 - background-color: {$lightgreen}; 68 - } 69 - 70 - .phui-calendar-bg-red { 71 - background-color: {$lightred}; 72 - } 73 - 74 - .phui-calendar-bg-orange { 75 - background-color: {$lightorange}; 76 - } 77 - 78 - .phui-calendar-bg-yellow { 79 - background-color: {$lightyellow}; 80 - } 81 - 82 - .phui-calendar-bg-green { 83 - background-color: {$lightgreen}; 84 - } 85 - 86 - .phui-calendar-bg-blue { 87 - background-color: {$lightblue}; 88 - } 89 - 90 - .phui-calendar-bg-sky { 91 - background-color: {$lightsky}; 92 - } 93 - 94 - .phui-calendar-bg-indigo { 95 - background-color: {$lightindigo}; 96 - } 97 - 98 - .phui-calendar-bg-violet { 99 - background-color: {$lightviolet}; 100 - } 101 - 102 - .phui-calendar-bg-grey { 103 - background-color: {$darkgreybackground}; 104 - } 105 - 106 - .phui-calendar-list-dot { 107 - background-color: {$lightgreytext}; 108 - border-color: {$lightgreytext}; 109 - } 110 - 111 - .phui-calendar-viewer-invited .phui-calendar-list-dot { 112 - background-color: {$green}; 113 - border-color: {$green}; 114 - } 115 - 116 - .phui-calendar-red .phui-calendar-list-dot { 117 - background-color: {$red}; 118 - border-color: {$red}; 119 - } 120 - 121 - .phui-calendar-orange .phui-calendar-list-dot { 122 - background-color: {$orange}; 123 - border-color: {$orange}; 124 - } 125 - 126 - .phui-calendar-yellow .phui-calendar-list-dot { 127 - background-color: {$orange}; 128 - border-color: {$orange}; 129 - } 130 - 131 - .phui-calendar-green .phui-calendar-list-dot { 132 - background-color: {$green}; 133 - border-color: {$green}; 134 - } 135 - 136 - .phui-calendar-blue .phui-calendar-list-dot { 137 - background-color: {$blue}; 138 - border-color: {$blue}; 139 - } 140 - 141 - .phui-calendar-sky .phui-calendar-list-dot { 142 - background-color: {$sky}; 143 - border-color: {$sky}; 144 - } 145 - 146 - .phui-calendar-indigo .phui-calendar-list-dot { 147 - background-color: {$indigo}; 148 - border-color: {$indigo}; 149 - } 150 - 151 - .phui-calendar-violet .phui-calendar-list-dot { 152 - background-color: {$violet}; 153 - border-color: {$violet}; 154 - } 155 - 156 - .phui-calendar-grey .phui-calendar-list-dot { 157 - background-color: {$lightgreytext}; 158 - border-color: {$lightgreytext}; 159 - }