settings page: Change cursor for date input to 'pointer'.

Currently, the cursor for the date input field in the settings page
is 'not-allowed' as it has the disabled attribute because we want
users to pick the date from the date picker. But this leads to
confusion whether the field is editable at all.

Change the cursor to 'pointer' to make it clear that the field has
a click action associated with it.
This commit is contained in:
Divyanshu Agrawal 2020-03-05 21:01:42 +05:30 committed by Tim Abbott
parent 56591890b0
commit c0e19ed905
1 changed files with 4 additions and 0 deletions

View File

@ -1543,6 +1543,10 @@ body:not(.night-mode) #settings_page .custom_user_field .datepicker {
opacity: 1;
}
#settings_page .custom_user_field_value.datepicker {
cursor: pointer;
}
#settings_page .custom_user_field .person_picker {
min-width: 206px;
}