Skip to content

Commit 2c9359a

Browse files
committed
readd splitted base-theme css files
1 parent 99c8c1a commit 2c9359a

21 files changed

+1103
-0
lines changed

themes/base/accordion.css

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
/*!
2+
* jQuery UI Accordion 1.12.0
3+
* http://jqueryui.com
4+
*
5+
* Copyright 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: 2px 0 0 0;
16+
padding: .5em .5em .5em .7em;
17+
font-size: 100%;
18+
}
19+
.ui-accordion .ui-accordion-content {
20+
padding: 1em 2.2em;
21+
border-top: 0;
22+
overflow: auto;
23+
}

themes/base/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.12.0
3+
* http://jqueryui.com
4+
*
5+
* Copyright 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 "base.css";
12+
@import "theme.css";

themes/base/autocomplete.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.12.0
3+
* http://jqueryui.com
4+
*
5+
* Copyright 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/base.css

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/*!
2+
* jQuery UI CSS Framework 1.12.0
3+
* http://jqueryui.com
4+
*
5+
* Copyright 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("core.css");
12+
13+
@import url("accordion.css");
14+
@import url("autocomplete.css");
15+
@import url("button.css");
16+
@import url("checkboxradio.css");
17+
@import url("controlgroup.css");
18+
@import url("datepicker.css");
19+
@import url("dialog.css");
20+
@import url("draggable.css");
21+
@import url("menu.css");
22+
@import url("progressbar.css");
23+
@import url("resizable.css");
24+
@import url("selectable.css");
25+
@import url("selectmenu.css");
26+
@import url("sortable.css");
27+
@import url("slider.css");
28+
@import url("spinner.css");
29+
@import url("tabs.css");
30+
@import url("tooltip.css");

themes/base/button.css

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
/*!
2+
* jQuery UI Button 1.12.0
3+
* http://jqueryui.com
4+
*
5+
* Copyright 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+
padding: .4em 1em;
13+
display: inline-block;
14+
position: relative;
15+
line-height: normal;
16+
margin-right: .1em;
17+
cursor: pointer;
18+
vertical-align: middle;
19+
text-align: center;
20+
-webkit-user-select: none;
21+
-moz-user-select: none;
22+
-ms-user-select: none;
23+
user-select: none;
24+
25+
/* Support: IE <= 11 */
26+
overflow: visible;
27+
}
28+
29+
.ui-button,
30+
.ui-button:link,
31+
.ui-button:visited,
32+
.ui-button:hover,
33+
.ui-button:active {
34+
text-decoration: none;
35+
}
36+
37+
/* to make room for the icon, a width needs to be set here */
38+
.ui-button-icon-only {
39+
width: 2em;
40+
box-sizing: border-box;
41+
text-indent: -9999px;
42+
white-space: nowrap;
43+
}
44+
45+
/* no icon support for input elements */
46+
input.ui-button.ui-button-icon-only {
47+
text-indent: 0;
48+
}
49+
50+
/* button icon element(s) */
51+
.ui-button-icon-only .ui-icon {
52+
position: absolute;
53+
top: 50%;
54+
left: 50%;
55+
margin-top: -8px;
56+
margin-left: -8px;
57+
}
58+
59+
.ui-button.ui-icon-notext .ui-icon {
60+
padding: 0;
61+
width: 2.1em;
62+
height: 2.1em;
63+
text-indent: -9999px;
64+
white-space: nowrap;
65+
66+
}
67+
68+
input.ui-button.ui-icon-notext .ui-icon {
69+
width: auto;
70+
height: auto;
71+
text-indent: 0;
72+
white-space: normal;
73+
padding: .4em 1em;
74+
}
75+
76+
/* workarounds */
77+
/* Support: Firefox 5 - 40 */
78+
input.ui-button::-moz-focus-inner,
79+
button.ui-button::-moz-focus-inner {
80+
border: 0;
81+
padding: 0;
82+
}

