1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-18 19:40:55 +01:00

Tweaking css to better accomodate month view week numbers on mobile.

Summary: Fixes T8249, Tweaking css to better accomodate month view week numbers on mobile.

Test Plan: Open month view on mobile and observe that week and day numbers are aligned.

Reviewers: chad, epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T8249

Differential Revision: https://secure.phabricator.com/D12910
This commit is contained in:
lkassianik 2015-05-18 13:59:23 -07:00
parent f3d382cec4
commit c006ef6289
2 changed files with 9 additions and 4 deletions

View file

@ -122,7 +122,7 @@ return array(
'rsrc/css/layout/phabricator-source-code-view.css' => '2ceee894',
'rsrc/css/phui/calendar/phui-calendar-day.css' => '3b4a65d8',
'rsrc/css/phui/calendar/phui-calendar-list.css' => '3e713fc7',
'rsrc/css/phui/calendar/phui-calendar-month.css' => '7cf00f61',
'rsrc/css/phui/calendar/phui-calendar-month.css' => '017a953b',
'rsrc/css/phui/calendar/phui-calendar.css' => '8345be98',
'rsrc/css/phui/phui-action-header-view.css' => '89c497e7',
'rsrc/css/phui/phui-action-list.css' => '4f4d09f2',
@ -763,7 +763,7 @@ return array(
'phui-calendar-css' => '8345be98',
'phui-calendar-day-css' => '3b4a65d8',
'phui-calendar-list-css' => '3e713fc7',
'phui-calendar-month-css' => '7cf00f61',
'phui-calendar-month-css' => '017a953b',
'phui-crumbs-view-css' => '594d719e',
'phui-document-view-css' => '94d5dcd8',
'phui-feed-story-css' => 'c9f3a0b5',

View file

@ -98,7 +98,7 @@ table.phui-calendar-view a.phui-calendar-week-number {
color: {$lightgreyborder};
padding: 4px;
display: inline-block;
min-width: 16px;
width: 16px;
text-align: center;
float: left;
}
@ -107,10 +107,15 @@ table.phui-calendar-view a.phui-calendar-date-number {
color: {$lightgreytext};
padding: 4px;
display: inline-block;
min-width: 16px;
width: 16px;
text-align: center;
}
.device table.phui-calendar-view a.phui-calendar-week-number,
.device table.phui-calendar-view a.phui-calendar-date-number {
width: 12px;
}
table.phui-calendar-view td.phui-calendar-date-number-container {
font-weight: normal;
color: {$lightgreytext};