| @@ -0,0 +1,175 @@ | ||
| /*! | ||
| * jQuery UI Datepicker 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| * | ||
| * http://api.jqueryui.com/datepicker/#theming | ||
| */ | ||
| .ui-datepicker { | ||
| width: 17em; | ||
| padding: .2em .2em 0; | ||
| display: none; | ||
| } | ||
| .ui-datepicker .ui-datepicker-header { | ||
| position: relative; | ||
| padding: .2em 0; | ||
| } | ||
| .ui-datepicker .ui-datepicker-prev, | ||
| .ui-datepicker .ui-datepicker-next { | ||
| position: absolute; | ||
| top: 2px; | ||
| width: 1.8em; | ||
| height: 1.8em; | ||
| } | ||
| .ui-datepicker .ui-datepicker-prev-hover, | ||
| .ui-datepicker .ui-datepicker-next-hover { | ||
| top: 1px; | ||
| } | ||
| .ui-datepicker .ui-datepicker-prev { | ||
| left: 2px; | ||
| } | ||
| .ui-datepicker .ui-datepicker-next { | ||
| right: 2px; | ||
| } | ||
| .ui-datepicker .ui-datepicker-prev-hover { | ||
| left: 1px; | ||
| } | ||
| .ui-datepicker .ui-datepicker-next-hover { | ||
| right: 1px; | ||
| } | ||
| .ui-datepicker .ui-datepicker-prev span, | ||
| .ui-datepicker .ui-datepicker-next span { | ||
| display: block; | ||
| position: absolute; | ||
| left: 50%; | ||
| margin-left: -8px; | ||
| top: 50%; | ||
| margin-top: -8px; | ||
| } | ||
| .ui-datepicker .ui-datepicker-title { | ||
| margin: 0 2.3em; | ||
| line-height: 1.8em; | ||
| text-align: center; | ||
| } | ||
| .ui-datepicker .ui-datepicker-title select { | ||
| font-size: 1em; | ||
| margin: 1px 0; | ||
| } | ||
| .ui-datepicker select.ui-datepicker-month, | ||
| .ui-datepicker select.ui-datepicker-year { | ||
| width: 49%; | ||
| } | ||
| .ui-datepicker table { | ||
| width: 100%; | ||
| font-size: .9em; | ||
| border-collapse: collapse; | ||
| margin: 0 0 .4em; | ||
| } | ||
| .ui-datepicker th { | ||
| padding: .7em .3em; | ||
| text-align: center; | ||
| font-weight: bold; | ||
| border: 0; | ||
| } | ||
| .ui-datepicker td { | ||
| border: 0; | ||
| padding: 1px; | ||
| } | ||
| .ui-datepicker td span, | ||
| .ui-datepicker td a { | ||
| display: block; | ||
| padding: .2em; | ||
| text-align: right; | ||
| text-decoration: none; | ||
| } | ||
| .ui-datepicker .ui-datepicker-buttonpane { | ||
| background-image: none; | ||
| margin: .7em 0 0 0; | ||
| padding: 0 .2em; | ||
| border-left: 0; | ||
| border-right: 0; | ||
| border-bottom: 0; | ||
| } | ||
| .ui-datepicker .ui-datepicker-buttonpane button { | ||
| float: right; | ||
| margin: .5em .2em .4em; | ||
| cursor: pointer; | ||
| padding: .2em .6em .3em .6em; | ||
| width: auto; | ||
| overflow: visible; | ||
| } | ||
| .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { | ||
| float: left; | ||
| } | ||
|
|
||
| /* with multiple calendars */ | ||
| .ui-datepicker.ui-datepicker-multi { | ||
| width: auto; | ||
| } | ||
| .ui-datepicker-multi .ui-datepicker-group { | ||
| float: left; | ||
| } | ||
| .ui-datepicker-multi .ui-datepicker-group table { | ||
| width: 95%; | ||
| margin: 0 auto .4em; | ||
| } | ||
| .ui-datepicker-multi-2 .ui-datepicker-group { | ||
| width: 50%; | ||
| } | ||
| .ui-datepicker-multi-3 .ui-datepicker-group { | ||
| width: 33.3%; | ||
| } | ||
| .ui-datepicker-multi-4 .ui-datepicker-group { | ||
| width: 25%; | ||
| } | ||
| .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header, | ||
| .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { | ||
| border-left-width: 0; | ||
| } | ||
| .ui-datepicker-multi .ui-datepicker-buttonpane { | ||
| clear: left; | ||
| } | ||
| .ui-datepicker-row-break { | ||
| clear: both; | ||
| width: 100%; | ||
| font-size: 0; | ||
| } | ||
|
|
||
| /* RTL support */ | ||
| .ui-datepicker-rtl { | ||
| direction: rtl; | ||
| } | ||
| .ui-datepicker-rtl .ui-datepicker-prev { | ||
| right: 2px; | ||
| left: auto; | ||
| } | ||
| .ui-datepicker-rtl .ui-datepicker-next { | ||
| left: 2px; | ||
| right: auto; | ||
| } | ||
| .ui-datepicker-rtl .ui-datepicker-prev:hover { | ||
| right: 1px; | ||
| left: auto; | ||
| } | ||
| .ui-datepicker-rtl .ui-datepicker-next:hover { | ||
| left: 1px; | ||
| right: auto; | ||
| } | ||
| .ui-datepicker-rtl .ui-datepicker-buttonpane { | ||
| clear: right; | ||
| } | ||
| .ui-datepicker-rtl .ui-datepicker-buttonpane button { | ||
| float: left; | ||
| } | ||
| .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current, | ||
| .ui-datepicker-rtl .ui-datepicker-group { | ||
| float: right; | ||
| } | ||
| .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header, | ||
| .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { | ||
| border-right-width: 0; | ||
| border-left-width: 1px; | ||
| } |
| @@ -0,0 +1,70 @@ | ||
| /*! | ||
| * jQuery UI Dialog 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| * | ||
| * http://api.jqueryui.com/dialog/#theming | ||
| */ | ||
| .ui-dialog { | ||
| overflow: hidden; | ||
| position: absolute; | ||
| top: 0; | ||
| left: 0; | ||
| padding: .2em; | ||
| outline: 0; | ||
| } | ||
| .ui-dialog .ui-dialog-titlebar { | ||
| padding: .4em 1em; | ||
| position: relative; | ||
| } | ||
| .ui-dialog .ui-dialog-title { | ||
| float: left; | ||
| margin: .1em 0; | ||
| white-space: nowrap; | ||
| width: 90%; | ||
| overflow: hidden; | ||
| text-overflow: ellipsis; | ||
| } | ||
| .ui-dialog .ui-dialog-titlebar-close { | ||
| position: absolute; | ||
| right: .3em; | ||
| top: 50%; | ||
| width: 20px; | ||
| margin: -10px 0 0 0; | ||
| padding: 1px; | ||
| height: 20px; | ||
| } | ||
| .ui-dialog .ui-dialog-content { | ||
| position: relative; | ||
| border: 0; | ||
| padding: .5em 1em; | ||
| background: none; | ||
| overflow: auto; | ||
| } | ||
| .ui-dialog .ui-dialog-buttonpane { | ||
| text-align: left; | ||
| border-width: 1px 0 0 0; | ||
| background-image: none; | ||
| margin-top: .5em; | ||
| padding: .3em 1em .5em .4em; | ||
| } | ||
| .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { | ||
| float: right; | ||
| } | ||
| .ui-dialog .ui-dialog-buttonpane button { | ||
| margin: .5em .4em .5em 0; | ||
| cursor: pointer; | ||
| } | ||
| .ui-dialog .ui-resizable-se { | ||
| width: 12px; | ||
| height: 12px; | ||
| right: -5px; | ||
| bottom: -5px; | ||
| background-position: 16px 16px; | ||
| } | ||
| .ui-draggable .ui-dialog-titlebar { | ||
| cursor: move; | ||
| } |
| @@ -0,0 +1,12 @@ | ||
| /*! | ||
| * jQuery UI Draggable 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| */ | ||
| .ui-draggable-handle { | ||
| -ms-touch-action: none; | ||
| touch-action: none; | ||
| } |
| @@ -0,0 +1,63 @@ | ||
| /*! | ||
| * jQuery UI Menu 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| * | ||
| * http://api.jqueryui.com/menu/#theming | ||
| */ | ||
| .ui-menu { | ||
| list-style: none; | ||
| padding: 0; | ||
| margin: 0; | ||
| display: block; | ||
| outline: none; | ||
| } | ||
| .ui-menu .ui-menu { | ||
| position: absolute; | ||
| } | ||
| .ui-menu .ui-menu-item { | ||
| margin: 0; | ||
| display: block; | ||
| padding: 3px .4em; | ||
| cursor: pointer; | ||
| min-height: 0; /* support: IE7 */ | ||
| /* support: IE10, see #8844 */ | ||
| list-style-image: url("data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7"); | ||
| } | ||
| .ui-menu .ui-menu-divider { | ||
| margin: 5px 0; | ||
| height: 0; | ||
| font-size: 0; | ||
| line-height: 0; | ||
| border-width: 1px 0 0 0; | ||
| } | ||
| .ui-menu .ui-state-focus, | ||
| .ui-menu .ui-state-active { | ||
| margin: -1px; | ||
| } | ||
|
|
||
| /* icon support */ | ||
| .ui-menu-icons { | ||
| position: relative; | ||
| } | ||
| .ui-menu-icons .ui-menu-item { | ||
| position: relative; | ||
| padding-left: 2em; | ||
| } | ||
|
|
||
| /* left-aligned */ | ||
| .ui-menu .ui-icon { | ||
| position: absolute; | ||
| top: .2em; | ||
| left: .2em; | ||
| } | ||
|
|
||
| /* right-aligned */ | ||
| .ui-menu .ui-menu-icon { | ||
| position: relative; | ||
| top: -.2em; | ||
| float: right; | ||
| } |
| @@ -0,0 +1,5 @@ | ||
| /*! jQuery UI - v1.11.0-beta.1 - 2014-04-24 | ||
| * http://jqueryui.com | ||
| * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ | ||
|
|
||
| .ui-autocomplete{position:absolute;top:0;left:0;cursor:default} |
| @@ -0,0 +1,5 @@ | ||
| /*! jQuery UI - v1.11.0-beta.1 - 2014-04-24 | ||
| * http://jqueryui.com | ||
| * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ | ||
|
|
||
| .ui-draggable-handle{-ms-touch-action:none;touch-action:none} |
| @@ -0,0 +1,5 @@ | ||
| /*! jQuery UI - v1.11.0-beta.1 - 2014-04-24 | ||
| * http://jqueryui.com | ||
| * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ | ||
|
|
||
| .ui-progressbar{height:2em;text-align:left;overflow:hidden}.ui-progressbar .ui-progressbar-value{margin:-1px;height:100%}.ui-progressbar .ui-progressbar-overlay{background:url("images/animated-overlay.gif");height:100%;filter:alpha(opacity=25);opacity:0.25}.ui-progressbar-indeterminate .ui-progressbar-value{background-image:none} |
| @@ -0,0 +1,5 @@ | ||
| /*! jQuery UI - v1.11.0-beta.1 - 2014-04-24 | ||
| * http://jqueryui.com | ||
| * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ | ||
|
|
||
| .ui-selectable{-ms-touch-action:none;touch-action:none}.ui-selectable-helper{position:absolute;z-index:100;border:1px dotted black} |
| @@ -0,0 +1,5 @@ | ||
| /*! jQuery UI - v1.11.0-beta.1 - 2014-04-24 | ||
| * http://jqueryui.com | ||
| * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ | ||
|
|
||
| .ui-sortable-handle{-ms-touch-action:none;touch-action:none} |
| @@ -0,0 +1,5 @@ | ||
| /*! jQuery UI - v1.11.0-beta.1 - 2014-04-24 | ||
| * http://jqueryui.com | ||
| * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ | ||
|
|
||
| undefined |
| @@ -0,0 +1,5 @@ | ||
| /*! jQuery UI - v1.11.0-beta.1 - 2014-04-24 | ||
| * http://jqueryui.com | ||
| * Copyright 2014 jQuery Foundation and other contributors; Licensed MIT */ | ||
|
|
||
| .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,0 +1,28 @@ | ||
| /*! | ||
| * jQuery UI Progressbar 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| * | ||
| * http://api.jqueryui.com/progressbar/#theming | ||
| */ | ||
| .ui-progressbar { | ||
| height: 2em; | ||
| text-align: left; | ||
| overflow: hidden; | ||
| } | ||
| .ui-progressbar .ui-progressbar-value { | ||
| margin: -1px; | ||
| height: 100%; | ||
| } | ||
| .ui-progressbar .ui-progressbar-overlay { | ||
| background: url("images/animated-overlay.gif"); | ||
| height: 100%; | ||
| filter: alpha(opacity=25); | ||
| opacity: 0.25; | ||
| } | ||
| .ui-progressbar-indeterminate .ui-progressbar-value { | ||
| background-image: none; | ||
| } |
| @@ -0,0 +1,78 @@ | ||
| /*! | ||
| * jQuery UI Resizable 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| */ | ||
| .ui-resizable { | ||
| position: relative; | ||
| } | ||
| .ui-resizable-handle { | ||
| position: absolute; | ||
| font-size: 0.1px; | ||
| display: block; | ||
| -ms-touch-action: none; | ||
| touch-action: none; | ||
| } | ||
| .ui-resizable-disabled .ui-resizable-handle, | ||
| .ui-resizable-autohide .ui-resizable-handle { | ||
| display: none; | ||
| } | ||
| .ui-resizable-n { | ||
| cursor: n-resize; | ||
| height: 7px; | ||
| width: 100%; | ||
| top: -5px; | ||
| left: 0; | ||
| } | ||
| .ui-resizable-s { | ||
| cursor: s-resize; | ||
| height: 7px; | ||
| width: 100%; | ||
| bottom: -5px; | ||
| left: 0; | ||
| } | ||
| .ui-resizable-e { | ||
| cursor: e-resize; | ||
| width: 7px; | ||
| right: -5px; | ||
| top: 0; | ||
| height: 100%; | ||
| } | ||
| .ui-resizable-w { | ||
| cursor: w-resize; | ||
| width: 7px; | ||
| left: -5px; | ||
| top: 0; | ||
| height: 100%; | ||
| } | ||
| .ui-resizable-se { | ||
| cursor: se-resize; | ||
| width: 12px; | ||
| height: 12px; | ||
| right: 1px; | ||
| bottom: 1px; | ||
| } | ||
| .ui-resizable-sw { | ||
| cursor: sw-resize; | ||
| width: 9px; | ||
| height: 9px; | ||
| left: -5px; | ||
| bottom: -5px; | ||
| } | ||
| .ui-resizable-nw { | ||
| cursor: nw-resize; | ||
| width: 9px; | ||
| height: 9px; | ||
| left: -5px; | ||
| top: -5px; | ||
| } | ||
| .ui-resizable-ne { | ||
| cursor: ne-resize; | ||
| width: 9px; | ||
| height: 9px; | ||
| right: -5px; | ||
| top: -5px; | ||
| } |
| @@ -0,0 +1,17 @@ | ||
| /*! | ||
| * jQuery UI Selectable 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| */ | ||
| .ui-selectable { | ||
| -ms-touch-action: none; | ||
| touch-action: none; | ||
| } | ||
| .ui-selectable-helper { | ||
| position: absolute; | ||
| z-index: 100; | ||
| border: 1px dotted black; | ||
| } |
| @@ -0,0 +1,59 @@ | ||
| /*! | ||
| * jQuery UI Selectmenu 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| * | ||
| * http://api.jqueryui.com/selectmenu/#theming | ||
| */ | ||
| .ui-selectmenu-menu { | ||
| padding: 0; | ||
| margin: 0; | ||
| position: absolute; | ||
| top: 0; | ||
| left: 0; | ||
| display: none; | ||
| } | ||
| .ui-selectmenu-menu .ui-menu { | ||
| overflow: auto; | ||
| /* Support: IE7 */ | ||
| overflow-x: hidden; | ||
| padding-bottom: 1px; | ||
| } | ||
| .ui-selectmenu-menu .ui-menu .ui-selectmenu-optgroup { | ||
| font-size: 1em; | ||
| font-weight: bold; | ||
| line-height: 1.5; | ||
| padding: 2px 0.4em; | ||
| margin: 0.5em 0 0 0; | ||
| height: auto; | ||
| border: 0; | ||
| } | ||
| .ui-selectmenu-open { | ||
| display: block; | ||
| } | ||
| .ui-selectmenu-button { | ||
| display: inline-block; | ||
| overflow: hidden; | ||
| position: relative; | ||
| text-decoration: none; | ||
| cursor: pointer; | ||
| } | ||
| .ui-selectmenu-button span.ui-icon { | ||
| right: 0.5em; | ||
| left: auto; | ||
| margin-top: -8px; | ||
| position: absolute; | ||
| top: 50%; | ||
| } | ||
| .ui-selectmenu-button span.ui-selectmenu-text { | ||
| text-align: left; | ||
| padding: 0.4em 2.1em 0.4em 1em; | ||
| display: block; | ||
| line-height: 1.4; | ||
| overflow: hidden; | ||
| text-overflow: ellipsis; | ||
| white-space: nowrap; | ||
| } |
| @@ -0,0 +1,75 @@ | ||
| /*! | ||
| * jQuery UI Slider 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| * | ||
| * http://api.jqueryui.com/slider/#theming | ||
| */ | ||
| .ui-slider { | ||
| position: relative; | ||
| text-align: left; | ||
| } | ||
| .ui-slider .ui-slider-handle { | ||
| position: absolute; | ||
| z-index: 2; | ||
| width: 1.2em; | ||
| height: 1.2em; | ||
| cursor: default; | ||
| -ms-touch-action: none; | ||
| touch-action: none; | ||
| } | ||
| .ui-slider .ui-slider-range { | ||
| position: absolute; | ||
| z-index: 1; | ||
| font-size: .7em; | ||
| display: block; | ||
| border: 0; | ||
| background-position: 0 0; | ||
| } | ||
|
|
||
| /* For IE8 - See #6727 */ | ||
| .ui-slider.ui-state-disabled .ui-slider-handle, | ||
| .ui-slider.ui-state-disabled .ui-slider-range { | ||
| filter: inherit; | ||
| } | ||
|
|
||
| .ui-slider-horizontal { | ||
| height: .8em; | ||
| } | ||
| .ui-slider-horizontal .ui-slider-handle { | ||
| top: -.3em; | ||
| margin-left: -.6em; | ||
| } | ||
| .ui-slider-horizontal .ui-slider-range { | ||
| top: 0; | ||
| height: 100%; | ||
| } | ||
| .ui-slider-horizontal .ui-slider-range-min { | ||
| left: 0; | ||
| } | ||
| .ui-slider-horizontal .ui-slider-range-max { | ||
| right: 0; | ||
| } | ||
|
|
||
| .ui-slider-vertical { | ||
| width: .8em; | ||
| height: 100px; | ||
| } | ||
| .ui-slider-vertical .ui-slider-handle { | ||
| left: -.3em; | ||
| margin-left: 0; | ||
| margin-bottom: -.6em; | ||
| } | ||
| .ui-slider-vertical .ui-slider-range { | ||
| left: 0; | ||
| width: 100%; | ||
| } | ||
| .ui-slider-vertical .ui-slider-range-min { | ||
| bottom: 0; | ||
| } | ||
| .ui-slider-vertical .ui-slider-range-max { | ||
| top: 0; | ||
| } |
| @@ -0,0 +1,12 @@ | ||
| /*! | ||
| * jQuery UI Sortable 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| */ | ||
| .ui-sortable-handle { | ||
| -ms-touch-action: none; | ||
| touch-action: none; | ||
| } |
| @@ -0,0 +1,65 @@ | ||
| /*! | ||
| * jQuery UI Spinner 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| * | ||
| * http://api.jqueryui.com/spinner/#theming | ||
| */ | ||
| .ui-spinner { | ||
| position: relative; | ||
| display: inline-block; | ||
| overflow: hidden; | ||
| padding: 0; | ||
| vertical-align: middle; | ||
| } | ||
| .ui-spinner-input { | ||
| border: none; | ||
| background: none; | ||
| color: inherit; | ||
| padding: 0; | ||
| margin: .2em 0; | ||
| vertical-align: middle; | ||
| margin-left: .4em; | ||
| margin-right: 22px; | ||
| } | ||
| .ui-spinner-button { | ||
| width: 16px; | ||
| height: 50%; | ||
| font-size: .5em; | ||
| padding: 0; | ||
| margin: 0; | ||
| text-align: center; | ||
| position: absolute; | ||
| cursor: default; | ||
| display: block; | ||
| overflow: hidden; | ||
| right: 0; | ||
| } | ||
| /* more specificity required here to override default borders */ | ||
| .ui-spinner a.ui-spinner-button { | ||
| border-top: none; | ||
| border-bottom: none; | ||
| border-right: none; | ||
| } | ||
| /* vertically center icon */ | ||
| .ui-spinner .ui-icon { | ||
| position: absolute; | ||
| margin-top: -8px; | ||
| top: 50%; | ||
| left: 0; | ||
| } | ||
| .ui-spinner-up { | ||
| top: 0; | ||
| } | ||
| .ui-spinner-down { | ||
| bottom: 0; | ||
| } | ||
|
|
||
| /* TR overrides */ | ||
| .ui-spinner .ui-icon-triangle-1-s { | ||
| /* need to fix icons sprite */ | ||
| background-position: -65px -16px; | ||
| } |
| @@ -0,0 +1,51 @@ | ||
| /*! | ||
| * jQuery UI Tabs 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| * | ||
| * http://api.jqueryui.com/tabs/#theming | ||
| */ | ||
| .ui-tabs { | ||
| position: relative;/* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */ | ||
| padding: .2em; | ||
| } | ||
| .ui-tabs .ui-tabs-nav { | ||
| margin: 0; | ||
| padding: .2em .2em 0; | ||
| } | ||
| .ui-tabs .ui-tabs-nav li { | ||
| list-style: none; | ||
| float: left; | ||
| position: relative; | ||
| top: 0; | ||
| margin: 1px .2em 0 0; | ||
| border-bottom-width: 0; | ||
| padding: 0; | ||
| white-space: nowrap; | ||
| } | ||
| .ui-tabs .ui-tabs-nav .ui-tabs-anchor { | ||
| float: left; | ||
| padding: .5em 1em; | ||
| text-decoration: none; | ||
| } | ||
| .ui-tabs .ui-tabs-nav li.ui-tabs-active { | ||
| margin-bottom: -1px; | ||
| padding-bottom: 1px; | ||
| } | ||
| .ui-tabs .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor, | ||
| .ui-tabs .ui-tabs-nav li.ui-state-disabled .ui-tabs-anchor, | ||
| .ui-tabs .ui-tabs-nav li.ui-tabs-loading .ui-tabs-anchor { | ||
| cursor: text; | ||
| } | ||
| .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active .ui-tabs-anchor { | ||
| cursor: pointer; | ||
| } | ||
| .ui-tabs .ui-tabs-panel { | ||
| display: block; | ||
| border-width: 0; | ||
| padding: 1em 1.4em; | ||
| background: none; | ||
| } |
| @@ -0,0 +1,21 @@ | ||
| /*! | ||
| * jQuery UI Tooltip 1.11.0-beta.1 | ||
| * http://jqueryui.com | ||
| * | ||
| * Copyright 2014 jQuery Foundation and other contributors | ||
| * Released under the MIT license. | ||
| * http://jquery.org/license | ||
| * | ||
| * http://api.jqueryui.com/tooltip/#theming | ||
| */ | ||
| .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; | ||
| } |