themes/base/checkboxradio.css

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
/*!
2+
* jQuery UI Checkboxradio 1.12.0
3+
* http://jqueryui.com
4+
*
5+
* Copyright jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*
9+
* http://api.jqueryui.com/checkboxradio/#theming
10+
*/
11+
12+
.ui-checkboxradio-label .ui-icon-background {
13+
box-shadow: inset 1px 1px 1px #ccc;
14+
border-radius: .12em;
15+
border: none;
16+
}
17+
.ui-checkboxradio-radio-label .ui-icon-background {
18+
width: 16px;
19+
height: 16px;
20+
border-radius: 1em;
21+
overflow: visible;
22+
border: none;
23+
}
24+
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
25+
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
26+
background-image: none;
27+
width: 8px;
28+
height: 8px;
29+
border-width: 4px;
30+
border-style: solid;
31+
}
32+
.ui-checkboxradio-disabled {
33+
pointer-events: none;
34+
}

themes/base/controlgroup.css

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
/*!
2+
* jQuery UI Controlgroup 1.12.0
3+
* http://jqueryui.com
4+
*
5+
* Copyright jQuery Foundation and other contributors
6+
* Released under the MIT license.
7+
* http://jquery.org/license
8+
*
9+
* http://api.jqueryui.com/controlgroup/#theming
10+
*/
11+
12+
.ui-controlgroup {
13+
vertical-align: middle;
14+
display: inline-block;
15+
}
16+
.ui-controlgroup > .ui-controlgroup-item {
17+
float: left;
18+
margin-left: 0;
19+
margin-right: 0;
20+
}
21+
.ui-controlgroup > .ui-controlgroup-item:focus,
22+
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
23+
z-index: 9999;
24+
}
25+
.ui-controlgroup-vertical > .ui-controlgroup-item {
26+
display: block;
27+
float: none;
28+
width: 100%;
29+
margin-top: 0;
30+
margin-bottom: 0;
31+
text-align: left;
32+
}
33+
.ui-controlgroup-vertical .ui-controlgroup-item {
34+
box-sizing: border-box;
35+
}
36+
.ui-controlgroup .ui-controlgroup-label {
37+
padding: .4em 1em;
38+
}
39+
.ui-controlgroup .ui-controlgroup-label span {
40+
font-size: 80%;
41+
}
42+
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
43+
border-left: none;
44+
}
45+
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
46+
border-top: none;
47+
}
48+
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
49+
border-right: none;
50+
}
51+
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
52+
border-bottom: none;
53+
}
54+
55+
/* Spinner specific style fixes */
56+
.ui-controlgroup-vertical .ui-spinner-input {
57+
58+
/* Support: IE8 only, Android < 4.4 only */
59+
width: 75%;
60+
width: calc( 100% - 2.4em );
61+
}
62+
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
63+
border-top-style: solid;
64+
}
65+

themes/base/core.css

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
/*!
2+
* jQuery UI CSS Framework 1.12.0
3+
* http://jqueryui.com
4+
*
5+
* Copyright 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-zfix {
47+
width: 100%;
48+
height: 100%;
49+
top: 0;
50+
left: 0;
51+
position: absolute;
52+
opacity: 0;
53+
filter:Alpha(Opacity=0); /* support: IE8 */
54+
}
55+
56+
.ui-front {
57+
z-index: 100;
58+
}
59+
60+
61+
/* Interaction Cues
62+
----------------------------------*/
63+
.ui-state-disabled {
64+
cursor: default !important;
65+
pointer-events: none;
66+
}
67+
68+
69+
/* Icons
70+
----------------------------------*/
71+
.ui-icon {
72+
display: inline-block;
73+
vertical-align: middle;
74+
margin-top: -.25em;
75+
position: relative;
76+
text-indent: -99999px;
77+
overflow: hidden;
78+
background-repeat: no-repeat;
79+
}
80+
81+
.ui-widget-icon-block {
82+
left: 50%;
83+
margin-left: -8px;
84+
display: block;
85+
}
86+
87+
/* Misc visuals
88+
----------------------------------*/
89+
90+
/* Overlays */
91+
.ui-widget-overlay {
92+
position: fixed;
93+
top: 0;
94+
left: 0;
95+
width: 100%;
96+
height: 100%;
97+
}

0 commit comments

Comments
 (0)