Skip to content

Commit 51bc354

Browse files
committed
add themes/base
1 parent 3b65832 commit 51bc354

File tree

62 files changed

+2618
-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.

62 files changed

+2618
-0
lines changed
1.7 KB
Loading
180 Bytes
Loading
178 Bytes
Loading
120 Bytes
Loading
105 Bytes
Loading
111 Bytes
Loading
110 Bytes
Loading
119 Bytes
Loading
Loading
4.27 KB
Loading
4.27 KB
Loading
4.27 KB
Loading
4.27 KB
Loading
4.27 KB
Loading

themes/base/jquery-ui.css

Lines changed: 1177 additions & 0 deletions
Large diffs are not rendered by default.

themes/base/jquery.ui.accordion.css

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
/*!
2+
* jQuery UI Accordion 1.10.4
3+
* http://jqueryui.com
4+
*
5+
* Copyright 2014 jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*
9+
* http://api.jqueryui.com/accordion/#theming
10+
*/
11+
.ui-accordion .ui-accordion-header {
12+
display: block;
13+
cursor: pointer;
14+
position: relative;
15+
margin-top: 2px;
16+
padding: .5em .5em .5em .7em;
17+
min-height: 0; /* support: IE7 */
18+
}
19+
.ui-accordion .ui-accordion-icons {
20+
padding-left: 2.2em;
21+
}
22+
.ui-accordion .ui-accordion-noicons {
23+
padding-left: .7em;
24+
}
25+
.ui-accordion .ui-accordion-icons .ui-accordion-icons {
26+
padding-left: 2.2em;
27+
}
28+
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
29+
position: absolute;
30+
left: .5em;
31+
top: 50%;
32+
margin-top: -8px;
33+
}
34+
.ui-accordion .ui-accordion-content {
35+
padding: 1em 2.2em;
36+
border-top: 0;
37+
overflow: auto;
38+
}

themes/base/jquery.ui.all.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*!
2+
* jQuery UI CSS Framework 1.10.4
3+
* http://jqueryui.com
4+
*
5+
* Copyright 2014 jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*
9+
* http://api.jqueryui.com/category/theming/
10+
*/
11+
@import "jquery.ui.base.css";
12+
@import "jquery.ui.theme.css";
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/*!
2+
* jQuery UI Autocomplete 1.10.4
3+
* http://jqueryui.com
4+
*
5+
* Copyright 2014 jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*
9+
* http://api.jqueryui.com/autocomplete/#theming
10+
*/
11+
.ui-autocomplete {
12+
position: absolute;
13+
top: 0;
14+
left: 0;
15+
cursor: default;
16+
}

themes/base/jquery.ui.base.css

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
/*!
2+
* jQuery UI CSS Framework 1.10.4
3+
* http://jqueryui.com
4+
*
5+
* Copyright 2014 jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*
9+
* http://api.jqueryui.com/category/theming/
10+
*/
11+
@import url("jquery.ui.core.css");
12+
13+
@import url("jquery.ui.accordion.css");
14+
@import url("jquery.ui.autocomplete.css");
15+
@import url("jquery.ui.button.css");
16+
@import url("jquery.ui.datepicker.css");
17+
@import url("jquery.ui.dialog.css");
18+
@import url("jquery.ui.menu.css");
19+
@import url("jquery.ui.progressbar.css");
20+
@import url("jquery.ui.resizable.css");
21+
@import url("jquery.ui.selectable.css");
22+
@import url("jquery.ui.slider.css");
23+
@import url("jquery.ui.spinner.css");
24+
@import url("jquery.ui.tabs.css");
25+
@import url("jquery.ui.tooltip.css");

