Skip to content

Commit bfeab41

Browse files
committed
Use the "bootstrap" theme for the date picker (see contao#6692)
1 parent dc5cdf4 commit bfeab41

File tree

12 files changed

+448
-286
lines changed

12 files changed

+448
-286
lines changed
-638 Bytes
Binary file not shown.

assets/mootools/datepicker/2.2.0/dashboard.css

-2
This file was deleted.

assets/mootools/datepicker/2.2.0/datepicker.css

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
-1.29 KB
Binary file not shown.

assets/mootools/datepicker/2.2.0/src/dashboard.css

-278
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// Colors
2+
$gray : #777;
3+
$grayLight : #999;
4+
$grayLightBetween : #CCC;
5+
$grayLighter : #EEE;
6+
$blue : #8ab858; // PATCH
7+
$hoveredColor : $grayLighter;
8+
$selectedColor : $blue;
9+
10+
// Dimensions
11+
$datepicker-width : 18em;
12+
$datepicker-height : 15.5em; // PATCH
13+
$datepicker-header-height : 2.5em;
14+
$datepicker-padding : 0.3em;
15+
16+
17+
// Mixins
18+
@mixin border-radius($radius) {
19+
-webkit-border-radius: $radius;
20+
-moz-border-radius: $radius;
21+
border-radius: $radius;
22+
}
23+
24+
@mixin box-shadow($shadow) {
25+
-webkit-box-shadow: $shadow;
26+
-moz-box-shadow: $shadow;
27+
box-shadow: $shadow;
28+
}
29+
30+
@mixin box-sizing($boxmodel) {
31+
-webkit-box-sizing: $boxmodel;
32+
-moz-box-sizing: $boxmodel;
33+
box-sizing: $boxmodel;
34+
}

0 commit comments

Comments
 (0)