Skip to content

Commit d5c4fa6

Browse files
committed
Initial commit
0 parents  commit d5c4fa6

File tree

828 files changed

+306767
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

828 files changed

+306767
-0
lines changed

img/logo-white.png

3.09 KB
Loading

img/logotransparent.png

401 KB
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
// Datepicker .less buildfile. Includes select mixins/variables from bootstrap
2+
// and imports the included datepicker.less to output a minimal datepicker.css
3+
//
4+
// Usage:
5+
// lessc build.less datepicker.css
6+
//
7+
// Variables and mixins copied from bootstrap 2.0.2
8+
9+
// Variables
10+
@grayLight: #999;
11+
@grayLighter: #eee;
12+
@white: #fff;
13+
@linkColor: #08c;
14+
@btnPrimaryBackground: @linkColor;
15+
@orange: #f89406;
16+
17+
// Mixins
18+
19+
// Border Radius
20+
.border-radius(@radius: 5px) {
21+
-webkit-border-radius: @radius;
22+
-moz-border-radius: @radius;
23+
border-radius: @radius;
24+
}
25+
26+
// Button backgrounds
27+
.buttonBackground(@startColor, @endColor) {
28+
.gradientBar(@startColor, @endColor);
29+
.reset-filter();
30+
&:hover, &:active, &.active, &.disabled, &[disabled] {
31+
background-color: @endColor;
32+
}
33+
&:active,
34+
&.active {
35+
background-color: darken(@endColor, 10%) e("\9");
36+
}
37+
}
38+
39+
// Reset filters for IE
40+
.reset-filter() {
41+
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
42+
}
43+
44+
// Gradient Bar Colors for buttons and alerts
45+
.gradientBar(@primaryColor, @secondaryColor) {
46+
#gradient > .vertical(@primaryColor, @secondaryColor);
47+
border-color: @secondaryColor @secondaryColor darken(@secondaryColor, 15%);
48+
border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) fadein(rgba(0,0,0,.1), 15%);
49+
}
50+
51+
// Gradients
52+
#gradient {
53+
.vertical(@startColor: #555, @endColor: #333) {
54+
background-color: mix(@startColor, @endColor, 60%);
55+
background-image: -moz-linear-gradient(top, @startColor, @endColor); // FF 3.6+
56+
background-image: -ms-linear-gradient(top, @startColor, @endColor); // IE10
57+
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(@startColor), to(@endColor)); // Safari 4+, Chrome 2+
58+
background-image: -webkit-linear-gradient(top, @startColor, @endColor); // Safari 5.1+, Chrome 10+
59+
background-image: -o-linear-gradient(top, @startColor, @endColor); // Opera 11.10
60+
background-image: linear-gradient(top, @startColor, @endColor); // The standard
61+
background-repeat: repeat-x;
62+
filter: e(%("progid:DXImageTransform.Microsoft.gradient(startColorstr='%d', endColorstr='%d', GradientType=0)",@startColor,@endColor)); // IE9 and down
63+
}
64+
}
65+
66+
@import "../less/datetimepicker.less";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
// Datepicker standalone .less buildfile. Includes all necessary mixins/variables/rules from bootstrap
2+
// and imports the included datepicker.less to output a minimal standalone datepicker.css
3+
//
4+
// Usage:
5+
// lessc build_standalone.less datepicker.css
6+
//
7+
// Variables, mixins, and rules copied from bootstrap 2.0.2
8+
9+
@import "build.less";
10+
11+
// Dropdown css
12+
13+
@zindexDropdown: 1000;
14+
@grayDark: #333;
15+
@baseLineHeight: 18px;
16+
@tableBackground: transparent; // overall background-color
17+
@dropdownBackground: @white;
18+
@dropdownBorder: rgba(0,0,0,.2);
19+
@dropdownLinkColor: @grayDark;
20+
@dropdownLinkColorHover: @white;
21+
@dropdownLinkBackgroundHover: @linkColor;
22+
23+
// Drop shadows
24+
.box-shadow(@shadow) {
25+
-webkit-box-shadow: @shadow;
26+
-moz-box-shadow: @shadow;
27+
box-shadow: @shadow;
28+
}
29+
30+
// The dropdown menu (ul)
31+
// ----------------------
32+
.datetimepicker.dropdown-menu {
33+
position: absolute;
34+
top: 100%;
35+
left: 0;
36+
z-index: @zindexDropdown;
37+
float: left;
38+
display: none; // none by default, but block on "open" of the menu
39+
min-width: 160px;
40+
list-style: none;
41+
background-color: @dropdownBackground;
42+
border: 1px solid #ccc;
43+
border: 1px solid rgba(0,0,0,.2);
44+
.border-radius(5px);
45+
.box-shadow(0 5px 10px rgba(0,0,0,.2));
46+
-webkit-background-clip: padding-box;
47+
-moz-background-clip: padding;
48+
background-clip: padding-box;
49+
*border-right-width: 2px;
50+
*border-bottom-width: 2px;
51+
52+
// Normally inherited from bootstrap's `body`
53+
color: #333333;
54+
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
55+
font-size:13px;
56+
line-height: @baseLineHeight;
57+
58+
th, td {
59+
padding: 4px 5px;
60+
}
61+
}
62+
63+
// Alternative arrows
64+
// May require `charset="UTF-8"` in your `<link>` tag
65+
.datetimepicker {
66+
.prev, .next {font-style:normal;}
67+
.prev:after {content:"«";}
68+
.next:after {content:"»";}
69+
}

0 commit comments

Comments
 (0)