Last active
August 29, 2015 14:26
-
-
Save eymen-elkum/72c010deb49b16849e49 to your computer and use it in GitHub Desktop.
CakePHP Bootstrap UI: style for date and date time inputs selects
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
/* | |
date & dateTime inputs styles for cakePHP-BootstrapUI plugin | |
*/ | |
.list-inline li.year,.list-inline li.month{ | |
min-width: 100px; | |
} | |
.list-inline li{ | |
min-width: 75px; | |
} | |
.date .list-inline,.datetime .list-inline { | |
width: 100%; | |
} | |
/* | |
[date] input styles : | |
hide each of [hour, minute, second, meridian] | |
*/ | |
.date ul.list-inline li.month, .date ul.list-inline li.year { | |
width: 34.5%; | |
} | |
.date ul.list-inline li.day { | |
width: 31%; | |
} | |
.date ul.list-inline li.minute, .date ul.list-inline li.second, .date ul.list-inline li.meridian, .date ul.list-inline li.hour{ | |
display:none; | |
} | |
/* | |
[datetime] input styles : | |
hide each of [hour, minute, second, meridian] | |
*/ | |
.datetime ul.list-inline li { | |
width: 23%; | |
} | |
.datetime ul.list-inline li.minute,.datetime ul.list-inline li.hour { | |
width: 15.5%; | |
} | |
.datetime ul.list-inline li.second, .datetime ul.list-inline li.meridian{ | |
display:none; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment