muck-engine 0.4.31 → 0.4.32

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.
Files changed (26) hide show
  1. data/VERSION +1 -1
  2. data/app/helpers/muck_engine_helper.rb +1 -1
  3. data/app/views/layouts/global/_head.html.erb +9 -4
  4. data/muck-engine.gemspec +20 -7
  5. data/public/javascripts/jquery/jquery-ui-1.8.4.custom.min.js +763 -0
  6. data/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  7. data/public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  8. data/public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
  9. data/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  10. data/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  11. data/public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  12. data/public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  13. data/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  14. data/public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  15. data/public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png +0 -0
  16. data/public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -0
  17. data/public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -0
  18. data/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -0
  19. data/public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -0
  20. data/public/stylesheets/jquery/ui-lightness/jquery-ui-1.8.4.custom.css +572 -0
  21. data/test/rails_test/db/schema.rb +123 -0
  22. metadata +22 -8
  23. data/public/stylesheets/jquery/cupertino/jquery-ui-1.7.2.custom.css +0 -160
  24. data/public/stylesheets/jquery/redmond/jquery-ui-1.7.2.custom.css +0 -160
  25. data/public/stylesheets/jquery/smoothness/jquery-ui-1.7.2.custom.css +0 -160
  26. data/public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.2.custom.css +0 -160
@@ -0,0 +1,123 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended to check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(:version => 20100123233654) do
14
+
15
+ create_table "access_code_requests", :force => true do |t|
16
+ t.string "email"
17
+ t.datetime "code_sent_at"
18
+ t.datetime "created_at"
19
+ t.datetime "updated_at"
20
+ end
21
+
22
+ add_index "access_code_requests", ["email"], :name => "index_access_code_requests_on_email"
23
+
24
+ create_table "access_codes", :force => true do |t|
25
+ t.string "code"
26
+ t.integer "uses", :default => 0, :null => false
27
+ t.boolean "unlimited", :default => false, :null => false
28
+ t.datetime "expires_at"
29
+ t.integer "use_limit", :default => 1, :null => false
30
+ t.datetime "created_at"
31
+ t.datetime "updated_at"
32
+ end
33
+
34
+ add_index "access_codes", ["code"], :name => "index_access_codes_on_code"
35
+
36
+ create_table "countries", :force => true do |t|
37
+ t.string "name", :limit => 128, :default => "", :null => false
38
+ t.string "abbreviation", :limit => 3, :default => "", :null => false
39
+ t.integer "sort", :default => 1000, :null => false
40
+ end
41
+
42
+ add_index "countries", ["abbreviation"], :name => "index_countries_on_abbreviation"
43
+ add_index "countries", ["name"], :name => "index_countries_on_name"
44
+
45
+ create_table "domain_themes", :force => true do |t|
46
+ t.string "uri"
47
+ t.string "name"
48
+ end
49
+
50
+ add_index "domain_themes", ["uri"], :name => "index_domain_themes_on_uri"
51
+
52
+ create_table "languages", :force => true do |t|
53
+ t.string "name"
54
+ t.string "english_name"
55
+ t.string "locale"
56
+ t.boolean "supported", :default => true
57
+ t.boolean "is_default", :default => false
58
+ end
59
+
60
+ add_index "languages", ["locale"], :name => "index_languages_on_locale"
61
+ add_index "languages", ["name"], :name => "index_languages_on_name"
62
+
63
+ create_table "permissions", :force => true do |t|
64
+ t.integer "role_id", :null => false
65
+ t.integer "user_id", :null => false
66
+ t.datetime "created_at"
67
+ t.datetime "updated_at"
68
+ end
69
+
70
+ create_table "roles", :force => true do |t|
71
+ t.string "rolename"
72
+ t.datetime "created_at"
73
+ t.datetime "updated_at"
74
+ end
75
+
76
+ create_table "states", :force => true do |t|
77
+ t.string "name", :limit => 128, :default => "", :null => false
78
+ t.string "abbreviation", :limit => 3, :default => "", :null => false
79
+ t.integer "country_id", :limit => 8, :null => false
80
+ end
81
+
82
+ add_index "states", ["abbreviation"], :name => "index_states_on_abbreviation"
83
+ add_index "states", ["country_id"], :name => "index_states_on_country_id"
84
+ add_index "states", ["name"], :name => "index_states_on_name"
85
+
86
+ create_table "themes", :force => true do |t|
87
+ t.string "name"
88
+ end
89
+
90
+ create_table "users", :force => true do |t|
91
+ t.string "login"
92
+ t.string "email"
93
+ t.string "first_name"
94
+ t.string "last_name"
95
+ t.string "crypted_password"
96
+ t.string "password_salt"
97
+ t.string "persistence_token", :null => false
98
+ t.string "single_access_token", :null => false
99
+ t.string "perishable_token", :null => false
100
+ t.integer "login_count", :default => 0, :null => false
101
+ t.integer "failed_login_count", :default => 0, :null => false
102
+ t.datetime "last_request_at"
103
+ t.datetime "current_login_at"
104
+ t.datetime "last_login_at"
105
+ t.string "current_login_ip"
106
+ t.string "last_login_ip"
107
+ t.boolean "terms_of_service", :default => false, :null => false
108
+ t.string "time_zone", :default => "UTC"
109
+ t.datetime "disabled_at"
110
+ t.datetime "created_at"
111
+ t.datetime "activated_at"
112
+ t.datetime "updated_at"
113
+ t.string "identity_url"
114
+ t.string "url_key"
115
+ t.integer "access_code_id"
116
+ end
117
+
118
+ add_index "users", ["email"], :name => "index_users_on_email"
119
+ add_index "users", ["last_request_at"], :name => "index_users_on_last_request_at"
120
+ add_index "users", ["login"], :name => "index_users_on_login"
121
+ add_index "users", ["persistence_token"], :name => "index_users_on_persistence_token"
122
+
123
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: muck-engine
3
3
  version: !ruby/object:Gem::Version
