Skip to content

Commit b652247

Browse files
committed
(lame?) fix for search not working, fixed datetimes in the example
1 parent 9e5360a commit b652247

File tree

434 files changed

+93000
-13161
lines changed

Some content is hidden

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

434 files changed

+93000
-13161
lines changed
1.7 KB
Loading
Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
/*!
2+
* jQuery UI Menu 1.10.3
3+
* http://jqueryui.com
4+
*
5+
* Copyright 2013 jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*
9+
* http://docs.jquery.com/UI/Menu#theming
10+
*/
11+
.ui-menu {
12+
list-style: none;
13+
padding: 2px;
14+
margin: 0;
15+
display: block;
16+
outline: none;
17+
}
18+
.ui-menu .ui-menu {
19+
margin-top: -3px;
20+
position: absolute;
21+
}
22+
.ui-menu .ui-menu-item {
23+
margin: 0;
24+
padding: 0;
25+
width: 100%;
26+
/* support: IE10, see #8844 */
27+
list-style-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
28+
}
29+
.ui-menu .ui-menu-divider {
30+
margin: 5px -2px 5px -2px;
31+
height: 0;
32+
font-size: 0;
33+
line-height: 0;
34+
border-width: 1px 0 0 0;
35+
}
36+
.ui-menu .ui-menu-item a {
37+
text-decoration: none;
38+
display: block;
39+
padding: 2px .4em;
40+
line-height: 1.5;
41+
min-height: 0; /* support: IE7 */
42+
font-weight: normal;
43+
}
44+
.ui-menu .ui-menu-item a.ui-state-focus,
45+
.ui-menu .ui-menu-item a.ui-state-active {
46+
font-weight: normal;
47+
margin: -1px;
48+
}
49+
50+
.ui-menu .ui-state-disabled {
51+
font-weight: normal;
52+
margin: .4em 0 .2em;
53+
line-height: 1.5;
54+
}
55+
.ui-menu .ui-state-disabled a {
56+
cursor: default;
57+
}
58+
59+
/* icon support */
60+
.ui-menu-icons {
61+
position: relative;
62+
}
63+
.ui-menu-icons .ui-menu-item a {
64+
position: relative;
65+
padding-left: 2em;
66+
}
67+
68+
/* left-aligned */
69+
.ui-menu .ui-icon {
70+
position: absolute;
71+
top: .2em;
72+
left: .2em;
73+
}
74+
75+
/* right-aligned */
76+
.ui-menu .ui-menu-icon {
77+
position: static;
78+
float: right;
79+
}
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
/*!
2+
* jQuery UI Spinner 1.10.3
3+
* http://jqueryui.com
4+
*
5+
* Copyright 2013 jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*
9+
* http://docs.jquery.com/UI/Spinner#theming
10+
*/
11+
.ui-spinner {
12+
position: relative;
13+
display: inline-block;
14+
overflow: hidden;
15+
padding: 0;
16+
vertical-align: middle;
17+
}
18+
.ui-spinner-input {
19+
border: none;
20+
background: none;
21+
color: inherit;
22+
padding: 0;
23+
margin: .2em 0;
24+
vertical-align: middle;
25+
margin-left: .4em;
26+
margin-right: 22px;
27+
}
28+
.ui-spinner-button {
29+
width: 16px;
30+
height: 50%;
31+
font-size: .5em;
32+
padding: 0;
33+
margin: 0;
34+
text-align: center;
35+
position: absolute;
36+
cursor: default;
37+
display: block;
38+
overflow: hidden;
39+
right: 0;
40+
}
41+
/* more specificity required here to overide default borders */
42+
.ui-spinner a.ui-spinner-button {
43+
border-top: none;
44+
border-bottom: none;
45+
border-right: none;
46+
}
47+
/* vertical centre icon */
48+
.ui-spinner .ui-icon {
49+
position: absolute;
50+
margin-top: -8px;
51+
top: 50%;
52+
left: 0;
53+
}
54+
.ui-spinner-up {
55+
top: 0;
56+
}
57+
.ui-spinner-down {
58+
bottom: 0;
59+
}
60+
61+
/* TR overrides */
62+
.ui-spinner .ui-icon-triangle-1-s {
63+
/* need to fix icons sprite */
64+
background-position: -65px -16px;
65+
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/*!
2+
* jQuery UI Tooltip 1.10.3
3+
* http://jqueryui.com
4+
*
5+
* Copyright 2013 jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*/
9+
.ui-tooltip {
10+
padding: 8px;
11+
position: absolute;
12+
z-index: 9999;
13+
max-width: 300px;
14+
-webkit-box-shadow: 0 0 5px #aaa;
15+
box-shadow: 0 0 5px #aaa;
16+
}
17+
body .ui-tooltip {
18+
border-width: 2px;
19+
}
1.7 KB
Loading

Mvc.JQuery.Datatables.Example/Content/themes/base/minified/jquery.ui.menu.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Mvc.JQuery.Datatables.Example/Content/themes/base/minified/jquery.ui.spinner.min.css

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/*! jQuery UI - v1.10.3 - 2013-05-03
2+
* http://jqueryui.com
3+
* Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
4+
5+
.ui-tooltip{padding:8px;position:absolute;z-index:9999;max-width:300px;-webkit-box-shadow:0 0 5px #aaa;box-shadow:0 0 5px #aaa}body .ui-tooltip{border-width:2px}

0 commit comments

Comments
 (0)