Created
June 29, 2012 23:12
-
-
Save evilmarty/3021338 to your computer and use it in GitHub Desktop.
styling the calendar indicator for webkit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
background: #f06; | |
background: linear-gradient(90deg, #cceecc,#eeeeee); | |
min-height: 100%; | |
} | |
input[type=date] { | |
background: #ccc; | |
background: linear-gradient(90deg, #ddd, #ccc); | |
border: 3px solid #eee; | |
border-radius: 20px; | |
box-shadow: 0 3px 3px rgba(0,0,0,0.1); | |
color: #222; | |
font: 16px Helvetica,Arial,sans-serif; | |
left: 50%; | |
line-height: 20px; | |
margin: -15px 0 0 -100px; | |
outline: 0; | |
padding: 5px 10px; | |
position: absolute; | |
top: 50%; | |
width: 200px; | |
} | |
input[type=date]::-webkit-calendar-picker-indicator { | |
color: #999; | |
height: 8px; | |
position: relative; | |
width: 8px; | |
z-index: 0; | |
} | |
input[type=date]::-webkit-calendar-picker-indicator:before { | |
background: #eee; | |
background: linear-gradient(90deg, #eee, #fff); | |
box-shadow: 0 1px 1px rgba(0,0,0,0.1); | |
border-radius: 24px; | |
content: ''; | |
display: block; | |
height: 22px; | |
left: -2px; | |
position: absolute; | |
top: -5px; | |
width: 22px; | |
z-index: -1; | |
} | |
input[type=date]::-webkit-calendar-picker-indicator:hover { | |
background: none; | |
} | |
input[type=date]:focus { | |
border-color: #3399ff; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input type="date"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"view":"split-vertical","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.