@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.

Event lists in days of month view should also specify the time of the event.

Summary: Ref T8188, Event lists in days of month view should also specify the time of the event.

Test Plan: Time start should be display on event links in month view. Note: not handling the case where an event starts on a previous day - always displaying just start time, with no disgression.

Reviewers: chad, #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T8188

Differential Revision: https://secure.phabricator.com/D12852

+27 -10
+4 -4
resources/celerity/map.php
··· 121 121 'rsrc/css/layout/phabricator-side-menu-view.css' => 'c1db9e9c', 122 122 'rsrc/css/layout/phabricator-source-code-view.css' => '2ceee894', 123 123 'rsrc/css/phui/calendar/phui-calendar-day.css' => '3b4a65d8', 124 - 'rsrc/css/phui/calendar/phui-calendar-list.css' => 'c1d0ca59', 125 - 'rsrc/css/phui/calendar/phui-calendar-month.css' => '3e42c803', 124 + 'rsrc/css/phui/calendar/phui-calendar-list.css' => '840baa8d', 125 + 'rsrc/css/phui/calendar/phui-calendar-month.css' => '450c37ea', 126 126 'rsrc/css/phui/calendar/phui-calendar.css' => '8345be98', 127 127 'rsrc/css/phui/phui-action-header-view.css' => '89c497e7', 128 128 'rsrc/css/phui/phui-action-list.css' => '4f4d09f2', ··· 762 762 'phui-button-css' => 'de610129', 763 763 'phui-calendar-css' => '8345be98', 764 764 'phui-calendar-day-css' => '3b4a65d8', 765 - 'phui-calendar-list-css' => 'c1d0ca59', 766 - 'phui-calendar-month-css' => '3e42c803', 765 + 'phui-calendar-list-css' => '840baa8d', 766 + 'phui-calendar-month-css' => '450c37ea', 767 767 'phui-crumbs-view-css' => '594d719e', 768 768 'phui-document-view-css' => '94d5dcd8', 769 769 'phui-feed-story-css' => 'c9f3a0b5',
+1
webroot/rsrc/css/phui/calendar/phui-calendar-list.css
··· 52 52 53 53 .phui-calendar-list-item .phui-calendar-list-time { 54 54 position: absolute; 55 + top: 0; 55 56 width: 60px; 56 57 right: 0; 57 58 top: 0;
+22 -6
webroot/rsrc/css/phui/calendar/phui-calendar-month.css
··· 139 139 140 140 .phui-calendar-view .phui-calendar-list li { 141 141 margin: 0 8px; 142 - display: inline-block; 143 - float: left; 144 - clear: both; 145 142 } 146 143 147 144 .phui-calendar-view .phui-calendar-list li:first-child { ··· 160 157 161 158 .phui-calendar-view .phui-calendar-list-title { 162 159 width: auto; 163 - margin-left: 10px; 164 160 white-space: normal; 165 161 word-break: break-word; 166 162 } 167 163 164 + li.phui-calendar-list-item .phui-calendar-list-title a { 165 + text-align: left; 166 + padding-left: 8px; 167 + overflow: hidden; 168 + text-overflow: ellipsis; 169 + white-space: nowrap; 170 + } 171 + 168 172 li.phui-calendar-list-item.all-day .phui-calendar-list-title a{ 169 173 color: {$greytext}; 170 174 } ··· 173 177 color: {$green}; 174 178 } 175 179 176 - .phui-calendar-view .phui-calendar-list-time { 177 - display: none; 180 + .phui-calendar-view li.phui-calendar-list-item .phui-calendar-list-time { 181 + position: absolute; 182 + width: 60px; 183 + right: 0; 184 + top: 1px; 185 + color: {$lightgreytext}; 186 + text-align: right; 187 + } 188 + 189 + .phui-calendar-view 190 + li.phui-calendar-list-item.all-day 191 + .phui-calendar-list-time { 192 + top: 4px; 193 + right: 8px; 178 194 }