Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct calendar high contrast #6938

Merged
merged 24 commits into from
Nov 26, 2018
Merged
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e20f680
Correct Calendar component to not allow highlighting and selecting of…
jhellesen Oct 2, 2018
d24c5d9
Correct text downward shift.
jhellesen Oct 2, 2018
0bfc6eb
Add change file
jhellesen Oct 2, 2018
6b3a29a
Fix issue where days would show their hover state when hovering over …
jhellesen Oct 2, 2018
466b9fd
Merge branch 'master' of https://github.com/OfficeDev/office-ui-fabri…
jhellesen Oct 4, 2018
3574f94
Merge branch 'master' of https://github.com/OfficeDev/office-ui-fabri…
jhellesen Oct 16, 2018
33b3d1a
Update Month, Previous / Next arrows, Year / Month buttons to have th…
jhellesen Oct 16, 2018
1121f74
Update calendar day buttons (left pane) to follow the updated high co…
jhellesen Oct 16, 2018
4b98f97
Update calendar day buttons to support the updated rest / hover / act…
jhellesen Oct 17, 2018
b6ee846
Update calendar selected month to support the updated rest / hover /…
jhellesen Oct 17, 2018
db15ccf
Fix calendar high contrast bugs
jhellesen Oct 19, 2018
66e37d7
Fix calendar high contrast display issues and 'Go to link'
jhellesen Oct 23, 2018
58c39e7
Merge branch 'master' of https://github.com/OfficeDev/office-ui-fabri…
jhellesen Oct 31, 2018
feb728c
Correct the font-size (regression) for calendar day items by letting …
jhellesen Nov 1, 2018
143d66b
Merge branch 'master' of https://github.com/OfficeDev/office-ui-fabri…
jhellesen Nov 1, 2018
d6aa27d
Merge branch 'master' of https://github.com/OfficeDev/office-ui-fabri…
jhellesen Nov 2, 2018
37f08ba
Disable the 'Go to today' button when it has no effect.
jhellesen Nov 6, 2018
a53a862
Merge branch 'master' of https://github.com/OfficeDev/office-ui-fabri…
jhellesen Nov 6, 2018
2e4a83a
Convert the calendar 'Go to today' back to a button from a link'
jhellesen Nov 6, 2018
7055c28
Fix styling for calendar day text by allowing them to inherit color a…
jhellesen Nov 6, 2018
41c2418
Update Calendar snapshot to include disabled property for 'Go to toda…
jhellesen Nov 6, 2018
945b9e1
Merge branch 'master' of https://github.com/OfficeDev/office-ui-fabri…
jhellesen Nov 8, 2018
1152044
Correct calendar logic determining when 'Go to today' should be enabled
jhellesen Nov 9, 2018
9619934
Update snapshots for corrected 'Go to today' disable logic
jhellesen Nov 9, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix issue where days would show their hover state when hovering over …
…out of range dates when DateRangeType is Month
  • Loading branch information
jhellesen committed Oct 2, 2018
commit 6b3a29a73b0ae1868c352b712469837d17edc629
Original file line number Diff line number Diff line change
Expand Up @@ -284,22 +284,22 @@ export class CalendarDay extends BaseComponent<ICalendarDayProps, ICalendarDaySt
)}
ref={element => this._setDayCellRef(element, day, isNavigatedDate)}
onMouseOver={
dateRangeType !== DateRangeType.Day
dateRangeType !== DateRangeType.Day && day.isInBounds
? this._onDayMouseOver(day.originalDate, weekIndex, dayIndex, dateRangeType)
: undefined
}
onMouseLeave={
dateRangeType !== DateRangeType.Day
dateRangeType !== DateRangeType.Day && day.isInBounds
? this._onDayMouseLeave(day.originalDate, weekIndex, dayIndex, dateRangeType)
: undefined
}
onMouseDown={
dateRangeType !== DateRangeType.Day
dateRangeType !== DateRangeType.Day && day.isInBounds
? this._onDayMouseDown(day.originalDate, weekIndex, dayIndex, dateRangeType)
: undefined
}
onMouseUp={
dateRangeType !== DateRangeType.Day
dateRangeType !== DateRangeType.Day && day.isInBounds
? this._onDayMouseUp(day.originalDate, weekIndex, dayIndex, dateRangeType)
: undefined
}
Expand Down