themes/base/jquery.ui.button.css

Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
/*!
2+
* jQuery UI Button 1.10.4
3+
* http://jqueryui.com
4+
*
5+
* Copyright 2014 jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*
9+
* http://api.jqueryui.com/button/#theming
10+
*/
11+
.ui-button {
12+
display: inline-block;
13+
position: relative;
14+
padding: 0;
15+
line-height: normal;
16+
margin-right: .1em;
17+
cursor: pointer;
18+
vertical-align: middle;
19+
text-align: center;
20+
overflow: visible; /* removes extra width in IE */
21+
}
22+
.ui-button,
23+
.ui-button:link,
24+
.ui-button:visited,
25+
.ui-button:hover,
26+
.ui-button:active {
27+
text-decoration: none;
28+
}
29+
/* to make room for the icon, a width needs to be set here */
30+
.ui-button-icon-only {
31+
width: 2.2em;
32+
}
33+
/* button elements seem to need a little more width */
34+
button.ui-button-icon-only {
35+
width: 2.4em;
36+
}
37+
.ui-button-icons-only {
38+
width: 3.4em;
39+
}
40+
button.ui-button-icons-only {
41+
width: 3.7em;
42+
}
43+
44+
/* button text element */
45+
.ui-button .ui-button-text {
46+
display: block;
47+
line-height: normal;
48+
}
49+
.ui-button-text-only .ui-button-text {
50+
padding: .4em 1em;
51+
}
52+
.ui-button-icon-only .ui-button-text,
53+
.ui-button-icons-only .ui-button-text {
54+
padding: .4em;
55+
text-indent: -9999999px;
56+
}
57+
.ui-button-text-icon-primary .ui-button-text,
58+
.ui-button-text-icons .ui-button-text {
59+
padding: .4em 1em .4em 2.1em;
60+
}
61+
.ui-button-text-icon-secondary .ui-button-text,
62+
.ui-button-text-icons .ui-button-text {
63+
padding: .4em 2.1em .4em 1em;
64+
}
65+
.ui-button-text-icons .ui-button-text {
66+
padding-left: 2.1em;
67+
padding-right: 2.1em;
68+
}
69+
/* no icon support for input elements, provide padding by default */
70+
input.ui-button {
71+
padding: .4em 1em;
72+
}
73+
74+
/* button icon element(s) */
75+
.ui-button-icon-only .ui-icon,
76+
.ui-button-text-icon-primary .ui-icon,
77+
.ui-button-text-icon-secondary .ui-icon,
78+
.ui-button-text-icons .ui-icon,
79+
.ui-button-icons-only .ui-icon {
80+
position: absolute;
81+
top: 50%;
82+
margin-top: -8px;
83+
}
84+
.ui-button-icon-only .ui-icon {
85+
left: 50%;
86+
margin-left: -8px;
87+
}
88+
.ui-button-text-icon-primary .ui-button-icon-primary,
89+
.ui-button-text-icons .ui-button-icon-primary,
90+
.ui-button-icons-only .ui-button-icon-primary {
91+
left: .5em;
92+
}
93+
.ui-button-text-icon-secondary .ui-button-icon-secondary,
94+
.ui-button-text-icons .ui-button-icon-secondary,
95+
.ui-button-icons-only .ui-button-icon-secondary {
96+
right: .5em;
97+
}
98+
99+
/* button sets */
100+
.ui-buttonset {
101+
margin-right: 7px;
102+
}
103+
.ui-buttonset .ui-button {
104+
margin-left: 0;
105+
margin-right: -.3em;
106+
}
107+
108+
/* workarounds */
109+
/* reset extra padding in Firefox, see h5bp.com/l */
110+
input.ui-button::-moz-focus-inner,
111+
button.ui-button::-moz-focus-inner {
112+
border: 0;
113+
padding: 0;
114+
}

themes/base/jquery.ui.core.css

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
/*!
2+
* jQuery UI CSS Framework 1.10.4
3+
* http://jqueryui.com
4+
*
5+
* Copyright 2014 jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*
9+
* http://api.jqueryui.com/category/theming/
10+
*/
11+
12+
/* Layout helpers
13+
----------------------------------*/
14+
.ui-helper-hidden {
15+
display: none;
16+
}
17+
.ui-helper-hidden-accessible {
18+
border: 0;
19+
clip: rect(0 0 0 0);
20+
height: 1px;
21+
margin: -1px;
22+
overflow: hidden;
23+
padding: 0;
24+
position: absolute;
25+
width: 1px;
26+
}
27+
.ui-helper-reset {
28+
margin: 0;
29+
padding: 0;
30+
border: 0;
31+
outline: 0;
32+
line-height: 1.3;
33+
text-decoration: none;
34+
font-size: 100%;
35+
list-style: none;
36+
}
37+
.ui-helper-clearfix:before,
38+
.ui-helper-clearfix:after {
39+
content: "";
40+
display: table;
41+
border-collapse: collapse;
42+
}
43+
.ui-helper-clearfix:after {
44+
clear: both;
45+
}
46+
.ui-helper-clearfix {
47+
min-height: 0; /* support: IE7 */
48+
}
49+
.ui-helper-zfix {
50+
width: 100%;
51+
height: 100%;
52+
top: 0;
53+
left: 0;
54+
position: absolute;
55+
opacity: 0;
56+
filter:Alpha(Opacity=0);
57+
}
58+
59+
.ui-front {
60+
z-index: 100;
61+
}
62+
63+
64+
/* Interaction Cues
65+
----------------------------------*/
66+
.ui-state-disabled {
67+
cursor: default !important;
68+
}
69+
70+
71+
/* Icons
72+
----------------------------------*/
73+
74+
/* states and images */
75+
.ui-icon {
76+
display: block;
77+
text-indent: -99999px;
78+
overflow: hidden;
79+
background-repeat: no-repeat;
80+
}
81+
82+
83+
/* Misc visuals
84+
----------------------------------*/
85+
86+
/* Overlays */
87+
.ui-widget-overlay {
88+
position: fixed;
89+
top: 0;
90+
left: 0;
91+
width: 100%;
92+
height: 100%;
93+
}

0 commit comments

Comments
 (0)