4
- hash: 49
4
+ hash: 79
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 4
9
- - 31
10
- version: 0.4.31
9
+ - 32
10
+ version: 0.4.32
11
11
  platform: ruby
12
12
  authors:
13
13
  - Justin Ball
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-08-18 00:00:00 -06:00
19
+ date: 2010-10-12 00:00:00 -06:00
20
20
  default_executable:
21
21
  dependencies:
22
22
  - !ruby/object:Gem::Dependency
@@ -625,6 +625,7 @@ files:
625
625
  - public/javascripts/fancyzoom.min.js
626
626
  - public/javascripts/jquery/colorpicker.js
627
627
  - public/javascripts/jquery/fg.menu.js
628
+ - public/javascripts/jquery/jquery-ui-1.8.4.custom.min.js
628
629
  - public/javascripts/jquery/jquery-ui.js
629
630
  - public/javascripts/jquery/jquery.easing.js
630
631
  - public/javascripts/jquery/jquery.fancybox.js
@@ -694,11 +695,22 @@ files:
694
695
  - public/stylesheets/flick/images/ui-icons_ff0084_256x240.png
695
696
  - public/stylesheets/flick/images/ui-icons_ffffff_256x240.png
696
697
  - public/stylesheets/flick/jquery-ui-1.8.1.custom.css
697
- - public/stylesheets/jquery/cupertino/jquery-ui-1.7.2.custom.css
698
698
  - public/stylesheets/jquery/jquery.fancybox.css
699
- - public/stylesheets/jquery/redmond/jquery-ui-1.7.2.custom.css
700
- - public/stylesheets/jquery/smoothness/jquery-ui-1.7.2.custom.css
701
- - public/stylesheets/jquery/ui-lightness/jquery-ui-1.7.2.custom.css
699
+ - public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
700
+ - public/stylesheets/jquery/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
701
+ - public/stylesheets/jquery/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
702
+ - public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
703
+ - public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
704
+ - public/stylesheets/jquery/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
705
+ - public/stylesheets/jquery/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
706
+ - public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
707
+ - public/stylesheets/jquery/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
708
+ - public/stylesheets/jquery/ui-lightness/images/ui-icons_222222_256x240.png
709
+ - public/stylesheets/jquery/ui-lightness/images/ui-icons_228ef1_256x240.png
710
+ - public/stylesheets/jquery/ui-lightness/images/ui-icons_ef8c08_256x240.png
711
+ - public/stylesheets/jquery/ui-lightness/images/ui-icons_ffd27a_256x240.png
712
+ - public/stylesheets/jquery/ui-lightness/images/ui-icons_ffffff_256x240.png
713
+ - public/stylesheets/jquery/ui-lightness/jquery-ui-1.8.4.custom.css
702
714
  - public/stylesheets/reset.css
