fwt_push_notification_server 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (160) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/images/fw-logo.png +0 -0
  6. data/app/assets/javascripts/fwt_push_notification_server/application.js +13 -0
  7. data/app/assets/javascripts/fwt_push_notification_server/device_tokens.js +2 -0
  8. data/app/assets/stylesheets/fwt_push_notification_server/application.css.scss +192 -0
  9. data/app/assets/stylesheets/fwt_push_notification_server/device_tokens.css +4 -0
  10. data/app/assets/stylesheets/fwt_push_notification_server/jquery-ui-timepicker-addon.css +10 -0
  11. data/app/assets/stylesheets/fwt_push_notification_server/jquery-ui.css +474 -0
  12. data/app/assets/stylesheets/fwt_push_notification_server/jquery.ui.theme.css +248 -0
  13. data/app/controllers/fwt_push_notification_server/application_controller.rb +9 -0
  14. data/app/controllers/fwt_push_notification_server/device_tokens_controller.rb +51 -0
  15. data/app/helpers/fwt_push_notification_server/application_helper.rb +6 -0
  16. data/app/helpers/fwt_push_notification_server/device_tokens_helper.rb +6 -0
  17. data/app/models/fwt_push_notification_server/device_token.rb +9 -0
  18. data/app/models/fwt_push_notification_server/user.rb +7 -0
  19. data/app/views/fwt_push_notification_server/application/_empty_view.html.erb +1 -0
  20. data/app/views/fwt_push_notification_server/device_tokens/index.html.erb +35 -0
  21. data/app/views/layouts/fwt_push_notification_server/_messages.html.erb +6 -0
  22. data/app/views/layouts/fwt_push_notification_server/application.html.erb +30 -0
  23. data/config/initializers/devise.rb +27 -0
  24. data/config/locales/devise.en.yml +60 -0
  25. data/config/routes.rb +11 -0
  26. data/lib/fwt_push_notification_server/engine.rb +16 -0
  27. data/lib/fwt_push_notification_server/version.rb +3 -0
  28. data/lib/fwt_push_notification_server.rb +48 -0
  29. data/lib/generators/fwt_push_notification_server/install/install_generator.rb +49 -0
  30. data/lib/generators/fwt_push_notification_server/install/templates/create_fwt_push_notification_server_device_tokens.rb +14 -0
  31. data/lib/generators/fwt_push_notification_server/install/templates/devise_create_fwt_push_notification_server_users.rb +31 -0
  32. data/lib/generators/fwt_push_notification_server/install/templates/initializer.rb +20 -0
  33. data/lib/generators/fwt_push_notification_server/install/templates/seeds.rb +5 -0
  34. data/lib/tasks/fwt_push_notification_server_tasks.rake +4 -0
  35. data/test/controllers/fwt_push_notification_server/device_tokens_controller_test.rb +51 -0
  36. data/test/dummy/Rakefile +6 -0
  37. data/test/dummy/app/assets/javascripts/application.js +13 -0
  38. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  39. data/test/dummy/app/controllers/application_controller.rb +5 -0
  40. data/test/dummy/app/helpers/application_helper.rb +2 -0
  41. data/test/dummy/bin/bundle +3 -0
  42. data/test/dummy/bin/rails +4 -0
  43. data/test/dummy/bin/rake +4 -0
  44. data/test/dummy/config/application.rb +23 -0
  45. data/test/dummy/config/boot.rb +5 -0
  46. data/test/dummy/config/database.yml +25 -0
  47. data/test/dummy/config/environment.rb +5 -0
  48. data/test/dummy/config/environments/development.rb +29 -0
  49. data/test/dummy/config/environments/production.rb +80 -0
  50. data/test/dummy/config/environments/test.rb +36 -0
  51. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  52. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  53. data/test/dummy/config/initializers/fwt_push_notification_server.rb +19 -0
  54. data/test/dummy/config/initializers/inflections.rb +16 -0
  55. data/test/dummy/config/initializers/mime_types.rb +5 -0
  56. data/test/dummy/config/initializers/secret_token.rb +12 -0
  57. data/test/dummy/config/initializers/session_store.rb +3 -0
  58. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  59. data/test/dummy/config/locales/en.yml +23 -0
  60. data/test/dummy/config/routes.rb +5 -0
  61. data/test/dummy/config.ru +4 -0
  62. data/test/dummy/db/development.sqlite3 +0 -0
  63. data/test/dummy/db/migrate/20130918095820_create_fwt_push_notification_server_device_tokens.rb +14 -0
  64. data/test/dummy/db/migrate/20130918095821_devise_create_fwt_push_notification_server_users.rb +31 -0
  65. data/test/dummy/db/schema.rb +43 -0
  66. data/test/dummy/db/seeds.rb +5 -0
  67. data/test/dummy/log/development.log +16238 -0
  68. data/test/dummy/log/test.log +10 -0
  69. data/test/dummy/public/404.html +58 -0
  70. data/test/dummy/public/422.html +58 -0
  71. data/test/dummy/public/500.html +57 -0
  72. data/test/dummy/public/favicon.ico +0 -0
  73. data/test/dummy/tmp/cache/assets/development/sass/12c8e9505bddaa133e5fb349c2a5686f5ceccada/bootstrap.scssc +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_accordion.scssc +0 -0
  75. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_alerts.scssc +0 -0
  76. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_breadcrumbs.scssc +0 -0
  77. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_button-groups.scssc +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_buttons.scssc +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_carousel.scssc +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_close.scssc +0 -0
  81. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_code.scssc +0 -0
  82. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_component-animations.scssc +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_dropdowns.scssc +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_forms.scssc +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_grid.scssc +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_hero-unit.scssc +0 -0
  87. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_labels-badges.scssc +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_layouts.scssc +0 -0
  89. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_media.scssc +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_mixins.scssc +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_modals.scssc +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_navbar.scssc +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_navs.scssc +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_pager.scssc +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_pagination.scssc +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_popovers.scssc +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_progress-bars.scssc +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_reset.scssc +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_scaffolding.scssc +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_sprites.scssc +0 -0
  101. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_tables.scssc +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_thumbnails.scssc +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_tooltip.scssc +0 -0
  104. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_type.scssc +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_utilities.scssc +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_variables.scssc +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/_wells.scssc +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sass/7c851c8cce3147a485a2e36f9c2ea3624eca398d/bootstrap.scssc +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sass/dd375f805d06ad6efb1710787bd24bcab705b025/application.css.scssc +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/018e8124fa401e10da2a0f8d089b1467 +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/04f93e7cd5f3c6bd6c26ea15acf03144 +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/1e51677f9d96bb542510a33f91cbd9b6 +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/23bb189d596dce443600523c2af2f418 +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/375c78da06e45aab2bc0723f291620f6 +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/3bebeefd5ffe6a58fb03bf1f37ac9163 +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sprockets/40525813aeb4df11bbc7934420765970 +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/4809faed3f3c49e4f0069d90c42db9fa +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sprockets/4837e9658be5fa714ededd423bec6394 +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sprockets/4930f39005ca20c14fe5b6ff5e3462c5 +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/4edaf8d607c191a1d04f54ceafa27f34 +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/525db6dca24b08bdb1073bd610b641fa +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/52fc34b303a5058c0f82e03f5e49be15 +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/53a6a8c806fb66ef100dcdec2c14667f +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/5d48cbe0eb7f4d2a888760672ebcd0b5 +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/5dbf4424a551546c8ca2ea3693f57aad +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/63e1b63a0601a563b63be1b6cb6f14e8 +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/7525085b7df71dd698c4ddd96818b178 +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/7c0cc261ea34e01a60b85decd619d572 +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/807b74c8c0f4286940e0f072e71dbf48 +0 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/86b51d868b31f8ec21eab714b70f25c8 +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/871bed79442dc4d0f7e860539e548c11 +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/873e96cc154ed7b8f89ae6ebd6330d76 +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/9266b6839c460333f8fabb33531b0aa5 +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/9619769a83bc4c96187fad84dd44f662 +0 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/984da49c74b19af286bd6da0be3b7f41 +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/b3329085a217fc47138d40e542cbab29 +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/b49ac435bde8ad5725858653ed8c96b0 +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/c88406e714c83dc7a8eba7dfc687b9be +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/db1758582caea75d451566fa655186d1 +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/ee6e9c40abd892aaef0bbbf0bd11c5e0 +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/f0e74746290141cd77d8e42db2047501 +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/f301640fffe07f12598645f72b673e29 +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/f3f906a5c3f8d16aaa9833a07d5f87dc +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/f6db10193f0119f139b2d45d263ed768 +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/fa7addf7e35b3a6bfcff34dc107fad07 +0 -0
  152. data/test/fixtures/fwt_push_notification_server/device_tokens.yml +13 -0
  153. data/test/fixtures/fwt_push_notification_server/users.yml +11 -0
  154. data/test/fwt_push_notification_server_test.rb +9 -0
  155. data/test/helpers/fwt_push_notification_server/device_tokens_helper_test.rb +6 -0
  156. data/test/integration/navigation_test.rb +10 -0
  157. data/test/models/fwt_push_notification_server/device_token_test.rb +9 -0
  158. data/test/models/fwt_push_notification_server/user_test.rb +9 -0
  159. data/test/test_helper.rb +15 -0
  160. metadata +481 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 1a98d7e08a6ce4dc5ab5581744f744465c9ac05a
