Pickdate and some better general foundation styling

This commit is contained in:
2014-04-16 14:13:05 +02:00
parent ed27574b77
commit 3ef888a30a
100 changed files with 5429 additions and 31 deletions
+29
View File
@@ -0,0 +1,29 @@
/*!
* Styling for RTL (right-to-left) languages using pickadate.js
*/
/**
* Switch the direction - only really necessary if
* it hasnt already been applied higher up in the DOM.
*/
.picker {
direction: rtl;
}
/**
* Flip around the “next” and “previous” buttons.
*/
.picker__nav--next {
right: auto;
left: -1em;
}
.picker__nav--prev {
left: auto;
right: -1em;
}
.picker__nav--next:before {
border-left: 0;
border-right: 0.75em solid #000000;
}
.picker__nav--prev:before {
border-right: 0;
border-left: 0.75em solid #000000;
}