703
715
  - public/stylesheets/styles.css
704
716
  - rails/init.rb
@@ -1389,6 +1401,7 @@ files:
1389
1401
  - test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb
1390
1402
  - test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb
1391
1403
  - uninstall.rb
1404
+ - test/rails_test/db/schema.rb
1392
1405
  has_rdoc: true
1393
1406
  homepage: http://github.com/tatemae/muck_engine
1394
1407
  licenses: []
@@ -1461,3 +1474,4 @@ test_files:
1461
1474
  - test/rails_root/test/unit/state_test.rb
1462
1475
  - test/rails_root/vendor/plugins/ssl_requirement/lib/ssl_requirement.rb
1463
1476
  - test/rails_root/vendor/plugins/ssl_requirement/test/ssl_requirement_test.rb
1477
+ - test/rails_test/db/schema.rb
@@ -1,160 +0,0 @@
1
- /*
2
- * jQuery UI CSS Framework
3
- * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
4
- * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
5
- */
6
-
7
- /* Layout helpers
8
- ----------------------------------*/
9
- .ui-helper-hidden { display: none; }
10
- .ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
11
- .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
12
- .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
13
- .ui-helper-clearfix { display: inline-block; }
14
- /* required comment for clearfix to work in Opera \*/
15
- * html .ui-helper-clearfix { height:1%; }
16
- .ui-helper-clearfix { display:block; }
17
- /* end clearfix */
18
- .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
19
-
20
-
21
- /* Interaction Cues
22
- ----------------------------------*/
23
- .ui-state-disabled { cursor: default !important; }
24
-
25
-
26
- /* Icons
27
- ----------------------------------*/
28
-
29
- /* states and images */
30
- .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
31
-
32
-
33
- /* Misc visuals
34
- ----------------------------------*/
35
-
36
- /* Overlays */
37
- .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }/* Accordion
38
- ----------------------------------*/
39
- .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
40
- .ui-accordion .ui-accordion-li-fix { display: inline; }
41
- .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
42
- .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; }
43
- .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
44
- .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; }
45
- .ui-accordion .ui-accordion-content-active { display: block; }/* Datepicker
46
- ----------------------------------*/
47
- .ui-datepicker { width: 17em; padding: .2em .2em 0; }
48
- .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
49
- .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
50
- .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
51
- .ui-datepicker .ui-datepicker-prev { left:2px; }
52
- .ui-datepicker .ui-datepicker-next { right:2px; }
53
- .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
54
- .ui-datepicker .ui-datepicker-next-hover { right:1px; }
55
- .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; }
56
- .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
57
- .ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; }
58
- .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
59
- .ui-datepicker select.ui-datepicker-month,
60
- .ui-datepicker select.ui-datepicker-year { width: 49%;}
61
- .ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; }
62
- .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
63
- .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
64
- .ui-datepicker td { border: 0; padding: 1px; }
65
- .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
66
- .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; }
67
- .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
68
- .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
69
-
70
- /* with multiple calendars */
71
- .ui-datepicker.ui-datepicker-multi { width:auto; }
72
- .ui-datepicker-multi .ui-datepicker-group { float:left; }
73
- .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
74
- .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
75
- .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
76
- .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
77
- .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
78
- .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
79
- .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
80
- .ui-datepicker-row-break { clear:both; width:100%; }
81
-
82
- /* RTL support */
83
- .ui-datepicker-rtl { direction: rtl; }
84
- .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
85
- .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
86
- .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
87
- .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
88
- .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
89
- .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
90
- .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
91
- .ui-datepicker-rtl .ui-datepicker-group { float:right; }
92
- .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
93
- .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
94
-
95
- /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
96
- .ui-datepicker-cover {
97
- display: none; /*sorry for IE5*/
98
- display/**/: block; /*sorry for IE5*/
99
- position: absolute; /*must have*/
100
- z-index: -1; /*must have*/
101
- filter: mask(); /*must have*/
102
- top: -4px; /*must have*/
103
- left: -4px; /*must have*/
104
- width: 200px; /*must have*/
105
- height: 200px; /*must have*/
106
- }/* Dialog
107
- ----------------------------------*/
108
- .ui-dialog { position: relative; padding: .2em; width: 300px; }
109
- .ui-dialog .ui-dialog-titlebar { padding: .5em .3em .3em 1em; position: relative; }
110
- .ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; }
111
- .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
112
- .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
113
- .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
114
- .ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
115
- .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
116
- .ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; }
117
- .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
118
- .ui-draggable .ui-dialog-titlebar { cursor: move; }
119
- /* Progressbar
120
- ----------------------------------*/
121
- .ui-progressbar { height:2em; text-align: left; }
122
- .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/* Resizable
123
- ----------------------------------*/
124
- .ui-resizable { position: relative;}
125
- .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
126
- .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
127
- .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; }
128
- .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; }
129
- .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; }
130
- .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; }
131
- .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
132
- .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
133
- .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
134
- .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Slider
135
- ----------------------------------*/
136
- .ui-slider { position: relative; text-align: left; }
137
- .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
138
- .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; }
139
-
140
- .ui-slider-horizontal { height: .8em; }
141
- .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
142
- .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
143
- .ui-slider-horizontal .ui-slider-range-min { left: 0; }
144
- .ui-slider-horizontal .ui-slider-range-max { right: 0; }
145
-
146
- .ui-slider-vertical { width: .8em; height: 100px; }
147
- .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
148
- .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
149
- .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
150
- .ui-slider-vertical .ui-slider-range-max { top: 0; }/* Tabs
151
- ----------------------------------*/
152
- .ui-tabs { padding: .2em; zoom: 1; }
153
- .ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; }
154
- .ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; }
155
- .ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; }
156
- .ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; }
157
- .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
158
- .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
159
- .ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; }
160
- .ui-tabs .ui-tabs-hide { display: none !important; }
@@ -1,160 +0,0 @@
1
- /*
2
- * jQuery UI CSS Framework
3
- * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
4
- * Dual licensed under the MIT (MIT-LICENSE.txt) and GPL (GPL-LICENSE.txt) licenses.
5
- */
6
-
7
- /* Layout helpers
8
- ----------------------------------*/
9
- .ui-helper-hidden { display: none; }
10
- .ui-helper-hidden-accessible { position: absolute; left: -99999999px; }
11
- .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
12
- .ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
13
- .ui-helper-clearfix { display: inline-block; }
14
- /* required comment for clearfix to work in Opera \*/
15
- * html .ui-helper-clearfix { height:1%; }
16
- .ui-helper-clearfix { display:block; }
17
- /* end clearfix */
18
- .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
19
-
20
-
21
- /* Interaction Cues
22
- ----------------------------------*/
23
- .ui-state-disabled { cursor: default !important; }
24
-
25
-
26
- /* Icons
27
- ----------------------------------*/
28
-
29
- /* states and images */
30
- .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
31
-
32
-
33
- /* Misc visuals
34
- ----------------------------------*/
35
-
36
- /* Overlays */
37
- .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }/* Accordion
38
- ----------------------------------*/
39
- .ui-accordion .ui-accordion-header { cursor: pointer; position: relative; margin-top: 1px; zoom: 1; }
40
- .ui-accordion .ui-accordion-li-fix { display: inline; }
41
- .ui-accordion .ui-accordion-header-active { border-bottom: 0 !important; }
42
- .ui-accordion .ui-accordion-header a { display: block; font-size: 1em; padding: .5em .5em .5em 2.2em; }
43
- .ui-accordion .ui-accordion-header .ui-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
44
- .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; margin-top: -2px; position: relative; top: 1px; margin-bottom: 2px; overflow: auto; display: none; }
45
- .ui-accordion .ui-accordion-content-active { display: block; }/* Datepicker
46
- ----------------------------------*/
47
- .ui-datepicker { width: 17em; padding: .2em .2em 0; }
48
- .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
49
- .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
50
- .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
51
- .ui-datepicker .ui-datepicker-prev { left:2px; }
52
- .ui-datepicker .ui-datepicker-next { right:2px; }
53
- .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
54
- .ui-datepicker .ui-datepicker-next-hover { right:1px; }
55
- .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; }
56
- .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
57
- .ui-datepicker .ui-datepicker-title select { float:left; font-size:1em; margin:1px 0; }
58
- .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
59
- .ui-datepicker select.ui-datepicker-month,
60
- .ui-datepicker select.ui-datepicker-year { width: 49%;}
61
- .ui-datepicker .ui-datepicker-title select.ui-datepicker-year { float: right; }
62
- .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
63
- .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
64
- .ui-datepicker td { border: 0; padding: 1px; }
65
- .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
66
- .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; }
67
- .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
68
- .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
69
-
70
- /* with multiple calendars */
71
- .ui-datepicker.ui-datepicker-multi { width:auto; }
72
- .ui-datepicker-multi .ui-datepicker-group { float:left; }
73
- .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
74
- .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
75
- .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
76
- .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
77
- .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
78
- .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
79
- .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
80
- .ui-datepicker-row-break { clear:both; width:100%; }
81
-
82
- /* RTL support */
83
- .ui-datepicker-rtl { direction: rtl; }
84
- .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
85
- .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
86
- .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
87
- .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
88
- .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
89
- .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
90
- .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
91
- .ui-datepicker-rtl .ui-datepicker-group { float:right; }
92
- .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
93
- .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
94
-
95
- /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
96
- .ui-datepicker-cover {
97
- display: none; /*sorry for IE5*/
98
- display/**/: block; /*sorry for IE5*/
99
- position: absolute; /*must have*/
100
- z-index: -1; /*must have*/
101
- filter: mask(); /*must have*/
102
- top: -4px; /*must have*/
103
- left: -4px; /*must have*/
104
- width: 200px; /*must have*/
105
- height: 200px; /*must have*/
106
- }/* Dialog
107
- ----------------------------------*/
108
- .ui-dialog { position: relative; padding: .2em; width: 300px; }
109
- .ui-dialog .ui-dialog-titlebar { padding: .5em .3em .3em 1em; position: relative; }
110
- .ui-dialog .ui-dialog-title { float: left; margin: .1em 0 .2em; }
111
- .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
112
- .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
113
- .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
114
- .ui-dialog .ui-dialog-content { border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
115
- .ui-dialog .ui-dialog-buttonpane { text-align: left; border-width: 1px 0 0 0; background-image: none; margin: .5em 0 0 0; padding: .3em 1em .5em .4em; }
116
- .ui-dialog .ui-dialog-buttonpane button { float: right; margin: .5em .4em .5em 0; cursor: pointer; padding: .2em .6em .3em .6em; line-height: 1.4em; width:auto; overflow:visible; }
117
- .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
118
- .ui-draggable .ui-dialog-titlebar { cursor: move; }
119
- /* Progressbar
120
- ----------------------------------*/
121
- .ui-progressbar { height:2em; text-align: left; }
122
- .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }/* Resizable
123
- ----------------------------------*/
124
- .ui-resizable { position: relative;}
125
- .ui-resizable-handle { position: absolute;font-size: 0.1px;z-index: 99999; display: block;}
126
- .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
127
- .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0px; }
128
- .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0px; }
129
- .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0px; height: 100%; }
130
- .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0px; height: 100%; }
131
- .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
132
- .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
133
- .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
134
- .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}/* Slider
135
- ----------------------------------*/
136
- .ui-slider { position: relative; text-align: left; }
137
- .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
138
- .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; }
139
-
140
- .ui-slider-horizontal { height: .8em; }
141
- .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
142
- .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
143
- .ui-slider-horizontal .ui-slider-range-min { left: 0; }
144
- .ui-slider-horizontal .ui-slider-range-max { right: 0; }
145
-
146
- .ui-slider-vertical { width: .8em; height: 100px; }
147
- .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
148
- .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
149
- .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
150
- .ui-slider-vertical .ui-slider-range-max { top: 0; }/* Tabs
151
- ----------------------------------*/
152
- .ui-tabs { padding: .2em; zoom: 1; }
153
- .ui-tabs .ui-tabs-nav { list-style: none; position: relative; padding: .2em .2em 0; }
154
- .ui-tabs .ui-tabs-nav li { position: relative; float: left; border-bottom-width: 0 !important; margin: 0 .2em -1px 0; padding: 0; }
155
- .ui-tabs .ui-tabs-nav li a { float: left; text-decoration: none; padding: .5em 1em; }
156
- .ui-tabs .ui-tabs-nav li.ui-tabs-selected { padding-bottom: 1px; border-bottom-width: 0; }
157
- .ui-tabs .ui-tabs-nav li.ui-tabs-selected a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-state-processing a { cursor: text; }
158
- .ui-tabs .ui-tabs-nav li a, .ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
159
- .ui-tabs .ui-tabs-panel { padding: 1em 1.4em; display: block; border-width: 0; background: none; }
160
- .ui-tabs .ui-tabs-hide { display: none !important; }