4
+ data.tar.gz: 9d61f5bd7dccccb2bdad535cf9d08341f25818d0
5
+ SHA512:
6
+ metadata.gz: 55c320a011822f617a37f154e803b3156d9a449d2abda7ca000f616720bc1a039cdbfcf68aa0be4c6f6b25b85711c5624d72828ad1a6e6b46cf801ec6fa16723
7
+ data.tar.gz: 07682b7ff307e4809600bedd2522458389d0c226adbaf6212901383252e36f7bef4f4612d83d17d196c990a7bf43259d83e74b031a1afada84879162d1708b15
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2013 Future Workshops Ltd
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = FwtPushNotificationServer
2
+
3
+ TODO
data/Rakefile ADDED
@@ -0,0 +1,34 @@
1
+ begin
2
+ require 'bundler/setup'
3
+ rescue LoadError
4
+ puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
+ end
6
+
7
+ require 'rdoc/task'
8
+
9
+ RDoc::Task.new(:rdoc) do |rdoc|
10
+ rdoc.rdoc_dir = 'rdoc'
11
+ rdoc.title = 'FwtPushNotificationServer'
12
+ rdoc.options << '--line-numbers'
13
+ rdoc.rdoc_files.include('README.rdoc')
14
+ rdoc.rdoc_files.include('lib/**/*.rb')
15
+ end
16
+
17
+ APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
+ load 'rails/tasks/engine.rake'
19
+
20
+
21
+
22
+ Bundler::GemHelper.install_tasks
23
+
24
+ require 'rake/testtask'
25
+
26
+ Rake::TestTask.new(:test) do |t|
27
+ t.libs << 'lib'
28
+ t.libs << 'test'
29
+ t.pattern = 'test/**/*_test.rb'
30
+ t.verbose = false
31
+ end
32
+
33
+
34
+ task default: :test
Binary file
@@ -0,0 +1,13 @@
1
+ // This is a manifest file that'll be compiled into application.js, which will include all the files
2
+ // listed below.
3
+ //
4
+ // Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
5
+ // or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
6
+ //
7
+ // It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
8
+ // compiled file.
9
+ //
10
+ // Read Sprockets README (https://github.com/sstephenson/sprockets#sprockets-directives) for details
11
+ // about supported directives.
12
+ //
13
+ //= require_tree .
@@ -0,0 +1,2 @@
1
+ // Place all the behaviors and hooks related to the matching controller here.
2
+ // All this logic will automatically be available in application.js.
@@ -0,0 +1,192 @@
1
+ /**
2
+ *= require bootstrap
3
+ *= require_tree .
4
+ */
5
+
6
+ .content {
7
+ background-color: #eee;
8
+ padding: 20px;
9
+ margin: 0 -20px; /* negative indent the amount of the padding to maintain the grid system */
10
+ -webkit-border-radius: 0 0 6px 6px;
11
+ -moz-border-radius: 0 0 6px 6px;
12
+ border-radius: 0 0 6px 6px;
13
+ -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
14
+ -moz-box-shadow: 0 1px 2px rgba(0,0,0,.15);
15
+ box-shadow: 0 1px 2px rgba(0,0,0,.15);
16
+ }
17
+
18
+ html, body {
19
+ height: 100%;
20
+ }
21
+
22
+ footer {
23
+ border-top: 1px solid #eee;
24
+ height: 60px;
25
+ width: 100%;
26
+ margin-top: 20px;
27
+ .credit {
28
+ color: #36342F;
29
+ font-size: 12pt;
30
+ float: right;
31
+ margin-right: 40px;
32
+ margin-top: 20px;
33
+ }
34
+ img {
35
+ float: left;
36
+ margin-left: 40px;
37
+ }
38
+ }
39
+
40
+ .push {
41
+ height: 60px;
42
+ }
43
+
44
+ .push-small {
45
+ height: 20px;
46
+ }
47
+
48
+ .container > .row:first-child {
49
+ margin-top: 60px;
50
+ }
51
+
52
+ #wrap {
53
+ min-height: 100%;
54
+ height: auto !important;
55
+ height: 100%;
56
+ margin: 0 auto -88px;
57
+ }
58
+
59
+ .thumbnail {
60
+ display: inline-block;
61
+ }
62
+
63
+ .header-empty {
64
+ color : #999;
65
+ }
66
+
67
+ #quick-nav {
68
+ width: 140px;
69
+ position: fixed;
70
+ margin-left: -200px;
71
+ top: 70px;
72
+ }
73
+
74
+ img.source-icon {
75
+ height: 40px;
76
+ }
77
+
78
+ .thumbnail-button {
79
+ float: right;
80
+ }
81
+
82
+ .control-group.hidden {
83
+ display: none;
84
+ }
85
+
86
+ h3 img {
87
+ margin-right: 12px;
88
+ }
89
+
90
+ #timeline table {
91
+ td {
92
+ vertical-align: middle;
93
+ }
94
+ .row {
95
+ margin-top: 0;
96
+ }
97
+ }
98
+
99
+ .remote-modal {
100
+ cursor: pointer;
101
+ }
102
+
103
+ .modal {
104
+ width: auto;
105
+ max-width: 80%;
106
+ max-height: 80%;
107
+ }
108
+
109
+ video {
110
+ max-width: 100%;
111
+ }
112
+
113
+ .hole-caption {
114
+ text-align: center;
115
+ margin-top: 10px;
116
+ }
117
+
118
+ .label-text {
119
+ background: white;
120
+ color: black;
121
+ }
122
+
123
+ .label-bigger {
124
+ font-size: 16px;
125
+ line-height: 20px;
126
+ }
127
+
128
+ .eagles {
129
+ background-color: rgb(150, 28, 115);
130
+ }
131
+
132
+ .birdies {
133
+ background-color: rgb(209, 18, 66);
134
+ }
135
+
136
+ .par {
137
+ background-color: rgb(168, 112, 18);
138
+ }
139
+
140
+ .bogeys {
141
+ background-color: rgb(0, 120, 179);
142
+ }
143
+
144
+ .dbogeys {
145
+ background-color: rgb(82, 20, 184);
146
+ }
147
+
148
+ form.edit_feed, form.new_feed, form.edit_setting, form.new_setting, form.new_tournament_session, form.edit_tournament_session, form.new_media_item, form.edit_media_item, form.new_message {
149
+ width: 400px;
150
+ input.string {
151
+ width: 300px;
152
+ }
153
+ textarea {
154
+ width: 320px;
155
+ height: 100px;
156
+ }
157
+ }
158
+
159
+ td .break-word {
160
+ margin: 0;
161
+ padding: 0;
162
+ }
163
+
164
+ .break-word {
165
+ word-wrap: break-word;
166
+ }
167
+
168
+ #activity {
169
+ display: none;
170
+ width: 100%;
171
+ position: fixed;
172
+ background: black;
173
+ opacity: 0.7;
174
+ margin-top: 40px;
175
+ height: 40px;
176
+ z-index: 1000;
177
+ p {
178
+ text-align: center;
179
+ color: white;
180
+ font-weight: bold;
181
+ font-size: 18pt;
182
+ margin-top: 7px;
183
+ }
184
+ }
185
+
186
+ div.detail {
187
+ margin-top: 20px;
188
+ }
189
+
190
+ .center {
191
+ text-align: center;
192
+ }
@@ -0,0 +1,4 @@
1
+ /*
2
+ Place all the styles related to the matching controller here.
3
+ They will automatically be included in application.css.
4
+ */
@@ -0,0 +1,10 @@
1
+ .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; }
2
+ .ui-timepicker-div dl { text-align: left; }
3
+ .ui-timepicker-div dl dt { height: 25px; margin-bottom: -25px; }
4
+ .ui-timepicker-div dl dd { margin: 0 10px 10px 65px; }
5
+ .ui-timepicker-div td { font-size: 90%; }
6
+ .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; }
7
+
8
+ .ui-timepicker-rtl{ direction: rtl; }
9
+ .ui-timepicker-rtl dl { text-align: right; }
10
+ .ui-timepicker-rtl dl dd { margin: 0 65px 10px 10px; }
@@ -0,0 +1,474 @@
1
+ /*! jQuery UI - v1.9.2 - 2012-11-23
2
+ * http://jqueryui.com
3
+ * Includes: jquery.ui.core.css, jquery.ui.accordion.css, jquery.ui.autocomplete.css, jquery.ui.button.css, jquery.ui.datepicker.css, jquery.ui.dialog.css, jquery.ui.menu.css, jquery.ui.progressbar.css, jquery.ui.resizable.css, jquery.ui.selectable.css, jquery.ui.slider.css, jquery.ui.spinner.css, jquery.ui.tabs.css, jquery.ui.tooltip.css, jquery.ui.theme.css
4
+ * Copyright 2012 jQuery Foundation and other contributors; Licensed MIT */
5
+
6
+ /* Layout helpers
7
+ ----------------------------------*/
8
+ .ui-helper-hidden { display: none; }
9
+ .ui-helper-hidden-accessible { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
10
+ .ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
11
+ .ui-helper-clearfix:before, .ui-helper-clearfix:after { content: ""; display: table; }
12
+ .ui-helper-clearfix:after { clear: both; }
13
+ .ui-helper-clearfix { zoom: 1; }
14
+ .ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
15
+
16
+
17
+ /* Interaction Cues
18
+ ----------------------------------*/
19
+ .ui-state-disabled { cursor: default !important; }
20
+
21
+
22
+ /* Icons
23
+ ----------------------------------*/
24
+
25
+ /* states and images */
26
+ .ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
27
+
28
+
29
+ /* Misc visuals
30
+ ----------------------------------*/
31
+
32
+ /* Overlays */
33
+ .ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
34
+
35
+ .ui-accordion .ui-accordion-header { display: block; cursor: pointer; position: relative; margin-top: 2px; padding: .5em .5em .5em .7em; zoom: 1; }
36
+ .ui-accordion .ui-accordion-icons { padding-left: 2.2em; }
37
+ .ui-accordion .ui-accordion-noicons { padding-left: .7em; }
38
+ .ui-accordion .ui-accordion-icons .ui-accordion-icons { padding-left: 2.2em; }
39
+ .ui-accordion .ui-accordion-header .ui-accordion-header-icon { position: absolute; left: .5em; top: 50%; margin-top: -8px; }
40
+ .ui-accordion .ui-accordion-content { padding: 1em 2.2em; border-top: 0; overflow: auto; zoom: 1; }
41
+
42
+ .ui-autocomplete {
43
+ position: absolute;
44
+ top: 0;
45
+ left: 0;
46
+ cursor: default;
47
+ }
48
+
49
+ /* workarounds */
50
+ * html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
51
+
52
+ .ui-button { display: inline-block; position: relative; padding: 0; margin-right: .1em; cursor: pointer; text-align: center; zoom: 1; overflow: visible; } /* the overflow property removes extra width in IE */
53
+ .ui-button, .ui-button:link, .ui-button:visited, .ui-button:hover, .ui-button:active { text-decoration: none; }
54
+ .ui-button-icon-only { width: 2.2em; } /* to make room for the icon, a width needs to be set here */
55
+ button.ui-button-icon-only { width: 2.4em; } /* button elements seem to need a little more width */
56
+ .ui-button-icons-only { width: 3.4em; }
57
+ button.ui-button-icons-only { width: 3.7em; }
58
+
59
+ /*button text element */
60
+ .ui-button .ui-button-text { display: block; line-height: 1.4; }
61
+ .ui-button-text-only .ui-button-text { padding: .4em 1em; }
62
+ .ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: .4em; text-indent: -9999999px; }
63
+ .ui-button-text-icon-primary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 1em .4em 2.1em; }
64
+ .ui-button-text-icon-secondary .ui-button-text, .ui-button-text-icons .ui-button-text { padding: .4em 2.1em .4em 1em; }
65
+ .ui-button-text-icons .ui-button-text { padding-left: 2.1em; padding-right: 2.1em; }
66
+ /* no icon support for input elements, provide padding by default */
67
+ input.ui-button { padding: .4em 1em; }
68
+
69
+ /*button icon element(s) */
70
+ .ui-button-icon-only .ui-icon, .ui-button-text-icon-primary .ui-icon, .ui-button-text-icon-secondary .ui-icon, .ui-button-text-icons .ui-icon, .ui-button-icons-only .ui-icon { position: absolute; top: 50%; margin-top: -8px; }
71
+ .ui-button-icon-only .ui-icon { left: 50%; margin-left: -8px; }
72
+ .ui-button-text-icon-primary .ui-button-icon-primary, .ui-button-text-icons .ui-button-icon-primary, .ui-button-icons-only .ui-button-icon-primary { left: .5em; }
73
+ .ui-button-text-icon-secondary .ui-button-icon-secondary, .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
74
+ .ui-button-text-icons .ui-button-icon-secondary, .ui-button-icons-only .ui-button-icon-secondary { right: .5em; }
75
+
76
+ /*button sets*/
77
+ .ui-buttonset { margin-right: 7px; }
78
+ .ui-buttonset .ui-button { margin-left: 0; margin-right: -.3em; }
79
+
80
+ /* workarounds */
81
+ button.ui-button::-moz-focus-inner { border: 0; padding: 0; } /* reset extra padding in Firefox */
82
+
83
+ .ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
84
+ .ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
85
+ .ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
86
+ .ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
87
+ .ui-datepicker .ui-datepicker-prev { left:2px; }
88
+ .ui-datepicker .ui-datepicker-next { right:2px; }
89
+ .ui-datepicker .ui-datepicker-prev-hover { left:1px; }
90
+ .ui-datepicker .ui-datepicker-next-hover { right:1px; }
91
+ .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; }
92
+ .ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
93
+ .ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
94
+ .ui-datepicker select.ui-datepicker-month-year {width: 100%;}
95
+ .ui-datepicker select.ui-datepicker-month,
96
+ .ui-datepicker select.ui-datepicker-year { width: 49%;}
97
+ .ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
98
+ .ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
99
+ .ui-datepicker td { border: 0; padding: 1px; }
100
+ .ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
101
+ .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; }
102
+ .ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
103
+ .ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
104
+
105
+ /* with multiple calendars */
106
+ .ui-datepicker.ui-datepicker-multi { width:auto; }
107
+ .ui-datepicker-multi .ui-datepicker-group { float:left; }
108
+ .ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
109
+ .ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
110
+ .ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
111
+ .ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
112
+ .ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
113
+ .ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
114
+ .ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
115
+ .ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
116
+
117
+ /* RTL support */
118
+ .ui-datepicker-rtl { direction: rtl; }
119
+ .ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
120
+ .ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
121
+ .ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
122
+ .ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
123
+ .ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
124
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
125
+ .ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
126
+ .ui-datepicker-rtl .ui-datepicker-group { float:right; }
127
+ .ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
128
+ .ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
129
+
130
+ /* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
131
+ .ui-datepicker-cover {
132
+ position: absolute; /*must have*/
133
+ z-index: -1; /*must have*/
134
+ filter: mask(); /*must have*/
135
+ top: -4px; /*must have*/
136
+ left: -4px; /*must have*/
137
+ width: 200px; /*must have*/
138
+ height: 200px; /*must have*/
139
+ }
140
+ .ui-dialog { position: absolute; top: 0; left: 0; padding: .2em; width: 300px; overflow: hidden; }
141
+ .ui-dialog .ui-dialog-titlebar { padding: .4em 1em; position: relative; }
142
+ .ui-dialog .ui-dialog-title { float: left; margin: .1em 16px .1em 0; }
143
+ .ui-dialog .ui-dialog-titlebar-close { position: absolute; right: .3em; top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height: 18px; }
144
+ .ui-dialog .ui-dialog-titlebar-close span { display: block; margin: 1px; }
145
+ .ui-dialog .ui-dialog-titlebar-close:hover, .ui-dialog .ui-dialog-titlebar-close:focus { padding: 0; }
146
+ .ui-dialog .ui-dialog-content { position: relative; border: 0; padding: .5em 1em; background: none; overflow: auto; zoom: 1; }
147
+ .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; }
148
+ .ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset { float: right; }
149
+ .ui-dialog .ui-dialog-buttonpane button { margin: .5em .4em .5em 0; cursor: pointer; }
150
+ .ui-dialog .ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
151
+ .ui-draggable .ui-dialog-titlebar { cursor: move; }
152
+
153
+ .ui-menu { list-style:none; padding: 2px; margin: 0; display:block; outline: none; }
154
+ .ui-menu .ui-menu { margin-top: -3px; position: absolute; }
155
+ .ui-menu .ui-menu-item { margin: 0; padding: 0; zoom: 1; width: 100%; }
156
+ .ui-menu .ui-menu-divider { margin: 5px -2px 5px -2px; height: 0; font-size: 0; line-height: 0; border-width: 1px 0 0 0; }
157
+ .ui-menu .ui-menu-item a { text-decoration: none; display: block; padding: 2px .4em; line-height: 1.5; zoom: 1; font-weight: normal; }
158
+ .ui-menu .ui-menu-item a.ui-state-focus,
159
+ .ui-menu .ui-menu-item a.ui-state-active { font-weight: normal; margin: -1px; }
160
+
161
+ .ui-menu .ui-state-disabled { font-weight: normal; margin: .4em 0 .2em; line-height: 1.5; }
162
+ .ui-menu .ui-state-disabled a { cursor: default; }
163
+
164
+ /* icon support */
165
+ .ui-menu-icons { position: relative; }
166
+ .ui-menu-icons .ui-menu-item a { position: relative; padding-left: 2em; }
167
+
168
+ /* left-aligned */
169
+ .ui-menu .ui-icon { position: absolute; top: .2em; left: .2em; }
170
+
171
+ /* right-aligned */
172
+ .ui-menu .ui-menu-icon { position: static; float: right; }
173
+
174
+ .ui-progressbar { height:2em; text-align: left; overflow: hidden; }
175
+ .ui-progressbar .ui-progressbar-value {margin: -1px; height:100%; }
176
+ .ui-resizable { position: relative;}
177
+ .ui-resizable-handle { position: absolute;font-size: 0.1px; display: block; }
178
+ .ui-resizable-disabled .ui-resizable-handle, .ui-resizable-autohide .ui-resizable-handle { display: none; }
179
+ .ui-resizable-n { cursor: n-resize; height: 7px; width: 100%; top: -5px; left: 0; }
180
+ .ui-resizable-s { cursor: s-resize; height: 7px; width: 100%; bottom: -5px; left: 0; }
181
+ .ui-resizable-e { cursor: e-resize; width: 7px; right: -5px; top: 0; height: 100%; }
182
+ .ui-resizable-w { cursor: w-resize; width: 7px; left: -5px; top: 0; height: 100%; }
183
+ .ui-resizable-se { cursor: se-resize; width: 12px; height: 12px; right: 1px; bottom: 1px; }
184
+ .ui-resizable-sw { cursor: sw-resize; width: 9px; height: 9px; left: -5px; bottom: -5px; }
185
+ .ui-resizable-nw { cursor: nw-resize; width: 9px; height: 9px; left: -5px; top: -5px; }
186
+ .ui-resizable-ne { cursor: ne-resize; width: 9px; height: 9px; right: -5px; top: -5px;}
187
+ .ui-selectable-helper { position: absolute; z-index: 100; border:1px dotted black; }
188
+
189
+ .ui-slider { position: relative; text-align: left; }
190
+ .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 1.2em; height: 1.2em; cursor: default; }
191
+ .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background-position: 0 0; }
192
+
193
+ .ui-slider-horizontal { height: .8em; }
194
+ .ui-slider-horizontal .ui-slider-handle { top: -.3em; margin-left: -.6em; }
195
+ .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; }
196
+ .ui-slider-horizontal .ui-slider-range-min { left: 0; }
197
+ .ui-slider-horizontal .ui-slider-range-max { right: 0; }
198
+
199
+ .ui-slider-vertical { width: .8em; height: 100px; }
200
+ .ui-slider-vertical .ui-slider-handle { left: -.3em; margin-left: 0; margin-bottom: -.6em; }
201
+ .ui-slider-vertical .ui-slider-range { left: 0; width: 100%; }
202
+ .ui-slider-vertical .ui-slider-range-min { bottom: 0; }
203
+ .ui-slider-vertical .ui-slider-range-max { top: 0; }
204
+ .ui-spinner { position:relative; display: inline-block; overflow: hidden; padding: 0; vertical-align: middle; }
205
+ .ui-spinner-input { border: none; background: none; padding: 0; margin: .2em 0; vertical-align: middle; margin-left: .4em; margin-right: 22px; }
206
+ .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; }
207
+ .ui-spinner a.ui-spinner-button { border-top: none; border-bottom: none; border-right: none; } /* more specificity required here to overide default borders */
208
+ .ui-spinner .ui-icon { position: absolute; margin-top: -8px; top: 50%; left: 0; } /* vertical centre icon */
209
+ .ui-spinner-up { top: 0; }
210
+ .ui-spinner-down { bottom: 0; }
211
+
212
+ /* TR overrides */
213
+ .ui-spinner .ui-icon-triangle-1-s {
214
+ /* need to fix icons sprite */
215
+ background-position:-65px -16px;
216
+ }
217
+
218
+ .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
219
+ .ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
220
+ .ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; border-bottom: 0; padding: 0; white-space: nowrap; }
221
+ .ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
222
+ .ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; }
223
+ .ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; }
224
+ .ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
225
+ .ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
226
+
227
+ .ui-tooltip {
228
+ padding: 8px;
229
+ position: absolute;
230
+ z-index: 9999;
231
+ max-width: 300px;
232
+ -webkit-box-shadow: 0 0 5px #aaa;
233
+ box-shadow: 0 0 5px #aaa;
234
+ }
235
+ /* Fades and background-images don't work well together in IE6, drop the image */
236
+ * html .ui-tooltip {
237
+ background-image: none;
238
+ }
239
+ body .ui-tooltip { border-width: 2px; }
240
+
241
+ /* Component containers
242
+ ----------------------------------*/
243
+ .ui-widget { font-family: Lucida Grande,Lucida Sans,Arial,sans-serif; font-size: 1.1em; }
244
+ .ui-widget .ui-widget { font-size: 1em; }
245
+ .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Lucida Grande,Lucida Sans,Arial,sans-serif; font-size: 1em; }
246
+ .ui-widget-content { border: 1px solid #dddddd; background: #f2f5f7 url(images/ui-bg_highlight-hard_100_f2f5f7_1x100.png) 50% top repeat-x; color: #362b36; }
247
+ .ui-widget-content a { color: #362b36; }
248
+ .ui-widget-header { border: 1px solid #aed0ea; background: #deedf7 url(images/ui-bg_highlight-soft_100_deedf7_1x100.png) 50% 50% repeat-x; color: #222222; font-weight: bold; }
249
+ .ui-widget-header a { color: #222222; }
250
+
251
+ /* Interaction states
252
+ ----------------------------------*/
253
+ .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #aed0ea; background: #d7ebf9 url(images/ui-bg_glass_80_d7ebf9_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #2779aa; }
254
+ .ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #2779aa; text-decoration: none; }
255
+ .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus { border: 1px solid #74b2e2; background: #e4f1fb url(images/ui-bg_glass_100_e4f1fb_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #0070a3; }
256
+ .ui-state-hover a, .ui-state-hover a:hover, .ui-state-hover a:link, .ui-state-hover a:visited { color: #0070a3; text-decoration: none; }
257
+ .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #2694e8; background: #3baae3 url(images/ui-bg_glass_50_3baae3_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #ffffff; }
258
+ .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #ffffff; text-decoration: none; }
259
+
260
+ /* Interaction Cues
261
+ ----------------------------------*/
262
+ .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #f9dd34; background: #ffef8f url(images/ui-bg_highlight-soft_25_ffef8f_1x100.png) 50% top repeat-x; color: #363636; }
263
+ .ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
264
+ .ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #cd0a0a url(images/ui-bg_flat_15_cd0a0a_40x100.png) 50% 50% repeat-x; color: #ffffff; }
265
+ .ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #ffffff; }
266
+ .ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #ffffff; }
267
+ .ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
268
+ .ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
269
+ .ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
270
+ .ui-state-disabled .ui-icon { filter:Alpha(Opacity=35); } /* For IE8 - See #6059 */
271
+
272
+ /* Icons
273
+ ----------------------------------*/
274
+
275
+ /* states and images */
276
+ .ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_72a7cf_256x240.png); }
277
+ .ui-widget-content .ui-icon {background-image: url(images/ui-icons_72a7cf_256x240.png); }
278
+ .ui-widget-header .ui-icon {background-image: url(images/ui-icons_72a7cf_256x240.png); }
279
+ .ui-state-default .ui-icon { background-image: url(images/ui-icons_3d80b3_256x240.png); }
280
+ .ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_2694e8_256x240.png); }
281
+ .ui-state-active .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
282
+ .ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); }
283
+ .ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_ffffff_256x240.png); }
284
+
285
+ /* positioning */
286
+ .ui-icon-carat-1-n { background-position: 0 0; }
287
+ .ui-icon-carat-1-ne { background-position: -16px 0; }
288
+ .ui-icon-carat-1-e { background-position: -32px 0; }
289
+ .ui-icon-carat-1-se { background-position: -48px 0; }
290
+ .ui-icon-carat-1-s { background-position: -64px 0; }
291
+ .ui-icon-carat-1-sw { background-position: -80px 0; }
292
+ .ui-icon-carat-1-w { background-position: -96px 0; }
293
+ .ui-icon-carat-1-nw { background-position: -112px 0; }
294
+ .ui-icon-carat-2-n-s { background-position: -128px 0; }
295
+ .ui-icon-carat-2-e-w { background-position: -144px 0; }
296
+ .ui-icon-triangle-1-n { background-position: 0 -16px; }
297
+ .ui-icon-triangle-1-ne { background-position: -16px -16px; }
298
+ .ui-icon-triangle-1-e { background-position: -32px -16px; }
299
+ .ui-icon-triangle-1-se { background-position: -48px -16px; }
300
+ .ui-icon-triangle-1-s { background-position: -64px -16px; }
301
+ .ui-icon-triangle-1-sw { background-position: -80px -16px; }
302
+ .ui-icon-triangle-1-w { background-position: -96px -16px; }
303
+ .ui-icon-triangle-1-nw { background-position: -112px -16px; }
304
+ .ui-icon-triangle-2-n-s { background-position: -128px -16px; }
305
+ .ui-icon-triangle-2-e-w { background-position: -144px -16px; }
306
+ .ui-icon-arrow-1-n { background-position: 0 -32px; }
307
+ .ui-icon-arrow-1-ne { background-position: -16px -32px; }
308
+ .ui-icon-arrow-1-e { background-position: -32px -32px; }
309
+ .ui-icon-arrow-1-se { background-position: -48px -32px; }
310
+ .ui-icon-arrow-1-s { background-position: -64px -32px; }
311
+ .ui-icon-arrow-1-sw { background-position: -80px -32px; }
312
+ .ui-icon-arrow-1-w { background-position: -96px -32px; }
313
+ .ui-icon-arrow-1-nw { background-position: -112px -32px; }
314
+ .ui-icon-arrow-2-n-s { background-position: -128px -32px; }
315
+ .ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
316
+ .ui-icon-arrow-2-e-w { background-position: -160px -32px; }
317
+ .ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
318
+ .ui-icon-arrowstop-1-n { background-position: -192px -32px; }
319
+ .ui-icon-arrowstop-1-e { background-position: -208px -32px; }
320
+ .ui-icon-arrowstop-1-s { background-position: -224px -32px; }
321
+ .ui-icon-arrowstop-1-w { background-position: -240px -32px; }
322
+ .ui-icon-arrowthick-1-n { background-position: 0 -48px; }
323
+ .ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
324
+ .ui-icon-arrowthick-1-e { background-position: -32px -48px; }
325
+ .ui-icon-arrowthick-1-se { background-position: -48px -48px; }
326
+ .ui-icon-arrowthick-1-s { background-position: -64px -48px; }
327
+ .ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
328
+ .ui-icon-arrowthick-1-w { background-position: -96px -48px; }
329
+ .ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
330
+ .ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
331
+ .ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
332
+ .ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
333
+ .ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
334
+ .ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
335
+ .ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
336
+ .ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
337
+ .ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
338
+ .ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
339
+ .ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
340
+ .ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
341
+ .ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
342
+ .ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
343
+ .ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
344
+ .ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
345
+ .ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
346
+ .ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
347
+ .ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
348
+ .ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
349
+ .ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
350
+ .ui-icon-arrow-4 { background-position: 0 -80px; }
351
+ .ui-icon-arrow-4-diag { background-position: -16px -80px; }
352
+ .ui-icon-extlink { background-position: -32px -80px; }
353
+ .ui-icon-newwin { background-position: -48px -80px; }
354
+ .ui-icon-refresh { background-position: -64px -80px; }
355
+ .ui-icon-shuffle { background-position: -80px -80px; }
356
+ .ui-icon-transfer-e-w { background-position: -96px -80px; }
357
+ .ui-icon-transferthick-e-w { background-position: -112px -80px; }
358
+ .ui-icon-folder-collapsed { background-position: 0 -96px; }
359
+ .ui-icon-folder-open { background-position: -16px -96px; }
360
+ .ui-icon-document { background-position: -32px -96px; }
361
+ .ui-icon-document-b { background-position: -48px -96px; }
362
+ .ui-icon-note { background-position: -64px -96px; }
363
+ .ui-icon-mail-closed { background-position: -80px -96px; }
364
+ .ui-icon-mail-open { background-position: -96px -96px; }
365
+ .ui-icon-suitcase { background-position: -112px -96px; }
366
+ .ui-icon-comment { background-position: -128px -96px; }
367
+ .ui-icon-person { background-position: -144px -96px; }
368
+ .ui-icon-print { background-position: -160px -96px; }
369
+ .ui-icon-trash { background-position: -176px -96px; }
370
+ .ui-icon-locked { background-position: -192px -96px; }
371
+ .ui-icon-unlocked { background-position: -208px -96px; }
372
+ .ui-icon-bookmark { background-position: -224px -96px; }
373
+ .ui-icon-tag { background-position: -240px -96px; }
374
+ .ui-icon-home { background-position: 0 -112px; }
375
+ .ui-icon-flag { background-position: -16px -112px; }
376
+ .ui-icon-calendar { background-position: -32px -112px; }
377
+ .ui-icon-cart { background-position: -48px -112px; }
378
+ .ui-icon-pencil { background-position: -64px -112px; }
379
+ .ui-icon-clock { background-position: -80px -112px; }
380
+ .ui-icon-disk { background-position: -96px -112px; }
381
+ .ui-icon-calculator { background-position: -112px -112px; }
382
+ .ui-icon-zoomin { background-position: -128px -112px; }
383
+ .ui-icon-zoomout { background-position: -144px -112px; }
384
+ .ui-icon-search { background-position: -160px -112px; }
385
+ .ui-icon-wrench { background-position: -176px -112px; }
386
+ .ui-icon-gear { background-position: -192px -112px; }
387
+ .ui-icon-heart { background-position: -208px -112px; }
388
+ .ui-icon-star { background-position: -224px -112px; }
389
+ .ui-icon-link { background-position: -240px -112px; }
390
+ .ui-icon-cancel { background-position: 0 -128px; }
391
+ .ui-icon-plus { background-position: -16px -128px; }
392
+ .ui-icon-plusthick { background-position: -32px -128px; }
393
+ .ui-icon-minus { background-position: -48px -128px; }
394
+ .ui-icon-minusthick { background-position: -64px -128px; }
395
+ .ui-icon-close { background-position: -80px -128px; }
396
+ .ui-icon-closethick { background-position: -96px -128px; }
397
+ .ui-icon-key { background-position: -112px -128px; }
398
+ .ui-icon-lightbulb { background-position: -128px -128px; }
399
+ .ui-icon-scissors { background-position: -144px -128px; }
400
+ .ui-icon-clipboard { background-position: -160px -128px; }
401
+ .ui-icon-copy { background-position: -176px -128px; }
402
+ .ui-icon-contact { background-position: -192px -128px; }
403
+ .ui-icon-image { background-position: -208px -128px; }
404
+ .ui-icon-video { background-position: -224px -128px; }
405
+ .ui-icon-script { background-position: -240px -128px; }
406
+ .ui-icon-alert { background-position: 0 -144px; }
407
+ .ui-icon-info { background-position: -16px -144px; }
408
+ .ui-icon-notice { background-position: -32px -144px; }
409
+ .ui-icon-help { background-position: -48px -144px; }
410
+ .ui-icon-check { background-position: -64px -144px; }
411
+ .ui-icon-bullet { background-position: -80px -144px; }
412
+ .ui-icon-radio-on { background-position: -96px -144px; }
413
+ .ui-icon-radio-off { background-position: -112px -144px; }
414
+ .ui-icon-pin-w { background-position: -128px -144px; }
415
+ .ui-icon-pin-s { background-position: -144px -144px; }
416
+ .ui-icon-play { background-position: 0 -160px; }
417
+ .ui-icon-pause { background-position: -16px -160px; }
418
+ .ui-icon-seek-next { background-position: -32px -160px; }
419
+ .ui-icon-seek-prev { background-position: -48px -160px; }
420
+ .ui-icon-seek-end { background-position: -64px -160px; }
421
+ .ui-icon-seek-start { background-position: -80px -160px; }
422
+ /* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
423
+ .ui-icon-seek-first { background-position: -80px -160px; }
424
+ .ui-icon-stop { background-position: -96px -160px; }
425
+ .ui-icon-eject { background-position: -112px -160px; }
426
+ .ui-icon-volume-off { background-position: -128px -160px; }
427
+ .ui-icon-volume-on { background-position: -144px -160px; }
428
+ .ui-icon-power { background-position: 0 -176px; }
429
+ .ui-icon-signal-diag { background-position: -16px -176px; }
430
+ .ui-icon-signal { background-position: -32px -176px; }
431
+ .ui-icon-battery-0 { background-position: -48px -176px; }
432
+ .ui-icon-battery-1 { background-position: -64px -176px; }
433
+ .ui-icon-battery-2 { background-position: -80px -176px; }
434
+ .ui-icon-battery-3 { background-position: -96px -176px; }
435
+ .ui-icon-circle-plus { background-position: 0 -192px; }
436
+ .ui-icon-circle-minus { background-position: -16px -192px; }
437
+ .ui-icon-circle-close { background-position: -32px -192px; }
438
+ .ui-icon-circle-triangle-e { background-position: -48px -192px; }
439
+ .ui-icon-circle-triangle-s { background-position: -64px -192px; }
440
+ .ui-icon-circle-triangle-w { background-position: -80px -192px; }
441
+ .ui-icon-circle-triangle-n { background-position: -96px -192px; }
442
+ .ui-icon-circle-arrow-e { background-position: -112px -192px; }
443
+ .ui-icon-circle-arrow-s { background-position: -128px -192px; }
444
+ .ui-icon-circle-arrow-w { background-position: -144px -192px; }
445
+ .ui-icon-circle-arrow-n { background-position: -160px -192px; }
446
+ .ui-icon-circle-zoomin { background-position: -176px -192px; }
447
+ .ui-icon-circle-zoomout { background-position: -192px -192px; }
448
+ .ui-icon-circle-check { background-position: -208px -192px; }
449
+ .ui-icon-circlesmall-plus { background-position: 0 -208px; }
450
+ .ui-icon-circlesmall-minus { background-position: -16px -208px; }
451
+ .ui-icon-circlesmall-close { background-position: -32px -208px; }
452
+ .ui-icon-squaresmall-plus { background-position: -48px -208px; }
453
+ .ui-icon-squaresmall-minus { background-position: -64px -208px; }
454
+ .ui-icon-squaresmall-close { background-position: -80px -208px; }
455
+ .ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
456
+ .ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
457
+ .ui-icon-grip-solid-vertical { background-position: -32px -224px; }
458
+ .ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
459
+ .ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
460
+ .ui-icon-grip-diagonal-se { background-position: -80px -224px; }
461
+
462
+
463
+ /* Misc visuals
464
+ ----------------------------------*/
465
+
466
+ /* Corner radius */
467
+ .ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 6px; -webkit-border-top-left-radius: 6px; -khtml-border-top-left-radius: 6px; border-top-left-radius: 6px; }
468
+ .ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 6px; -webkit-border-top-right-radius: 6px; -khtml-border-top-right-radius: 6px; border-top-right-radius: 6px; }
469
+ .ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 6px; -webkit-border-bottom-left-radius: 6px; -khtml-border-bottom-left-radius: 6px; border-bottom-left-radius: 6px; }
470
+ .ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 6px; -webkit-border-bottom-right-radius: 6px; -khtml-border-bottom-right-radius: 6px; border-bottom-right-radius: 6px; }
471
+
472
+ /* Overlays */
473
+ .ui-widget-overlay { background: #eeeeee url(images/ui-bg_diagonals-thick_90_eeeeee_40x40.png) 50% 50% repeat; opacity: .8;filter:Alpha(Opacity=80); }
474
+ .ui-widget-shadow { margin: -7px 0 0 -7px; padding: 7px; background: #000000 url(images/ui-bg_highlight-hard_70_000000_1x100.png) 50% top repeat-x; opacity: .3;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }