-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
99c8c1a
commit 2c9359a
Showing
21 changed files
with
1,103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/*! | ||
* jQuery UI Accordion 1.12.0 | ||
* http://jqueryui.com | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
* | ||
* http://api.jqueryui.com/accordion/#theming | ||
*/ | ||
.ui-accordion .ui-accordion-header { | ||
display: block; | ||
cursor: pointer; | ||
position: relative; | ||
margin: 2px 0 0 0; | ||
padding: .5em .5em .5em .7em; | ||
font-size: 100%; | ||
} | ||
.ui-accordion .ui-accordion-content { | ||
padding: 1em 2.2em; | ||
border-top: 0; | ||
overflow: auto; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/*! | ||
* jQuery UI CSS Framework 1.12.0 | ||
* http://jqueryui.com | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
* | ||
* http://api.jqueryui.com/category/theming/ | ||
*/ | ||
@import "base.css"; | ||
@import "theme.css"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/*! | ||
* jQuery UI Autocomplete 1.12.0 | ||
* http://jqueryui.com | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
* | ||
* http://api.jqueryui.com/autocomplete/#theming | ||
*/ | ||
.ui-autocomplete { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
cursor: default; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/*! | ||
* jQuery UI CSS Framework 1.12.0 | ||
* http://jqueryui.com | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
* | ||
* http://api.jqueryui.com/category/theming/ | ||
*/ | ||
@import url("core.css"); | ||
|
||
@import url("accordion.css"); | ||
@import url("autocomplete.css"); | ||
@import url("button.css"); | ||
@import url("checkboxradio.css"); | ||
@import url("controlgroup.css"); | ||
@import url("datepicker.css"); | ||
@import url("dialog.css"); | ||
@import url("draggable.css"); | ||
@import url("menu.css"); | ||
@import url("progressbar.css"); | ||
@import url("resizable.css"); | ||
@import url("selectable.css"); | ||
@import url("selectmenu.css"); | ||
@import url("sortable.css"); | ||
@import url("slider.css"); | ||
@import url("spinner.css"); | ||
@import url("tabs.css"); | ||
@import url("tooltip.css"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
/*! | ||
* jQuery UI Button 1.12.0 | ||
* http://jqueryui.com | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
* | ||
* http://api.jqueryui.com/button/#theming | ||
*/ | ||
.ui-button { | ||
padding: .4em 1em; | ||
display: inline-block; | ||
position: relative; | ||
line-height: normal; | ||
margin-right: .1em; | ||
cursor: pointer; | ||
vertical-align: middle; | ||
text-align: center; | ||
-webkit-user-select: none; | ||
-moz-user-select: none; | ||
-ms-user-select: none; | ||
user-select: none; | ||
|
||
/* Support: IE <= 11 */ | ||
overflow: visible; | ||
} | ||
|
||
.ui-button, | ||
.ui-button:link, | ||
.ui-button:visited, | ||
.ui-button:hover, | ||
.ui-button:active { | ||
text-decoration: none; | ||
} | ||
|
||
/* to make room for the icon, a width needs to be set here */ | ||
.ui-button-icon-only { | ||
width: 2em; | ||
box-sizing: border-box; | ||
text-indent: -9999px; | ||
white-space: nowrap; | ||
} | ||
|
||
/* no icon support for input elements */ | ||
input.ui-button.ui-button-icon-only { | ||
text-indent: 0; | ||
} | ||
|
||
/* button icon element(s) */ | ||
.ui-button-icon-only .ui-icon { | ||
position: absolute; | ||
top: 50%; | ||
left: 50%; | ||
margin-top: -8px; | ||
margin-left: -8px; | ||
} | ||
|
||
.ui-button.ui-icon-notext .ui-icon { | ||
padding: 0; | ||
width: 2.1em; | ||
height: 2.1em; | ||
text-indent: -9999px; | ||
white-space: nowrap; | ||
|
||
} | ||
|
||
input.ui-button.ui-icon-notext .ui-icon { | ||
width: auto; | ||
height: auto; | ||
text-indent: 0; | ||
white-space: normal; | ||
padding: .4em 1em; | ||
} | ||
|
||
/* workarounds */ | ||
/* Support: Firefox 5 - 40 */ | ||
input.ui-button::-moz-focus-inner, | ||
button.ui-button::-moz-focus-inner { | ||
border: 0; | ||
padding: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/*! | ||
* jQuery UI Checkboxradio 1.12.0 | ||
* http://jqueryui.com | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
* | ||
* http://api.jqueryui.com/checkboxradio/#theming | ||
*/ | ||
|
||
.ui-checkboxradio-label .ui-icon-background { | ||
box-shadow: inset 1px 1px 1px #ccc; | ||
border-radius: .12em; | ||
border: none; | ||
} | ||
.ui-checkboxradio-radio-label .ui-icon-background { | ||
width: 16px; | ||
height: 16px; | ||
border-radius: 1em; | ||
overflow: visible; | ||
border: none; | ||
} | ||
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon, | ||
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon { | ||
background-image: none; | ||
width: 8px; | ||
height: 8px; | ||
border-width: 4px; | ||
border-style: solid; | ||
} | ||
.ui-checkboxradio-disabled { | ||
pointer-events: none; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/*! | ||
* jQuery UI Controlgroup 1.12.0 | ||
* http://jqueryui.com | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
* | ||
* http://api.jqueryui.com/controlgroup/#theming | ||
*/ | ||
|
||
.ui-controlgroup { | ||
vertical-align: middle; | ||
display: inline-block; | ||
} | ||
.ui-controlgroup > .ui-controlgroup-item { | ||
float: left; | ||
margin-left: 0; | ||
margin-right: 0; | ||
} | ||
.ui-controlgroup > .ui-controlgroup-item:focus, | ||
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus { | ||
z-index: 9999; | ||
} | ||
.ui-controlgroup-vertical > .ui-controlgroup-item { | ||
display: block; | ||
float: none; | ||
width: 100%; | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
text-align: left; | ||
} | ||
.ui-controlgroup-vertical .ui-controlgroup-item { | ||
box-sizing: border-box; | ||
} | ||
.ui-controlgroup .ui-controlgroup-label { | ||
padding: .4em 1em; | ||
} | ||
.ui-controlgroup .ui-controlgroup-label span { | ||
font-size: 80%; | ||
} | ||
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item { | ||
border-left: none; | ||
} | ||
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item { | ||
border-top: none; | ||
} | ||
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content { | ||
border-right: none; | ||
} | ||
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content { | ||
border-bottom: none; | ||
} | ||
|
||
/* Spinner specific style fixes */ | ||
.ui-controlgroup-vertical .ui-spinner-input { | ||
|
||
/* Support: IE8 only, Android < 4.4 only */ | ||
width: 75%; | ||
width: calc( 100% - 2.4em ); | ||
} | ||
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up { | ||
border-top-style: solid; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
/*! | ||
* jQuery UI CSS Framework 1.12.0 | ||
* http://jqueryui.com | ||
* | ||
* Copyright jQuery Foundation and other contributors | ||
* Released under the MIT license. | ||
* http://jquery.org/license | ||
* | ||
* http://api.jqueryui.com/category/theming/ | ||
*/ | ||
|
||
/* Layout helpers | ||
----------------------------------*/ | ||
.ui-helper-hidden { | ||
display: none; | ||
} | ||
.ui-helper-hidden-accessible { | ||
border: 0; | ||
clip: rect(0 0 0 0); | ||
height: 1px; | ||
margin: -1px; | ||
overflow: hidden; | ||
padding: 0; | ||
position: absolute; | ||
width: 1px; | ||
} | ||
.ui-helper-reset { | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
outline: 0; | ||
line-height: 1.3; | ||
text-decoration: none; | ||
font-size: 100%; | ||
list-style: none; | ||
} | ||
.ui-helper-clearfix:before, | ||
.ui-helper-clearfix:after { | ||
content: ""; | ||
display: table; | ||
border-collapse: collapse; | ||
} | ||
.ui-helper-clearfix:after { | ||
clear: both; | ||
} | ||
.ui-helper-zfix { | ||
width: 100%; | ||
height: 100%; | ||
top: 0; | ||
left: 0; | ||
position: absolute; | ||
opacity: 0; | ||
filter:Alpha(Opacity=0); /* support: IE8 */ | ||
} | ||
|
||
.ui-front { | ||
z-index: 100; | ||
} | ||
|
||
|
||
/* Interaction Cues | ||
----------------------------------*/ | ||
.ui-state-disabled { | ||
cursor: default !important; | ||
pointer-events: none; | ||
} | ||
|
||
|
||
/* Icons | ||
----------------------------------*/ | ||
.ui-icon { | ||
display: inline-block; | ||
vertical-align: middle; | ||
margin-top: -.25em; | ||
position: relative; | ||
text-indent: -99999px; | ||
overflow: hidden; | ||
background-repeat: no-repeat; | ||
} | ||
|
||
.ui-widget-icon-block { | ||
left: 50%; | ||
margin-left: -8px; | ||
display: block; | ||
} | ||
|
||
/* Misc visuals | ||
----------------------------------*/ | ||
|
||
/* Overlays */ | ||
.ui-widget-overlay { | ||
position: fixed; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
} |
Oops, something went wrong.