mars 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/LICENSE +20 -0
- data/README.md +77 -0
- data/bin/mars +33 -0
- data/lib/coffee_script.rb +13 -0
- data/lib/mars.rb +52 -0
- data/lib/mars/css.rb +20 -0
- data/lib/mars/helpers.rb +82 -0
- data/lib/mars/images.rb +30 -0
- data/lib/mars/js.rb +20 -0
- data/lib/mars_config.rb +36 -0
- data/lib/mars_mixins.rb +12 -0
- data/lib/public/favicon.ico +0 -0
- data/lib/public/images/bk_gradient.png +0 -0
- data/lib/public/javascripts/coffee-script.js +1 -0
- data/lib/public/javascripts/jquery-1.4.2.min.js +154 -0
- data/lib/public/javascripts/jquery-ui-1.8.custom.min.js +374 -0
- data/lib/public/stylesheets/960.css +387 -0
- data/lib/public/stylesheets/app.css +32 -0
- data/lib/public/stylesheets/reset.css +1 -0
- data/lib/public/stylesheets/sass/grid.sass +75 -0
- data/lib/public/stylesheets/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-bg_glass_75_dadada_1x400.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-icons_222222_256x240.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-icons_2e83ff_256x240.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-icons_454545_256x240.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-icons_888888_256x240.png +0 -0
- data/lib/public/stylesheets/smoothness/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/lib/public/stylesheets/smoothness/jquery-ui-1.8.custom.css +480 -0
- data/lib/public/stylesheets/text.css +1 -0
- data/lib/sencha/icon.png +0 -0
- data/lib/sencha/index.html +17 -0
- data/lib/sencha/javascripts/coffee-script.js +1 -0
- data/lib/sencha/javascripts/ext-touch.js +6 -0
- data/lib/sencha/phone_startup.png +0 -0
- data/lib/sencha/stylesheets/ext-touch.css +1 -0
- data/lib/sencha/tablet_startup.png +0 -0
- data/lib/views/index.haml +40 -0
- data/lib/views/layout.haml +19 -0
- data/spec/lib/mercury/helpers_spec.rb +25 -0
- data/spec/lib/mercury/images_spec.rb +33 -0
- data/spec/lib/mercury_config_spec.rb +25 -0
- data/spec/mercury_spec.rb +32 -0
- data/spec/spec_helper.rb +12 -0
- metadata +163 -0
@@ -0,0 +1,374 @@
|
|
1
|
+
/*!
|
2
|
+
* jQuery UI 1.8
|
3
|
+
*
|
4
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
5
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
6
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
7
|
+
*
|
8
|
+
* http://docs.jquery.com/UI
|
9
|
+
*/
|
10
|
+
* jQuery UI 1.8
|
11
|
+
*
|
12
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
13
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
14
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
15
|
+
*
|
16
|
+
* http://docs.jquery.com/UI
|
17
|
+
*/
|
18
|
+
jQuery.ui||(function(a){a.ui={version:"1.8",plugin:{add:function(c,d,f){var e=a.ui[c].prototype;for(var b in f){e.plugins[b]=e.plugins[b]||[];e.plugins[b].push([d,f[b]])}},call:function(b,d,c){var f=b.plugins[d];if(!f||!b.element[0].parentNode){return}for(var e=0;e<f.length;e++){if(b.options[f[e][0]]){f[e][1].apply(b.element,c)}}}},contains:function(d,c){return document.compareDocumentPosition?d.compareDocumentPosition(c)&16:d!==c&&d.contains(c)},hasScroll:function(e,c){if(a(e).css("overflow")=="hidden"){return false}var b=(c&&c=="left")?"scrollLeft":"scrollTop",d=false;if(e[b]>0){return true}e[b]=1;d=(e[b]>0);e[b]=0;return d},isOverAxis:function(c,b,d){return(c>b)&&(c<(b+d))},isOver:function(g,c,f,e,b,d){return a.ui.isOverAxis(g,f,b)&&a.ui.isOverAxis(c,e,d)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};a.fn.extend({_focus:a.fn.focus,focus:function(b,c){return typeof b==="number"?this.each(function(){var d=this;setTimeout(function(){a(d).focus();(c&&c.call(d))},b)}):this._focus.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var b;if((a.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){b=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(a.curCSS(this,"position",1))&&(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}else{b=this.parents().filter(function(){return(/(auto|scroll)/).test(a.curCSS(this,"overflow",1)+a.curCSS(this,"overflow-y",1)+a.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!b.length?a(document):b},zIndex:function(e){if(e!==undefined){return this.css("zIndex",e)}if(this.length){var c=a(this[0]),b,d;while(c.length&&c[0]!==document){b=c.css("position");if(b=="absolute"||b=="relative"||b=="fixed"){d=parseInt(c.css("zIndex"));if(!isNaN(d)&&d!=0){return d}}c=c.parent()}}return 0}});a.extend(a.expr[":"],{data:function(d,c,b){return !!a.data(d,b[3])},focusable:function(c){var d=c.nodeName.toLowerCase(),b=a.attr(c,"tabindex");return(/input|select|textarea|button|object/.test(d)?!c.disabled:"a"==d||"area"==d?c.href||!isNaN(b):!isNaN(b))&&!a(c)["area"==d?"parents":"closest"](":hidden").length},tabbable:function(c){var b=a.attr(c,"tabindex");return(isNaN(b)||b>=0)&&a(c).is(":focusable")}})})(jQuery);;/*!
|
19
|
+
* jQuery UI Widget 1.8
|
20
|
+
*
|
21
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
22
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
23
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
24
|
+
*
|
25
|
+
* http://docs.jquery.com/UI/Widget
|
26
|
+
*/
|
27
|
+
* jQuery UI Widget 1.8
|
28
|
+
*
|
29
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
30
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
31
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
32
|
+
*
|
33
|
+
* http://docs.jquery.com/UI/Widget
|
34
|
+
*/
|
35
|
+
(function(b){var a=b.fn.remove;b.fn.remove=function(c,d){return this.each(function(){if(!d){if(!c||b.filter(c,[this]).length){b("*",this).add(this).each(function(){b(this).triggerHandler("remove")})}}return a.call(b(this),c,d)})};b.widget=function(d,f,c){var e=d.split(".")[0],h;d=d.split(".")[1];h=e+"-"+d;if(!c){c=f;f=b.Widget}b.expr[":"][h]=function(i){return !!b.data(i,d)};b[e]=b[e]||{};b[e][d]=function(i,j){if(arguments.length){this._createWidget(i,j)}};var g=new f();g.options=b.extend({},g.options);b[e][d].prototype=b.extend(true,g,{namespace:e,widgetName:d,widgetEventPrefix:b[e][d].prototype.widgetEventPrefix||d,widgetBaseClass:h},c);b.widget.bridge(d,b[e][d])};b.widget.bridge=function(d,c){b.fn[d]=function(g){var e=typeof g==="string",f=Array.prototype.slice.call(arguments,1),h=this;g=!e&&f.length?b.extend.apply(null,[true,g].concat(f)):g;if(e&&g.substring(0,1)==="_"){return h}if(e){this.each(function(){var i=b.data(this,d),j=i&&b.isFunction(i[g])?i[g].apply(i,f):i;if(j!==i&&j!==undefined){h=j;return false}})}else{this.each(function(){var i=b.data(this,d);if(i){if(g){i.option(g)}i._init()}else{b.data(this,d,new c(g,this))}})}return h}};b.Widget=function(c,d){if(arguments.length){this._createWidget(c,d)}};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(d,e){this.element=b(e).data(this.widgetName,this);this.options=b.extend(true,{},this.options,b.metadata&&b.metadata.get(e)[this.widgetName],d);var c=this;this.element.bind("remove."+this.widgetName,function(){c.destroy()});this._create();this._init()},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled")},widget:function(){return this.element},option:function(e,f){var d=e,c=this;if(arguments.length===0){return b.extend({},c.options)}if(typeof e==="string"){if(f===undefined){return this.options[e]}d={};d[e]=f}b.each(d,function(g,h){c._setOption(g,h)});return c},_setOption:function(c,d){this.options[c]=d;if(c==="disabled"){this.widget()[d?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",d)}return this},enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(d,e,f){var h=this.options[d];e=b.Event(e);e.type=(d===this.widgetEventPrefix?d:this.widgetEventPrefix+d).toLowerCase();f=f||{};if(e.originalEvent){for(var c=b.event.props.length,g;c;){g=b.event.props[--c];e[g]=e.originalEvent[g]}}this.element.trigger(e,f);return !(b.isFunction(h)&&h.call(this.element[0],e,f)===false||e.isDefaultPrevented())}}})(jQuery);;/*!
|
36
|
+
* jQuery UI Mouse 1.8
|
37
|
+
*
|
38
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
39
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
40
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
41
|
+
*
|
42
|
+
* http://docs.jquery.com/UI/Mouse
|
43
|
+
*
|
44
|
+
* Depends:
|
45
|
+
* jquery.ui.widget.js
|
46
|
+
*/
|
47
|
+
* jQuery UI Mouse 1.8
|
48
|
+
*
|
49
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
50
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
51
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
52
|
+
*
|
53
|
+
* http://docs.jquery.com/UI/Mouse
|
54
|
+
*
|
55
|
+
* Depends:
|
56
|
+
* jquery.ui.widget.js
|
57
|
+
*/
|
58
|
+
(function(a){a.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var b=this;this.element.bind("mousedown."+this.widgetName,function(c){return b._mouseDown(c)}).bind("click."+this.widgetName,function(c){if(b._preventClickEvent){b._preventClickEvent=false;c.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName)},_mouseDown:function(d){d.originalEvent=d.originalEvent||{};if(d.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(d));this._mouseDownEvent=d;var c=this,e=(d.which==1),b=(typeof this.options.cancel=="string"?a(d.target).parents().add(d.target).filter(this.options.cancel).length:false);if(!e||b||!this._mouseCapture(d)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){c.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(d)&&this._mouseDelayMet(d)){this._mouseStarted=(this._mouseStart(d)!==false);if(!this._mouseStarted){d.preventDefault();return true}}this._mouseMoveDelegate=function(f){return c._mouseMove(f)};this._mouseUpDelegate=function(f){return c._mouseUp(f)};a(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(a.browser.safari||d.preventDefault());d.originalEvent.mouseHandled=true;return true},_mouseMove:function(b){if(a.browser.msie&&!b.button){return this._mouseUp(b)}if(this._mouseStarted){this._mouseDrag(b);return b.preventDefault()}if(this._mouseDistanceMet(b)&&this._mouseDelayMet(b)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,b)!==false);(this._mouseStarted?this._mouseDrag(b):this._mouseUp(b))}return !this._mouseStarted},_mouseUp:function(b){a(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(b.target==this._mouseDownEvent.target);this._mouseStop(b)}return false},_mouseDistanceMet:function(b){return(Math.max(Math.abs(this._mouseDownEvent.pageX-b.pageX),Math.abs(this._mouseDownEvent.pageY-b.pageY))>=this.options.distance)},_mouseDelayMet:function(b){return this.mouseDelayMet},_mouseStart:function(b){},_mouseDrag:function(b){},_mouseStop:function(b){},_mouseCapture:function(b){return true}})})(jQuery);;/*
|
59
|
+
* jQuery UI Position 1.8
|
60
|
+
*
|
61
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
62
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
63
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
64
|
+
*
|
65
|
+
* http://docs.jquery.com/UI/Position
|
66
|
+
*/
|
67
|
+
* jQuery UI Draggable 1.8
|
68
|
+
*
|
69
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
70
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
71
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
72
|
+
*
|
73
|
+
* http://docs.jquery.com/UI/Draggables
|
74
|
+
*
|
75
|
+
* Depends:
|
76
|
+
* jquery.ui.core.js
|
77
|
+
* jquery.ui.mouse.js
|
78
|
+
* jquery.ui.widget.js
|
79
|
+
*/
|
80
|
+
* jQuery UI Droppable 1.8
|
81
|
+
*
|
82
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
83
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
84
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
85
|
+
*
|
86
|
+
* http://docs.jquery.com/UI/Droppables
|
87
|
+
*
|
88
|
+
* Depends:
|
89
|
+
* jquery.ui.core.js
|
90
|
+
* jquery.ui.widget.js
|
91
|
+
* jquery.ui.mouse.js
|
92
|
+
* jquery.ui.draggable.js
|
93
|
+
*/
|
94
|
+
* jQuery UI Resizable 1.8
|
95
|
+
*
|
96
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
97
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
98
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
99
|
+
*
|
100
|
+
* http://docs.jquery.com/UI/Resizables
|
101
|
+
*
|
102
|
+
* Depends:
|
103
|
+
* jquery.ui.core.js
|
104
|
+
* jquery.ui.mouse.js
|
105
|
+
* jquery.ui.widget.js
|
106
|
+
*/
|
107
|
+
* jQuery UI Selectable 1.8
|
108
|
+
*
|
109
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
110
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
111
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
112
|
+
*
|
113
|
+
* http://docs.jquery.com/UI/Selectables
|
114
|
+
*
|
115
|
+
* Depends:
|
116
|
+
* jquery.ui.core.js
|
117
|
+
* jquery.ui.mouse.js
|
118
|
+
* jquery.ui.widget.js
|
119
|
+
*/
|
120
|
+
* jQuery UI Sortable 1.8
|
121
|
+
*
|
122
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
123
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
124
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
125
|
+
*
|
126
|
+
* http://docs.jquery.com/UI/Sortables
|
127
|
+
*
|
128
|
+
* Depends:
|
129
|
+
* jquery.ui.core.js
|
130
|
+
* jquery.ui.mouse.js
|
131
|
+
* jquery.ui.widget.js
|
132
|
+
*/
|
133
|
+
* jQuery UI Accordion 1.8
|
134
|
+
*
|
135
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
136
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
137
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
138
|
+
*
|
139
|
+
* http://docs.jquery.com/UI/Accordion
|
140
|
+
*
|
141
|
+
* Depends:
|
142
|
+
* jquery.ui.core.js
|
143
|
+
* jquery.ui.widget.js
|
144
|
+
*/
|
145
|
+
* jQuery UI Autocomplete 1.8
|
146
|
+
*
|
147
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
148
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
149
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
150
|
+
*
|
151
|
+
* http://docs.jquery.com/UI/Autocomplete
|
152
|
+
*
|
153
|
+
* Depends:
|
154
|
+
* jquery.ui.core.js
|
155
|
+
* jquery.ui.widget.js
|
156
|
+
* jquery.ui.position.js
|
157
|
+
*/
|
158
|
+
* jQuery UI Button 1.8
|
159
|
+
*
|
160
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
161
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
162
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
163
|
+
*
|
164
|
+
* http://docs.jquery.com/UI/Button
|
165
|
+
*
|
166
|
+
* Depends:
|
167
|
+
* jquery.ui.core.js
|
168
|
+
* jquery.ui.widget.js
|
169
|
+
*/
|
170
|
+
* jQuery UI Dialog 1.8
|
171
|
+
*
|
172
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
173
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
174
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
175
|
+
*
|
176
|
+
* http://docs.jquery.com/UI/Dialog
|
177
|
+
*
|
178
|
+
* Depends:
|
179
|
+
* jquery.ui.core.js
|
180
|
+
* jquery.ui.widget.js
|
181
|
+
* jquery.ui.button.js
|
182
|
+
* jquery.ui.draggable.js
|
183
|
+
* jquery.ui.mouse.js
|
184
|
+
* jquery.ui.position.js
|
185
|
+
* jquery.ui.resizable.js
|
186
|
+
*/
|
187
|
+
* jQuery UI Slider 1.8
|
188
|
+
*
|
189
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
190
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
191
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
192
|
+
*
|
193
|
+
* http://docs.jquery.com/UI/Slider
|
194
|
+
*
|
195
|
+
* Depends:
|
196
|
+
* jquery.ui.core.js
|
197
|
+
* jquery.ui.mouse.js
|
198
|
+
* jquery.ui.widget.js
|
199
|
+
*/
|
200
|
+
* jQuery UI Tabs 1.8
|
201
|
+
*
|
202
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
203
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
204
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
205
|
+
*
|
206
|
+
* http://docs.jquery.com/UI/Tabs
|
207
|
+
*
|
208
|
+
* Depends:
|
209
|
+
* jquery.ui.core.js
|
210
|
+
* jquery.ui.widget.js
|
211
|
+
*/
|
212
|
+
* jQuery UI Datepicker 1.8
|
213
|
+
*
|
214
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
215
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
216
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
217
|
+
*
|
218
|
+
* http://docs.jquery.com/UI/Datepicker
|
219
|
+
*
|
220
|
+
* Depends:
|
221
|
+
* jquery.ui.core.js
|
222
|
+
*/
|
223
|
+
* jQuery UI Progressbar 1.8
|
224
|
+
*
|
225
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
226
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
227
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
228
|
+
*
|
229
|
+
* http://docs.jquery.com/UI/Progressbar
|
230
|
+
*
|
231
|
+
* Depends:
|
232
|
+
* jquery.ui.core.js
|
233
|
+
* jquery.ui.widget.js
|
234
|
+
*/
|
235
|
+
* jQuery UI Effects 1.8
|
236
|
+
*
|
237
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
238
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
239
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
240
|
+
*
|
241
|
+
* http://docs.jquery.com/UI/Effects/
|
242
|
+
*/
|
243
|
+
* jQuery UI Effects Blind 1.8
|
244
|
+
*
|
245
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
246
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
247
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
248
|
+
*
|
249
|
+
* http://docs.jquery.com/UI/Effects/Blind
|
250
|
+
*
|
251
|
+
* Depends:
|
252
|
+
* jquery.effects.core.js
|
253
|
+
*/
|
254
|
+
* jQuery UI Effects Bounce 1.8
|
255
|
+
*
|
256
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
257
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
258
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
259
|
+
*
|
260
|
+
* http://docs.jquery.com/UI/Effects/Bounce
|
261
|
+
*
|
262
|
+
* Depends:
|
263
|
+
* jquery.effects.core.js
|
264
|
+
*/
|
265
|
+
* jQuery UI Effects Clip 1.8
|
266
|
+
*
|
267
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
268
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
269
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
270
|
+
*
|
271
|
+
* http://docs.jquery.com/UI/Effects/Clip
|
272
|
+
*
|
273
|
+
* Depends:
|
274
|
+
* jquery.effects.core.js
|
275
|
+
*/
|
276
|
+
* jQuery UI Effects Drop 1.8
|
277
|
+
*
|
278
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
279
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
280
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
281
|
+
*
|
282
|
+
* http://docs.jquery.com/UI/Effects/Drop
|
283
|
+
*
|
284
|
+
* Depends:
|
285
|
+
* jquery.effects.core.js
|
286
|
+
*/
|
287
|
+
* jQuery UI Effects Explode 1.8
|
288
|
+
*
|
289
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
290
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
291
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
292
|
+
*
|
293
|
+
* http://docs.jquery.com/UI/Effects/Explode
|
294
|
+
*
|
295
|
+
* Depends:
|
296
|
+
* jquery.effects.core.js
|
297
|
+
*/
|
298
|
+
* jQuery UI Effects Fold 1.8
|
299
|
+
*
|
300
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
301
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
302
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
303
|
+
*
|
304
|
+
* http://docs.jquery.com/UI/Effects/Fold
|
305
|
+
*
|
306
|
+
* Depends:
|
307
|
+
* jquery.effects.core.js
|
308
|
+
*/
|
309
|
+
* jQuery UI Effects Highlight 1.8
|
310
|
+
*
|
311
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
312
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
313
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
314
|
+
*
|
315
|
+
* http://docs.jquery.com/UI/Effects/Highlight
|
316
|
+
*
|
317
|
+
* Depends:
|
318
|
+
* jquery.effects.core.js
|
319
|
+
*/
|
320
|
+
* jQuery UI Effects Pulsate 1.8
|
321
|
+
*
|
322
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
323
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
324
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
325
|
+
*
|
326
|
+
* http://docs.jquery.com/UI/Effects/Pulsate
|
327
|
+
*
|
328
|
+
* Depends:
|
329
|
+
* jquery.effects.core.js
|
330
|
+
*/
|
331
|
+
* jQuery UI Effects Scale 1.8
|
332
|
+
*
|
333
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
334
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
335
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
336
|
+
*
|
337
|
+
* http://docs.jquery.com/UI/Effects/Scale
|
338
|
+
*
|
339
|
+
* Depends:
|
340
|
+
* jquery.effects.core.js
|
341
|
+
*/
|
342
|
+
* jQuery UI Effects Shake 1.8
|
343
|
+
*
|
344
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
345
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
346
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
347
|
+
*
|
348
|
+
* http://docs.jquery.com/UI/Effects/Shake
|
349
|
+
*
|
350
|
+
* Depends:
|
351
|
+
* jquery.effects.core.js
|
352
|
+
*/
|
353
|
+
* jQuery UI Effects Slide 1.8
|
354
|
+
*
|
355
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
356
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
357
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
358
|
+
*
|
359
|
+
* http://docs.jquery.com/UI/Effects/Slide
|
360
|
+
*
|
361
|
+
* Depends:
|
362
|
+
* jquery.effects.core.js
|
363
|
+
*/
|
364
|
+
* jQuery UI Effects Transfer 1.8
|
365
|
+
*
|
366
|
+
* Copyright (c) 2010 AUTHORS.txt (http://jqueryui.com/about)
|
367
|
+
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
368
|
+
* and GPL (GPL-LICENSE.txt) licenses.
|
369
|
+
*
|
370
|
+
* http://docs.jquery.com/UI/Effects/Transfer
|
371
|
+
*
|
372
|
+
* Depends:
|
373
|
+
* jquery.effects.core.js
|
374
|
+
*/
|
@@ -0,0 +1,387 @@
|
|
1
|
+
.container_12,.container_16 {
|
2
|
+
margin-left: auto;
|
3
|
+
margin-right: auto;
|
4
|
+
width: 960px
|
5
|
+
}
|
6
|
+
.grid_1,.grid_2,.grid_3,.grid_4,.grid_5,.grid_6,.grid_7,.grid_8,.grid_9,.grid_10,.grid_11,.grid_12,.grid_13,.grid_14,.grid_15,.grid_16 {
|
7
|
+
display: inline;
|
8
|
+
float: left;
|
9
|
+
position: relative;
|
10
|
+
margin-left: 10px;
|
11
|
+
margin-right: 10px
|
12
|
+
}
|
13
|
+
.container_12 .grid_3,.container_16 .grid_4 {
|
14
|
+
width: 220px
|
15
|
+
}
|
16
|
+
.container_12 .grid_6,.container_16 .grid_8 {
|
17
|
+
width: 460px
|
18
|
+
}
|
19
|
+
.container_12 .grid_9,.container_16 .grid_12 {
|
20
|
+
width: 700px
|
21
|
+
}
|
22
|
+
.container_12 .grid_12,.container_16 .grid_16 {
|
23
|
+
width: 940px
|
24
|
+
}
|
25
|
+
.alpha {
|
26
|
+
margin-left: 0
|
27
|
+
}
|
28
|
+
.omega {
|
29
|
+
margin-right: 0
|
30
|
+
}
|
31
|
+
.container_12 .grid_1 {
|
32
|
+
width: 60px
|
33
|
+
}
|
34
|
+
.container_12 .grid_2 {
|
35
|
+
width: 140px
|
36
|
+
}
|
37
|
+
.container_12 .grid_4 {
|
38
|
+
width: 300px
|
39
|
+
}
|
40
|
+
.container_12 .grid_5 {
|
41
|
+
width: 380px
|
42
|
+
}
|
43
|
+
.container_12 .grid_7 {
|
44
|
+
width: 540px
|
45
|
+
}
|
46
|
+
.container_12 .grid_8 {
|
47
|
+
width: 620px
|
48
|
+
}
|
49
|
+
.container_12 .grid_10 {
|
50
|
+
width: 780px
|
51
|
+
}
|
52
|
+
.container_12 .grid_11 {
|
53
|
+
width: 860px
|
54
|
+
}
|
55
|
+
.container_16 .grid_1 {
|
56
|
+
width: 40px
|
57
|
+
}
|
58
|
+
.container_16 .grid_2 {
|
59
|
+
width: 100px
|
60
|
+
}
|
61
|
+
.container_16 .grid_3 {
|
62
|
+
width: 160px
|
63
|
+
}
|
64
|
+
.container_16 .grid_5 {
|
65
|
+
width: 280px
|
66
|
+
}
|
67
|
+
.container_16 .grid_6 {
|
68
|
+
width: 340px
|
69
|
+
}
|
70
|
+
.container_16 .grid_7 {
|
71
|
+
width: 400px
|
72
|
+
}
|
73
|
+
.container_16 .grid_9 {
|
74
|
+
width: 520px
|
75
|
+
}
|
76
|
+
.container_16 .grid_10 {
|
77
|
+
width: 580px
|
78
|
+
}
|
79
|
+
.container_16 .grid_11 {
|
80
|
+
width: 640px
|
81
|
+
}
|
82
|
+
.container_16 .grid_13 {
|
83
|
+
width: 760px
|
84
|
+
}
|
85
|
+
.container_16 .grid_14 {
|
86
|
+
width: 820px
|
87
|
+
}
|
88
|
+
.container_16 .grid_15 {
|
89
|
+
width: 880px
|
90
|
+
}
|
91
|
+
.container_12 .prefix_3,.container_16 .prefix_4 {
|
92
|
+
padding-left: 240px
|
93
|
+
}
|
94
|
+
.container_12 .prefix_6,.container_16 .prefix_8 {
|
95
|
+
padding-left: 480px
|
96
|
+
}
|
97
|
+
.container_12 .prefix_9,.container_16 .prefix_12 {
|
98
|
+
padding-left: 720px
|
99
|
+
}
|
100
|
+
.container_12 .prefix_1 {
|
101
|
+
padding-left: 80px
|
102
|
+
}
|
103
|
+
.container_12 .prefix_2 {
|
104
|
+
padding-left: 160px
|
105
|
+
}
|
106
|
+
.container_12 .prefix_4 {
|
107
|
+
padding-left: 320px
|
108
|
+
}
|
109
|
+
.container_12 .prefix_5 {
|
110
|
+
padding-left: 400px
|
111
|
+
}
|
112
|
+
.container_12 .prefix_7 {
|
113
|
+
padding-left: 560px
|
114
|
+
}
|
115
|
+
.container_12 .prefix_8 {
|
116
|
+
padding-left: 640px
|
117
|
+
}
|
118
|
+
.container_12 .prefix_10 {
|
119
|
+
padding-left: 800px
|
120
|
+
}
|
121
|
+
.container_12 .prefix_11 {
|
122
|
+
padding-left: 880px
|
123
|
+
}
|
124
|
+
.container_16 .prefix_1 {
|
125
|
+
padding-left: 60px
|
126
|
+
}
|
127
|
+
.container_16 .prefix_2 {
|
128
|
+
padding-left: 120px
|
129
|
+
}
|
130
|
+
.container_16 .prefix_3 {
|
131
|
+
padding-left: 180px
|
132
|
+
}
|
133
|
+
.container_16 .prefix_5 {
|
134
|
+
padding-left: 300px
|
135
|
+
}
|
136
|
+
.container_16 .prefix_6 {
|
137
|
+
padding-left: 360px
|
138
|
+
}
|
139
|
+
.container_16 .prefix_7 {
|
140
|
+
padding-left: 420px
|
141
|
+
}
|
142
|
+
.container_16 .prefix_9 {
|
143
|
+
padding-left: 540px
|
144
|
+
}
|
145
|
+
.container_16 .prefix_10 {
|
146
|
+
padding-left: 600px
|
147
|
+
}
|
148
|
+
.container_16 .prefix_11 {
|
149
|
+
padding-left: 660px
|
150
|
+
}
|
151
|
+
.container_16 .prefix_13 {
|
152
|
+
padding-left: 780px
|
153
|
+
}
|
154
|
+
.container_16 .prefix_14 {
|
155
|
+
padding-left: 840px
|
156
|
+
}
|
157
|
+
.container_16 .prefix_15 {
|
158
|
+
padding-left: 900px
|
159
|
+
}
|
160
|
+
.container_12 .suffix_3,.container_16 .suffix_4 {
|
161
|
+
padding-right: 240px
|
162
|
+
}
|
163
|
+
.container_12 .suffix_6,.container_16 .suffix_8 {
|
164
|
+
padding-right: 480px
|
165
|
+
}
|
166
|
+
.container_12 .suffix_9,.container_16 .suffix_12 {
|
167
|
+
padding-right: 720px
|
168
|
+
}
|
169
|
+
.container_12 .suffix_1 {
|
170
|
+
padding-right: 80px
|
171
|
+
}
|
172
|
+
.container_12 .suffix_2 {
|
173
|
+
padding-right: 160px
|
174
|
+
}
|
175
|
+
.container_12 .suffix_4 {
|
176
|
+
padding-right: 320px
|
177
|
+
}
|
178
|
+
.container_12 .suffix_5 {
|
179
|
+
padding-right: 400px
|
180
|
+
}
|
181
|
+
.container_12 .suffix_7 {
|
182
|
+
padding-right: 560px
|
183
|
+
}
|
184
|
+
.container_12 .suffix_8 {
|
185
|
+
padding-right: 640px
|
186
|
+
}
|
187
|
+
.container_12 .suffix_10 {
|
188
|
+
padding-right: 800px
|
189
|
+
}
|
190
|
+
.container_12 .suffix_11 {
|
191
|
+
padding-right: 880px
|
192
|
+
}
|
193
|
+
.container_16 .suffix_1 {
|
194
|
+
padding-right: 60px
|
195
|
+
}
|
196
|
+
.container_16 .suffix_2 {
|
197
|
+
padding-right: 120px
|
198
|
+
}
|
199
|
+
.container_16 .suffix_3 {
|
200
|
+
padding-right: 180px
|
201
|
+
}
|
202
|
+
.container_16 .suffix_5 {
|
203
|
+
padding-right: 300px
|
204
|
+
}
|
205
|
+
.container_16 .suffix_6 {
|
206
|
+
padding-right: 360px
|
207
|
+
}
|
208
|
+
.container_16 .suffix_7 {
|
209
|
+
padding-right: 420px
|
210
|
+
}
|
211
|
+
.container_16 .suffix_9 {
|
212
|
+
padding-right: 540px
|
213
|
+
}
|
214
|
+
.container_16 .suffix_10 {
|
215
|
+
padding-right: 600px
|
216
|
+
}
|
217
|
+
.container_16 .suffix_11 {
|
218
|
+
padding-right: 660px
|
219
|
+
}
|
220
|
+
.container_16 .suffix_13 {
|
221
|
+
padding-right: 780px
|
222
|
+
}
|
223
|
+
.container_16 .suffix_14 {
|
224
|
+
padding-right: 840px
|
225
|
+
}
|
226
|
+
.container_16 .suffix_15 {
|
227
|
+
padding-right: 900px
|
228
|
+
}
|
229
|
+
.container_12 .push_3,.container_16 .push_4 {
|
230
|
+
left: 240px
|
231
|
+
}
|
232
|
+
.container_12 .push_6,.container_16 .push_8 {
|
233
|
+
left: 480px
|
234
|
+
}
|
235
|
+
.container_12 .push_9,.container_16 .push_12 {
|
236
|
+
left: 720px
|
237
|
+
}
|
238
|
+
.container_12 .push_1 {
|
239
|
+
left: 80px
|
240
|
+
}
|
241
|
+
.container_12 .push_2 {
|
242
|
+
left: 160px
|
243
|
+
}
|
244
|
+
.container_12 .push_4 {
|
245
|
+
left: 320px
|
246
|
+
}
|
247
|
+
.container_12 .push_5 {
|
248
|
+
left: 400px
|
249
|
+
}
|
250
|
+
.container_12 .push_7 {
|
251
|
+
left: 560px
|
252
|
+
}
|
253
|
+
.container_12 .push_8 {
|
254
|
+
left: 640px
|
255
|
+
}
|
256
|
+
.container_12 .push_10 {
|
257
|
+
left: 800px
|
258
|
+
}
|
259
|
+
.container_12 .push_11 {
|
260
|
+
left: 880px
|
261
|
+
}
|
262
|
+
.container_16 .push_1 {
|
263
|
+
left: 60px
|
264
|
+
}
|
265
|
+
.container_16 .push_2 {
|
266
|
+
left: 120px
|
267
|
+
}
|
268
|
+
.container_16 .push_3 {
|
269
|
+
left: 180px
|
270
|
+
}
|
271
|
+
.container_16 .push_5 {
|
272
|
+
left: 300px
|
273
|
+
}
|
274
|
+
.container_16 .push_6 {
|
275
|
+
left: 360px
|
276
|
+
}
|
277
|
+
.container_16 .push_7 {
|
278
|
+
left: 420px
|
279
|
+
}
|
280
|
+
.container_16 .push_9 {
|
281
|
+
left: 540px
|
282
|
+
}
|
283
|
+
.container_16 .push_10 {
|
284
|
+
left: 600px
|
285
|
+
}
|
286
|
+
.container_16 .push_11 {
|
287
|
+
left: 660px
|
288
|
+
}
|
289
|
+
.container_16 .push_13 {
|
290
|
+
left: 780px
|
291
|
+
}
|
292
|
+
.container_16 .push_14 {
|
293
|
+
left: 840px
|
294
|
+
}
|
295
|
+
.container_16 .push_15 {
|
296
|
+
left: 900px
|
297
|
+
}
|
298
|
+
.container_12 .pull_3,.container_16 .pull_4 {
|
299
|
+
left: -240px
|
300
|
+
}
|
301
|
+
.container_12 .pull_6,.container_16 .pull_8 {
|
302
|
+
left: -480px
|
303
|
+
}
|
304
|
+
.container_12 .pull_9,.container_16 .pull_12 {
|
305
|
+
left: -720px
|
306
|
+
}
|
307
|
+
.container_12 .pull_1 {
|
308
|
+
left: -80px
|
309
|
+
}
|
310
|
+
.container_12 .pull_2 {
|
311
|
+
left: -160px
|
312
|
+
}
|
313
|
+
.container_12 .pull_4 {
|
314
|
+
left: -320px
|
315
|
+
}
|
316
|
+
.container_12 .pull_5 {
|
317
|
+
left: -400px
|
318
|
+
}
|
319
|
+
.container_12 .pull_7 {
|
320
|
+
left: -560px
|
321
|
+
}
|
322
|
+
.container_12 .pull_8 {
|
323
|
+
left: -640px
|
324
|
+
}
|
325
|
+
.container_12 .pull_10 {
|
326
|
+
left: -800px
|
327
|
+
}
|
328
|
+
.container_12 .pull_11 {
|
329
|
+
left: -880px
|
330
|
+
}
|
331
|
+
.container_16 .pull_1 {
|
332
|
+
left: -60px
|
333
|
+
}
|
334
|
+
.container_16 .pull_2 {
|
335
|
+
left: -120px
|
336
|
+
}
|
337
|
+
.container_16 .pull_3 {
|
338
|
+
left: -180px
|
339
|
+
}
|
340
|
+
.container_16 .pull_5 {
|
341
|
+
left: -300px
|
342
|
+
}
|
343
|
+
.container_16 .pull_6 {
|
344
|
+
left: -360px
|
345
|
+
}
|
346
|
+
.container_16 .pull_7 {
|
347
|
+
left: -420px
|
348
|
+
}
|
349
|
+
.container_16 .pull_9 {
|
350
|
+
left: -540px
|
351
|
+
}
|
352
|
+
.container_16 .pull_10 {
|
353
|
+
left: -600px
|
354
|
+
}
|
355
|
+
.container_16 .pull_11 {
|
356
|
+
left: -660px
|
357
|
+
}
|
358
|
+
.container_16 .pull_13 {
|
359
|
+
left: -780px
|
360
|
+
}
|
361
|
+
.container_16 .pull_14 {
|
362
|
+
left: -840px
|
363
|
+
}
|
364
|
+
.container_16 .pull_15 {
|
365
|
+
left: -900px
|
366
|
+
}
|
367
|
+
.clear {
|
368
|
+
clear: both;
|
369
|
+
display: block;
|
370
|
+
overflow: hidden;
|
371
|
+
visibility: hidden;
|
372
|
+
width: 0;
|
373
|
+
height: 0
|
374
|
+
}
|
375
|
+
.clearfix:after {
|
376
|
+
clear: both;
|
377
|
+
content: ' ';
|
378
|
+
display: block;
|
379
|
+
font-size: 0;
|
380
|
+
line-height: 0;
|
381
|
+
visibility: hidden;
|
382
|
+
width: 0;
|
383
|
+
height: 0
|
384
|
+
}
|
385
|
+
* html .clearfix {
|
386
|
+
height: 1%
|
387
|
+
}
|