Skip to content

Instantly share code, notes, and snippets.

@miwahall
Created October 17, 2013 17:10
Show Gist options
  • Star 47 You must be signed in to star a gist
  • Fork 24 You must be signed in to fork a gist
  • Save miwahall/7028640 to your computer and use it in GitHub Desktop.
Save miwahall/7028640 to your computer and use it in GitHub Desktop.
jQuery UI Datepicker Bootstrap 3 Style
.ui-datepicker {
background-color: #fff;
border: 1px solid #66AFE9;
border-radius: 4px;
box-shadow: 0 0 8px rgba(102,175,233,.6);
display: none;
margin-top: 4px;
padding: 10px;
width: 240px;
}
.ui-datepicker a,
.ui-datepicker a:hover {
text-decoration: none;
}
.ui-datepicker a:hover,
.ui-datepicker td:hover a {
color: #2A6496;
-webkit-transition: color 0.1s ease-in-out;
-moz-transition: color 0.1s ease-in-out;
-o-transition: color 0.1s ease-in-out;
transition: color 0.1s ease-in-out;
}
.ui-datepicker .ui-datepicker-header {
margin-bottom: 4px;
text-align: center;
}
.ui-datepicker .ui-datepicker-title {
font-weight: 700;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
cursor: default;
font-family: 'Glyphicons Halflings';
-webkit-font-smoothing: antialiased;
font-style: normal;
font-weight: normal;
height: 20px;
line-height: 1;
margin-top: 2px;
width: 30px;
}
.ui-datepicker .ui-datepicker-prev {
float: left;
text-align: left;
}
.ui-datepicker .ui-datepicker-next {
float: right;
text-align: right;
}
.ui-datepicker .ui-datepicker-prev:before {
content: "\e079";
}
.ui-datepicker .ui-datepicker-next:before {
content: "\e080";
}
.ui-datepicker .ui-icon {
display: none;
}
.ui-datepicker .ui-datepicker-calendar {
table-layout: fixed;
width: 100%;
}
.ui-datepicker .ui-datepicker-calendar th,
.ui-datepicker .ui-datepicker-calendar td {
text-align: center;
padding: 4px 0;
}
.ui-datepicker .ui-datepicker-calendar td {
border-radius: 4px;
-webkit-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
-moz-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
-o-transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}
.ui-datepicker .ui-datepicker-calendar td:hover {
background-color: #eee;
cursor: pointer;
}
.ui-datepicker .ui-datepicker-calendar td a {
text-decoration: none;
}
.ui-datepicker .ui-datepicker-current-day {
background-color: #4289cc;
}
.ui-datepicker .ui-datepicker-current-day a {
color: #fff
}
.ui-datepicker .ui-datepicker-calendar .ui-datepicker-unselectable:hover {
background-color: #fff;
cursor: default;
}
@joeabill
Copy link

Thanks for posting!

@osysltd
Copy link

osysltd commented Oct 17, 2014

nice work, thank you!

@grandmanitou
Copy link

Works nicely thank you.

@garak
Copy link

garak commented Nov 11, 2014

Can you point me to a working demo?
I tried and the result is ugly http://jsfiddle.net/tzw63xtm/
(or maybe I'm doing something wrong?)

@michaelminter
Copy link

Perfect. Thank you!

@j114143
Copy link

j114143 commented May 5, 2015

Thanks you!
Beautiful work

@arjundas
Copy link

arjundas commented May 7, 2015

nice, thank you!

Copy link

ghost commented May 25, 2015

Thanks for sharing!

@madebyallie
Copy link

Thank you for sharing. Works like a charm.

@shammelburg
Copy link

Cheers.

@jakehills
Copy link

Wonderful, thank you.

@trickycdm
Copy link

Saved me loads of time, thank you.

Copy link

ghost commented Sep 8, 2015

thank you.

@saif-software-developer

Thanks :)
Do you have an idea why the arrows are not showing up ?

@razinbunsu
Copy link

Thank you!

@gabrieljenik
Copy link

Please, You may find usefull a version I did: https://gist.github.com/gabrieljenik/326032547078410083ce

@atcraigwatson
Copy link

This is just a great piece of work!

@abeaudoin2013
Copy link

👍

@Loschcode
Copy link

Thanks, it does the job.

@najiboss
Copy link

thanks for the good job your are awsome thanks

@nickmeagher
Copy link

This is awesome, thank you for this. I made a really subtle change in my styles that I think could help.

Here's the link: https://gist.github.com/nickmeagher/089692e445ef9873700081f3e44269e1
Line: 32

Changed the cursor to pointer to accentuate the click action.

@besi
Copy link

besi commented Oct 1, 2016

👍

I added this to show disabled dates / buttons:

.ui-state-disabled{
    color: #b9b9b9
}

@balony88
Copy link

Thank you!!

@chucphamcong
Copy link

thank you !! !

@AlekseyDevksh
Copy link

Thank you!

@gordon-matt
Copy link

I've made it work with Bootstrap 4 and made some improvements. You can find a fiddle here: https://jsfiddle.net/d7q4m6r3/4/

@miwahall
Copy link
Author

This is brilliant! Great work everyone! I love seeing this being used and improved. So cool.

@gordon-matt
Copy link

gordon-matt commented Oct 22, 2019

It took me a while, but I actually figure out how to do it without JavaScript as well (For replacing the arrow icons) - A purely CSS version can be found here: https://jsfiddle.net/567yka9m/1/ .. All I had to add was this:


.ui-datepicker-prev span {
  display: none;
}

.ui-datepicker-prev:before {
  display: inline-block !important;
  font: normal normal normal 14px/1 FontAwesome !important;
  font-size: 14px !important;
  font-size: inherit !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  content: '\f060';
}

.ui-datepicker-next span {
  display: none;
}

.ui-datepicker-next:after {
  display: inline-block !important;
  font: normal normal normal 14px/1 FontAwesome !important;
  font-size: 14px !important;
  font-size: inherit !important;
  text-rendering: auto !important;
  -webkit-font-smoothing: antialiased !important;
  -moz-osx-font-smoothing: grayscale !important;
  content: '\f061';
}

@Thoniur
Copy link

Thoniur commented Feb 22, 2021

I have merged the @miwahall's and @gordon-matt's ideas and made a gist with working Bootstrap 5.0.0-beta2 version with the Bootstrap svg icons.
Gist: https://gist.github.com/Thoniur/cb653447f793865ded1591a959a5c1a7
Fiddle: https://jsfiddle.net/Thoniur/x4nvhLzr/67/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment