- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2022 05:24 AM
Hi,
Need to know, where to change this date picker and calendar icon color n now mobile app.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-16-2022 09:33 PM
Hi,
Sorry if you've already figured this out but I'll post this so other people can customise these colors on the Now Mobile app. There are some CSS files in the 'Webviews for mobile' application scope. You can update a variety of things that the mobile app editor doesn't do.
Navigate to sp_css.list and open the record called "mesp-overrides-for-date-picker.css", you can update the color of the icon by changing the .glyphicon-calendar color attribute.
I found it easier to just update the color of .glyphicon so it updates the color of the paperclip icon too.
If you want to change the color of the date pickers day selected and the today indicator you will need insert the following code to that same css record:
// This will update the small indicator that appears on the current day.
.bootstrap-datetimepicker-widget td.today:before {
border-bottom: 7px solid red;
}
// This will update the background color of the selected date in the date picker.
.dropdown-menu.bootstrap-datetimepicker-widget td.active div {
background: red;
}
Hope this helps whoever else needs to do this in the future.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2022 05:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2022 06:25 AM
Hi Ivan,
Thank you. Tried with it, but the Secondary color doesn't seem to change the calendar color. Is there any other place where i can change it.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2022 07:38 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-01-2022 10:48 PM
Hi Sbritt,
Tried clearing the cache.do.. still it remains the same. I have changed the color of calendar icon, but not able to find where to change the datetimepicker color.