iqvoc 3.2.11 → 3.3.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +9 -9
- data/Gemfile.lock +108 -101
- data/{public/images/iqvoc → app/assets/images}/arrow_down.gif +0 -0
- data/{public/images/iqvoc → app/assets/images}/arrow_up.gif +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/back.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/branch.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/categ.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/categ_open.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/footer.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/go_there.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/header_long.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/iqvoc.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_end.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_end_filled.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_mid.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_mid_filled.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_nothing.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_only.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_only_filled.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_top.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/leaf_top_filled.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/nothing.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/ok.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/rdf_flyer.gif +0 -0
- data/{public/images/iqvoc → app/assets/images}/red_arrow.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/shadow.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/spinner.gif +0 -0
- data/{public/images/iqvoc → app/assets/images}/tokenizer_delete.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/tokenizer_pencile.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/tokenizer_show.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/top_01.png +0 -0
- data/{public/stylesheets/iqvoc → app/assets}/images/trunk.png +0 -0
- data/{public/images/iqvoc → app/assets/images}/unfinished.png +0 -0
- data/app/assets/javascripts/framework.js +7 -0
- data/{public/javascripts/iqvoc/entityselect.js → app/assets/javascripts/iqvoc/entityselect.js.erb} +1 -1
- data/{public/javascripts/iqvoc/application.js → app/assets/javascripts/iqvoc/iqvoc.js} +118 -1
- data/{public → app/assets}/javascripts/iqvoc/langselect.js +0 -0
- data/app/assets/javascripts/iqvoc/manifest.js +3 -0
- data/{public → app/assets}/javascripts/iqvoc/visualization.js +0 -0
- data/app/assets/javascripts/manifest.js +2 -0
- data/app/assets/stylesheets/framework.css +4 -0
- data/{public/stylesheets/iqvoc/forms.css → app/assets/stylesheets/iqvoc/forms.css.erb} +1 -1
- data/app/assets/stylesheets/iqvoc/ie_fixes.css +6 -0
- data/{public/stylesheets/iqvoc/iqvoc.css → app/assets/stylesheets/iqvoc/iqvoc.css.erb} +3 -3
- data/app/assets/stylesheets/iqvoc/manifest.css +5 -0
- data/{public → app/assets}/stylesheets/iqvoc/widgets.css +0 -0
- data/app/assets/stylesheets/manifest.css +4 -0
- data/app/controllers/collections_controller.rb +10 -4
- data/app/controllers/concepts/alphabetical_controller.rb +1 -2
- data/app/controllers/concepts/hierarchical_controller.rb +1 -1
- data/app/controllers/concepts_controller.rb +7 -6
- data/app/helpers/concepts_helper.rb +0 -1
- data/app/helpers/dashboard_helper.rb +2 -2
- data/app/models/concept/base.rb +6 -7
- data/app/models/concept/relation/base.rb +1 -1
- data/app/models/labeling/base.rb +1 -1
- data/app/models/labeling/skos/base.rb +5 -10
- data/app/models/match/base.rb +1 -1
- data/app/models/note/base.rb +1 -1
- data/app/models/user.rb +1 -0
- data/app/views/concepts/_visualization.html.erb +2 -2
- data/app/views/concepts/index.iqrdf +6 -2
- data/app/views/layouts/application.html.erb +7 -27
- data/app/views/partials/_rdf_logo.html.erb +1 -2
- data/config/application.rb +12 -3
- data/config/database.yml +21 -13
- data/config/engine.rb +6 -5
- data/config/environments/development.rb +45 -37
- data/config/environments/production.rb +45 -34
- data/config/environments/test.rb +43 -34
- data/config/initializers/iqvoc.rb +4 -8
- data/config/initializers/secret_token.rb +30 -0
- data/config/initializers/session_store.rb +1 -1
- data/config/locales/activerecord.de.yml +85 -111
- data/config/locales/activerecord.en.yml +85 -111
- data/db/iqvoc_test.sqlite3 +0 -0
- data/db/schema.rb +67 -153
- data/iqvoc.gemspec +3 -1
- data/lib/iqvoc/deep_cloning.rb +5 -5
- data/lib/iqvoc/version.rb +1 -1
- data/lib/iqvoc/versioning.rb +1 -1
- data/lib/iqvoc.rb +0 -6
- metadata +103 -369
- checksums.yaml +0 -7
- data/public/export/104047454295817920610168807659129435311.nt +0 -28
- data/public/export/10726.nt +0 -28
- data/public/export/10751365034669120987598940220863369604.nt +0 -28
- data/public/export/111691466774189666307584118743393932328.nt +0 -28
- data/public/export/12325399400132639231204595208154762660.nt +0 -28
- data/public/export/15263706163704853684442315777380853572.nt +0 -28
- data/public/export/15327.nt +0 -28
- data/public/export/15666.nt +0 -28
- data/public/export/173626129450223321263719262149444213847.nt +0 -28
- data/public/export/18948.nt +0 -28
- data/public/export/199578749544886032300136278910417855540.nt +0 -28
- data/public/export/213890660005255527251394676521741138403.nt +0 -28
- data/public/export/21930.nt +0 -28
- data/public/export/24509.nt +0 -28
- data/public/export/249458227092013520089223290936103182178.nt +0 -28
- data/public/export/271163890329327117562409702966294853312.nt +0 -28
- data/public/export/27484.nt +0 -28
- data/public/export/287251617830426667971006908766107175810.nt +0 -28
- data/public/export/28754.nt +0 -28
- data/public/export/29022.nt +0 -28
- data/public/export/293720064238755056739270868818770835353.nt +0 -28
- data/public/export/29976.nt +0 -28
- data/public/export/30643.nt +0 -28
- data/public/export/309135899928267675232062298368405782595.nt +0 -28
- data/public/export/32054.nt +0 -28
- data/public/export/327890543532187929176278243423558506722.nt +0 -28
- data/public/export/33055.nt +0 -28
- data/public/export/337748600310244218106909976567220577473.nt +0 -28
- data/public/export/33936.nt +0 -28
- data/public/export/33993.nt +0 -28
- data/public/export/34906.nt +0 -28
- data/public/export/35365.nt +0 -28
- data/public/export/37098.nt +0 -28
- data/public/export/37534146541112437090211766955764945845.nt +0 -28
- data/public/export/39353594202090916952403280275602550330.nt +0 -28
- data/public/export/41272.nt +0 -28
- data/public/export/42271.nt +0 -28
- data/public/export/44392.nt +0 -28
- data/public/export/45675.nt +0 -28
- data/public/export/47529.nt +0 -28
- data/public/export/48309.nt +0 -28
- data/public/export/4956.nt +0 -28
- data/public/export/49623.nt +0 -28
- data/public/export/50516.nt +0 -28
- data/public/export/54880.nt +0 -28
- data/public/export/55142.nt +0 -28
- data/public/export/55398.nt +0 -28
- data/public/export/5754.nt +0 -28
- data/public/export/57727.nt +0 -28
- data/public/export/58069939020968861674794480549301466954.nt +0 -28
- data/public/export/5890.nt +0 -28
- data/public/export/62809.nt +0 -28
- data/public/export/65156.nt +0 -28
- data/public/export/6520.nt +0 -28
- data/public/export/863.nt +0 -28
- data/public/export/9372.nt +0 -28
- data/public/javascripts/iqvoc/excanvas.js +0 -35
- data/public/javascripts/iqvoc/iqvoc.js +0 -118
- data/public/javascripts/iqvoc/jit_rgraph.js +0 -153
- data/public/javascripts/iqvoc/jquery-1.6.2.min.js +0 -18
- data/public/javascripts/iqvoc/jquery-treeview/changelog.txt +0 -29
- data/public/javascripts/iqvoc/jquery-treeview/demo/async.html +0 -44
- data/public/javascripts/iqvoc/jquery-treeview/demo/bg.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/demo/demo.js +0 -43
- data/public/javascripts/iqvoc/jquery-treeview/demo/images.html +0 -56
- data/public/javascripts/iqvoc/jquery-treeview/demo/index.html +0 -340
- data/public/javascripts/iqvoc/jquery-treeview/demo/large.html +0 -559
- data/public/javascripts/iqvoc/jquery-treeview/demo/prerendered.html +0 -621
- data/public/javascripts/iqvoc/jquery-treeview/demo/screen.css +0 -24
- data/public/javascripts/iqvoc/jquery-treeview/demo/simple.html +0 -82
- data/public/javascripts/iqvoc/jquery-treeview/demo/source.php +0 -87
- data/public/javascripts/iqvoc/jquery-treeview/demo/source.phps +0 -87
- data/public/javascripts/iqvoc/jquery-treeview/images/ajax-loader.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/file.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/folder-closed.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/folder.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/minus.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/plus.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-black-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-black.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-default-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-default.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-famfamfam-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-famfamfam.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-gray-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-gray.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-red-line.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/images/treeview-red.gif +0 -0
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.async.js +0 -82
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.css +0 -75
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.js +0 -251
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.min.js +0 -15
- data/public/javascripts/iqvoc/jquery-treeview/jquery.treeview.pack.js +0 -16
- data/public/javascripts/iqvoc/jquery-treeview/lib/jquery.cookie.js +0 -92
- data/public/javascripts/iqvoc/jquery-treeview/lib/jquery.js +0 -3363
- data/public/javascripts/iqvoc/jquery-treeview/todo +0 -8
- data/public/javascripts/iqvoc/jquery-ui-1.8.16.custom.js +0 -3269
- data/public/javascripts/iqvoc/jquery-ui-1.8.16.custom.min.js +0 -165
- data/public/javascripts/iqvoc/jquery-ui.datepicker-de.js +0 -22
- data/public/javascripts/iqvoc/json2.js +0 -480
- data/public/javascripts/iqvoc/rails.js +0 -132
- data/public/javascripts/iqvoc/storage.js +0 -122
- data/public/stylesheets/iqvoc/blueprint/ie.css +0 -35
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/cross.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/key.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/icons/tick.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/readme.txt +0 -32
- data/public/stylesheets/iqvoc/blueprint/plugins/buttons/screen.css +0 -97
- data/public/stylesheets/iqvoc/blueprint/plugins/fancy-type/readme.txt +0 -14
- data/public/stylesheets/iqvoc/blueprint/plugins/fancy-type/screen.css +0 -71
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/doc.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/email.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/external.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/feed.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/im.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/pdf.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/visited.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/icons/xls.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/readme.txt +0 -18
- data/public/stylesheets/iqvoc/blueprint/plugins/link-icons/screen.css +0 -40
- data/public/stylesheets/iqvoc/blueprint/plugins/rtl/readme.txt +0 -10
- data/public/stylesheets/iqvoc/blueprint/plugins/rtl/screen.css +0 -110
- data/public/stylesheets/iqvoc/blueprint/print.css +0 -29
- data/public/stylesheets/iqvoc/blueprint/screen.css +0 -258
- data/public/stylesheets/iqvoc/blueprint/src/forms.css +0 -65
- data/public/stylesheets/iqvoc/blueprint/src/grid.css +0 -280
- data/public/stylesheets/iqvoc/blueprint/src/grid.png +0 -0
- data/public/stylesheets/iqvoc/blueprint/src/ie.css +0 -76
- data/public/stylesheets/iqvoc/blueprint/src/print.css +0 -85
- data/public/stylesheets/iqvoc/blueprint/src/reset.css +0 -45
- data/public/stylesheets/iqvoc/blueprint/src/typography.css +0 -106
- data/public/stylesheets/iqvoc/images/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_flat_55_fbec88_40x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_75_d0e5f5_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_85_dfeffc_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_glass_95_fef1ec_1x400.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_gloss-wave_55_5c9ccc_500x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_inset-hard_100_f5f8f9_1x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-bg_inset-hard_100_fcfdfd_1x100.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_217bc0_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_2e83ff_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_469bdd_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_6da8d5_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_cd0a0a_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_d8e7f3_256x240.png +0 -0
- data/public/stylesheets/iqvoc/images/ui-icons_f9bd01_256x240.png +0 -0
- data/public/stylesheets/iqvoc/jquery-ui-1.8.16.custom.css +0 -410
- data/public/uploads/import/038dd516e01fe211375441c3af8d90e8.nt +0 -259
- data/public/uploads/import/07e71ca0235e798be39acd246114d962.nt +0 -259
- data/public/uploads/import/0a4c173bc9db7a5cd469c9454fdfa749.nt +0 -259
- data/public/uploads/import/0e8336cb2ef2c8b67767dfe8879d9cfb.nt +0 -259
- data/public/uploads/import/0f4eb8cd6390b1c5c5354a22e533ee0e.nt +0 -259
- data/public/uploads/import/105400714d68d2207209e23826345e76.nt +0 -259
- data/public/uploads/import/1147ab054ce55abf0a5bf93b99220231.nt +0 -259
- data/public/uploads/import/14b64b1f2252aba1e89d83f770d14e29.nt +0 -259
- data/public/uploads/import/1c6f11c300224248bf919885f8545daf.nt +0 -259
- data/public/uploads/import/21d34b65ef0a8156111e845992fd004f.nt +0 -259
- data/public/uploads/import/2783fade523132942999836a74228d64.nt +0 -259
- data/public/uploads/import/2bc90e07e5c42e5f26a1607756cc0ab3.nt +0 -259
- data/public/uploads/import/2e4073a94eeae98095de9f43b5e5774a.nt +0 -259
- data/public/uploads/import/32548678e7d47b3e256590d6eef6fb03.nt +0 -259
- data/public/uploads/import/330e08c32fde94fb80f656346d1f8383.nt +0 -259
- data/public/uploads/import/337790be2663214e66066b1215fdd137.nt +0 -259
- data/public/uploads/import/34b77ff970ca71511fb4b224b7dadd1c.nt +0 -259
- data/public/uploads/import/38de0d3c9cba92e8a3c312e7e95e7ec1.nt +0 -259
- data/public/uploads/import/3981aa91cf22e26fbf6b1312b2bcdcc8.nt +0 -259
- data/public/uploads/import/3d01f84539a62ebe6f76124e8cdbbb23.nt +0 -259
- data/public/uploads/import/3d05bb72c3751da3830cf53e966283d4.nt +0 -259
- data/public/uploads/import/3e1d2f770bfe3c79a367780731536a3a.nt +0 -259
- data/public/uploads/import/3e41bd1875dc23401278c73bd12be881.nt +0 -259
- data/public/uploads/import/3f3e3dbb09c3df6bfaed261311de3e7d.nt +0 -259
- data/public/uploads/import/4297d9970e47be5ced4991a083032eb9.nt +0 -259
- data/public/uploads/import/5925186958bd537ad5e79e76e3a1f714.nt +0 -259
- data/public/uploads/import/5dc5dcd978db1c59ec074e9137f0109c.nt +0 -259
- data/public/uploads/import/5e46663e7e2eb92e5e8846d7c0f8e713.nt +0 -259
- data/public/uploads/import/70022a2a7e808000dc3d55529d203480.nt +0 -259
- data/public/uploads/import/70b32583acaca5843ac7dbdc2a89de99.nt +0 -259
- data/public/uploads/import/8030e54313e2c7231c4c30cd4145d576.nt +0 -259
- data/public/uploads/import/8bb6484a9eb0c3266274c08ad8500669.nt +0 -259
- data/public/uploads/import/90711ea002f6b7b4e5476e414e185603.nt +0 -259
- data/public/uploads/import/918a5fc2c8fcdbaddc2a02588d599dcf.nt +0 -259
- data/public/uploads/import/923f9ebccb7b0e9e9fafddc60750b989.nt +0 -259
- data/public/uploads/import/933e4e2baee4d91b8f7681fa4d2ad9fa.nt +0 -259
- data/public/uploads/import/93f642eacd966c98645345d2ccdf578d.nt +0 -259
- data/public/uploads/import/9a3d0f8d1872d4ba5dd281194ddea4a2.nt +0 -259
- data/public/uploads/import/9a3f1c9de8e734b7e1d969d07ea57a83.nt +0 -259
- data/public/uploads/import/9f91263fee5275ecbf303c7da0a9e84d.nt +0 -259
- data/public/uploads/import/9f9d6b4293be8def1b406156a3e2bcd9.nt +0 -259
- data/public/uploads/import/a230b36c3666a6b16fec6283e99b221f.nt +0 -259
- data/public/uploads/import/a51b35089dc096f0f1f5d5250edb8d5c.nt +0 -259
- data/public/uploads/import/a5265a00946627588ecdac317c061c6c.nt +0 -259
- data/public/uploads/import/a95b7d93b7483116ff13c894a46b5c1c.nt +0 -259
- data/public/uploads/import/b5e47ea582afb81341f7b7084cc17a06.nt +0 -259
- data/public/uploads/import/b826bcfad8f18294a425d65482c46033.nt +0 -259
- data/public/uploads/import/bcf18c9e4dbe72745f4ec2878a4b1690.nt +0 -259
- data/public/uploads/import/c32855cb4b3e8616db2ef3f5f9cb5ca7.nt +0 -259
- data/public/uploads/import/c8ee5bc696312468c4354bad6c583321.nt +0 -259
- data/public/uploads/import/cfc73574fe398be7ce684fbc17aa1bb7.nt +0 -259
- data/public/uploads/import/d2366992f6e9e4377d02fc691fc2d3d3.nt +0 -259
- data/public/uploads/import/dc14a0fa30c105a5770da2c960daaf29.nt +0 -259
- data/public/uploads/import/e9289f6f920cf44d0e81599410b39090.nt +0 -259
- data/public/uploads/import/ed1c212d4f320e414caacda7a7988f83.nt +0 -259
- data/public/uploads/import/ed460af60bf4d0884d37a86bb02411e7.nt +0 -259
- data/public/uploads/import/f17024adf37be768041307528e848bd6.nt +0 -259
- data/public/uploads/import/f2f6025f6de90ee4609c2928a817c51d.nt +0 -259
- data/public/uploads/import/f427507b1c208ddf69204ea5414e5d18.nt +0 -259
- data/public/uploads/import/ffce91887b3ac5b7319a80926ff310ef.nt +0 -259
- data/public/uploads/tmp/1417625624-7926-3861/hobbies.nt +0 -259
- data/public/uploads/tmp/1417625658-7975-5171/hobbies.nt +0 -259
- data/public/uploads/tmp/1418649743-7886-1510/hobbies.nt +0 -259
- data/public/uploads/tmp/1418653029-9019-1572/hobbies.nt +0 -259
- data/public/uploads/tmp/1418656093-9614-5971/hobbies.nt +0 -259
- data/public/uploads/tmp/1418659992-10218-8665/hobbies.nt +0 -259
- data/public/uploads/tmp/1418664440-11199-8740/hobbies.nt +0 -259
- data/public/uploads/tmp/1418665022-11430-9919/hobbies.nt +0 -259
- data/public/uploads/tmp/1418665225-11485-5805/hobbies.nt +0 -259
- data/public/uploads/tmp/1418665744-11777-4958/hobbies.nt +0 -259
- data/public/uploads/tmp/1418666103-11837-9818/hobbies.nt +0 -259
- data/public/uploads/tmp/1418666157-11880-9002/hobbies.nt +0 -259
- data/public/uploads/tmp/1418666292-11920-9076/hobbies.nt +0 -259
- data/public/uploads/tmp/1418666482-11968-5799/hobbies.nt +0 -259
- data/public/uploads/tmp/1418666589-12006-6137/hobbies.nt +0 -259
- data/public/uploads/tmp/1419417707-62741-8601/hobbies.nt +0 -259
- data/public/uploads/tmp/1419418501-62977-9798/hobbies.nt +0 -259
- data/public/uploads/tmp/1419419091-63178-5200/hobbies.nt +0 -259
- data/public/uploads/tmp/1419845421-37940-7338/hobbies.nt +0 -259
- data/public/uploads/tmp/1419872019-93309-7785/hobbies.nt +0 -259
- data/public/uploads/tmp/1419872459-93489-7475/hobbies.nt +0 -259
- data/public/uploads/tmp/1420204292-55473-2339/hobbies.nt +0 -259
- data/public/uploads/tmp/1420469113-94913-1977/hobbies.nt +0 -259
- data/public/uploads/tmp/1420469218-94957-7818/hobbies.nt +0 -259
- data/public/uploads/tmp/1420471310-95437-1840/hobbies.nt +0 -259
- data/public/uploads/tmp/1420475764-97681-5693/hobbies.nt +0 -259
- data/public/uploads/tmp/1420475937-97729-2119/hobbies.nt +0 -259
- data/public/uploads/tmp/1420476857-98058-7891/hobbies.nt +0 -259
- data/public/uploads/tmp/1420535851-99018-0174/hobbies.nt +0 -259
- data/public/uploads/tmp/1420536204-1785-0172/hobbies.nt +0 -259
- data/public/uploads/tmp/1420551687-4559-4581/hobbies.nt +0 -259
- data/public/uploads/tmp/1420553228-5060-8398/hobbies.nt +0 -259
- data/public/uploads/tmp/1420554138-5330-1218/hobbies.nt +0 -259
- data/public/uploads/tmp/1420623682-11549-0730/hobbies.nt +0 -259
- data/public/uploads/tmp/1420627830-12489-1669/hobbies.nt +0 -259
- data/public/uploads/tmp/1420643849-18200-3932/hobbies.nt +0 -259
- data/public/uploads/tmp/1420649772-21728-5542/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708117-27095-8292/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708387-27223-6774/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708470-27267-7475/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708517-27294-4695/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708539-27319-1354/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708586-27334-3786/hobbies.nt +0 -259
- data/public/uploads/tmp/1420708992-27418-8019/hobbies.nt +0 -259
- data/public/uploads/tmp/1420709221-27495-1252/hobbies.nt +0 -259
- data/public/uploads/tmp/1420709888-27667-9904/hobbies.nt +0 -259
- data/public/uploads/tmp/1420710092-27729-5735/hobbies.nt +0 -259
- data/public/uploads/tmp/1420710448-27814-7190/hobbies.nt +0 -259
- data/public/uploads/tmp/1420710886-27909-4558/hobbies.nt +0 -259
- data/public/uploads/tmp/1420711474-28046-6914/hobbies.nt +0 -259
- data/public/uploads/tmp/1420711601-28081-0714/hobbies.nt +0 -259
- data/public/uploads/tmp/1420711904-28153-8591/hobbies.nt +0 -259
- data/public/uploads/tmp/1420712160-28240-2054/hobbies.nt +0 -259
- data/public/uploads/tmp/1420712349-28303-3685/hobbies.nt +0 -259
- data/public/uploads/tmp/1420712756-28475-0893/hobbies.nt +0 -259
- data/public/uploads/tmp/1420712995-28567-4743/hobbies.nt +0 -259
- data/public/uploads/tmp/1420722946-31448-5312/hobbies.nt +0 -259
- data/public/uploads/tmp/1420723021-31498-6069/hobbies.nt +0 -259
- data/public/uploads/tmp/1420723172-31541-4390/hobbies.nt +0 -259
- data/public/uploads/tmp/1420723249-31574-6508/hobbies.nt +0 -259
@@ -1,410 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* jQuery UI CSS Framework 1.8.16
|
3
|
-
*
|
4
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
5
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
6
|
-
* http://jquery.org/license
|
7
|
-
*
|
8
|
-
* http://docs.jquery.com/UI/Theming/API
|
9
|
-
*/
|
10
|
-
|
11
|
-
/* Layout helpers
|
12
|
-
----------------------------------*/
|
13
|
-
.ui-helper-hidden { display: none; }
|
14
|
-
.ui-helper-hidden-accessible { position: absolute !important; clip: rect(1px 1px 1px 1px); clip: rect(1px,1px,1px,1px); }
|
15
|
-
.ui-helper-reset { margin: 0; padding: 0; border: 0; outline: 0; line-height: 1.3; text-decoration: none; font-size: 100%; list-style: none; }
|
16
|
-
.ui-helper-clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
|
17
|
-
.ui-helper-clearfix { display: inline-block; }
|
18
|
-
/* required comment for clearfix to work in Opera \*/
|
19
|
-
* html .ui-helper-clearfix { height:1%; }
|
20
|
-
.ui-helper-clearfix { display:block; }
|
21
|
-
/* end clearfix */
|
22
|
-
.ui-helper-zfix { width: 100%; height: 100%; top: 0; left: 0; position: absolute; opacity: 0; filter:Alpha(Opacity=0); }
|
23
|
-
|
24
|
-
|
25
|
-
/* Interaction Cues
|
26
|
-
----------------------------------*/
|
27
|
-
.ui-state-disabled { cursor: default !important; }
|
28
|
-
|
29
|
-
|
30
|
-
/* Icons
|
31
|
-
----------------------------------*/
|
32
|
-
|
33
|
-
/* states and images */
|
34
|
-
.ui-icon { display: block; text-indent: -99999px; overflow: hidden; background-repeat: no-repeat; }
|
35
|
-
|
36
|
-
|
37
|
-
/* Misc visuals
|
38
|
-
----------------------------------*/
|
39
|
-
|
40
|
-
/* Overlays */
|
41
|
-
.ui-widget-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
|
42
|
-
|
43
|
-
|
44
|
-
/*
|
45
|
-
* jQuery UI CSS Framework 1.8.16
|
46
|
-
*
|
47
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
48
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
49
|
-
* http://jquery.org/license
|
50
|
-
*
|
51
|
-
* http://docs.jquery.com/UI/Theming/API
|
52
|
-
*
|
53
|
-
* To view and modify this theme, visit http://jqueryui.com/themeroller/?ffDefault=Lucida%20Grande,%20Lucida%20Sans,%20Arial,%20sans-serif&fwDefault=bold&fsDefault=1.1em&cornerRadius=5px&bgColorHeader=5c9ccc&bgTextureHeader=12_gloss_wave.png&bgImgOpacityHeader=55&borderColorHeader=4297d7&fcHeader=ffffff&iconColorHeader=d8e7f3&bgColorContent=fcfdfd&bgTextureContent=06_inset_hard.png&bgImgOpacityContent=100&borderColorContent=a6c9e2&fcContent=222222&iconColorContent=469bdd&bgColorDefault=dfeffc&bgTextureDefault=02_glass.png&bgImgOpacityDefault=85&borderColorDefault=c5dbec&fcDefault=2e6e9e&iconColorDefault=6da8d5&bgColorHover=d0e5f5&bgTextureHover=02_glass.png&bgImgOpacityHover=75&borderColorHover=79b7e7&fcHover=1d5987&iconColorHover=217bc0&bgColorActive=f5f8f9&bgTextureActive=06_inset_hard.png&bgImgOpacityActive=100&borderColorActive=79b7e7&fcActive=e17009&iconColorActive=f9bd01&bgColorHighlight=fbec88&bgTextureHighlight=01_flat.png&bgImgOpacityHighlight=55&borderColorHighlight=fad42e&fcHighlight=363636&iconColorHighlight=2e83ff&bgColorError=fef1ec&bgTextureError=02_glass.png&bgImgOpacityError=95&borderColorError=cd0a0a&fcError=cd0a0a&iconColorError=cd0a0a&bgColorOverlay=aaaaaa&bgTextureOverlay=01_flat.png&bgImgOpacityOverlay=0&opacityOverlay=30&bgColorShadow=aaaaaa&bgTextureShadow=01_flat.png&bgImgOpacityShadow=0&opacityShadow=30&thicknessShadow=8px&offsetTopShadow=-8px&offsetLeftShadow=-8px&cornerRadiusShadow=8px
|
54
|
-
*/
|
55
|
-
|
56
|
-
|
57
|
-
/* Component containers
|
58
|
-
----------------------------------*/
|
59
|
-
.ui-widget { font-family: Lucida Grande, Lucida Sans, Arial, sans-serif; font-size: 1.1em; }
|
60
|
-
.ui-widget .ui-widget { font-size: 1em; }
|
61
|
-
.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button { font-family: Lucida Grande, Lucida Sans, Arial, sans-serif; font-size: 1em; }
|
62
|
-
.ui-widget-content { border: 1px solid #a6c9e2; background: #fcfdfd url(images/ui-bg_inset-hard_100_fcfdfd_1x100.png) 50% bottom repeat-x; color: #222222; }
|
63
|
-
.ui-widget-content a { color: #222222; }
|
64
|
-
.ui-widget-header { border: 1px solid #4297d7; background: #5c9ccc url(images/ui-bg_gloss-wave_55_5c9ccc_500x100.png) 50% 50% repeat-x; color: #ffffff; font-weight: bold; }
|
65
|
-
.ui-widget-header a { color: #ffffff; }
|
66
|
-
|
67
|
-
/* Interaction states
|
68
|
-
----------------------------------*/
|
69
|
-
.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default { border: 1px solid #c5dbec; background: #dfeffc url(images/ui-bg_glass_85_dfeffc_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #2e6e9e; }
|
70
|
-
.ui-state-default a, .ui-state-default a:link, .ui-state-default a:visited { color: #2e6e9e; text-decoration: none; }
|
71
|
-
.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 #79b7e7; background: #d0e5f5 url(images/ui-bg_glass_75_d0e5f5_1x400.png) 50% 50% repeat-x; font-weight: bold; color: #1d5987; }
|
72
|
-
.ui-state-hover a, .ui-state-hover a:hover { color: #1d5987; text-decoration: none; }
|
73
|
-
.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active { border: 1px solid #79b7e7; background: #f5f8f9 url(images/ui-bg_inset-hard_100_f5f8f9_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #e17009; }
|
74
|
-
.ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { color: #e17009; text-decoration: none; }
|
75
|
-
.ui-widget :active { outline: none; }
|
76
|
-
|
77
|
-
/* Interaction Cues
|
78
|
-
----------------------------------*/
|
79
|
-
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {border: 1px solid #fad42e; background: #fbec88 url(images/ui-bg_flat_55_fbec88_40x100.png) 50% 50% repeat-x; color: #363636; }
|
80
|
-
.ui-state-highlight a, .ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a { color: #363636; }
|
81
|
-
.ui-state-error, .ui-widget-content .ui-state-error, .ui-widget-header .ui-state-error {border: 1px solid #cd0a0a; background: #fef1ec url(images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x; color: #cd0a0a; }
|
82
|
-
.ui-state-error a, .ui-widget-content .ui-state-error a, .ui-widget-header .ui-state-error a { color: #cd0a0a; }
|
83
|
-
.ui-state-error-text, .ui-widget-content .ui-state-error-text, .ui-widget-header .ui-state-error-text { color: #cd0a0a; }
|
84
|
-
.ui-priority-primary, .ui-widget-content .ui-priority-primary, .ui-widget-header .ui-priority-primary { font-weight: bold; }
|
85
|
-
.ui-priority-secondary, .ui-widget-content .ui-priority-secondary, .ui-widget-header .ui-priority-secondary { opacity: .7; filter:Alpha(Opacity=70); font-weight: normal; }
|
86
|
-
.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled { opacity: .35; filter:Alpha(Opacity=35); background-image: none; }
|
87
|
-
|
88
|
-
/* Icons
|
89
|
-
----------------------------------*/
|
90
|
-
|
91
|
-
/* states and images */
|
92
|
-
.ui-icon { width: 16px; height: 16px; background-image: url(images/ui-icons_469bdd_256x240.png); }
|
93
|
-
.ui-widget-content .ui-icon {background-image: url(images/ui-icons_469bdd_256x240.png); }
|
94
|
-
.ui-widget-header .ui-icon {background-image: url(images/ui-icons_d8e7f3_256x240.png); }
|
95
|
-
.ui-state-default .ui-icon { background-image: url(images/ui-icons_6da8d5_256x240.png); }
|
96
|
-
.ui-state-hover .ui-icon, .ui-state-focus .ui-icon {background-image: url(images/ui-icons_217bc0_256x240.png); }
|
97
|
-
.ui-state-active .ui-icon {background-image: url(images/ui-icons_f9bd01_256x240.png); }
|
98
|
-
.ui-state-highlight .ui-icon {background-image: url(images/ui-icons_2e83ff_256x240.png); }
|
99
|
-
.ui-state-error .ui-icon, .ui-state-error-text .ui-icon {background-image: url(images/ui-icons_cd0a0a_256x240.png); }
|
100
|
-
|
101
|
-
/* positioning */
|
102
|
-
.ui-icon-carat-1-n { background-position: 0 0; }
|
103
|
-
.ui-icon-carat-1-ne { background-position: -16px 0; }
|
104
|
-
.ui-icon-carat-1-e { background-position: -32px 0; }
|
105
|
-
.ui-icon-carat-1-se { background-position: -48px 0; }
|
106
|
-
.ui-icon-carat-1-s { background-position: -64px 0; }
|
107
|
-
.ui-icon-carat-1-sw { background-position: -80px 0; }
|
108
|
-
.ui-icon-carat-1-w { background-position: -96px 0; }
|
109
|
-
.ui-icon-carat-1-nw { background-position: -112px 0; }
|
110
|
-
.ui-icon-carat-2-n-s { background-position: -128px 0; }
|
111
|
-
.ui-icon-carat-2-e-w { background-position: -144px 0; }
|
112
|
-
.ui-icon-triangle-1-n { background-position: 0 -16px; }
|
113
|
-
.ui-icon-triangle-1-ne { background-position: -16px -16px; }
|
114
|
-
.ui-icon-triangle-1-e { background-position: -32px -16px; }
|
115
|
-
.ui-icon-triangle-1-se { background-position: -48px -16px; }
|
116
|
-
.ui-icon-triangle-1-s { background-position: -64px -16px; }
|
117
|
-
.ui-icon-triangle-1-sw { background-position: -80px -16px; }
|
118
|
-
.ui-icon-triangle-1-w { background-position: -96px -16px; }
|
119
|
-
.ui-icon-triangle-1-nw { background-position: -112px -16px; }
|
120
|
-
.ui-icon-triangle-2-n-s { background-position: -128px -16px; }
|
121
|
-
.ui-icon-triangle-2-e-w { background-position: -144px -16px; }
|
122
|
-
.ui-icon-arrow-1-n { background-position: 0 -32px; }
|
123
|
-
.ui-icon-arrow-1-ne { background-position: -16px -32px; }
|
124
|
-
.ui-icon-arrow-1-e { background-position: -32px -32px; }
|
125
|
-
.ui-icon-arrow-1-se { background-position: -48px -32px; }
|
126
|
-
.ui-icon-arrow-1-s { background-position: -64px -32px; }
|
127
|
-
.ui-icon-arrow-1-sw { background-position: -80px -32px; }
|
128
|
-
.ui-icon-arrow-1-w { background-position: -96px -32px; }
|
129
|
-
.ui-icon-arrow-1-nw { background-position: -112px -32px; }
|
130
|
-
.ui-icon-arrow-2-n-s { background-position: -128px -32px; }
|
131
|
-
.ui-icon-arrow-2-ne-sw { background-position: -144px -32px; }
|
132
|
-
.ui-icon-arrow-2-e-w { background-position: -160px -32px; }
|
133
|
-
.ui-icon-arrow-2-se-nw { background-position: -176px -32px; }
|
134
|
-
.ui-icon-arrowstop-1-n { background-position: -192px -32px; }
|
135
|
-
.ui-icon-arrowstop-1-e { background-position: -208px -32px; }
|
136
|
-
.ui-icon-arrowstop-1-s { background-position: -224px -32px; }
|
137
|
-
.ui-icon-arrowstop-1-w { background-position: -240px -32px; }
|
138
|
-
.ui-icon-arrowthick-1-n { background-position: 0 -48px; }
|
139
|
-
.ui-icon-arrowthick-1-ne { background-position: -16px -48px; }
|
140
|
-
.ui-icon-arrowthick-1-e { background-position: -32px -48px; }
|
141
|
-
.ui-icon-arrowthick-1-se { background-position: -48px -48px; }
|
142
|
-
.ui-icon-arrowthick-1-s { background-position: -64px -48px; }
|
143
|
-
.ui-icon-arrowthick-1-sw { background-position: -80px -48px; }
|
144
|
-
.ui-icon-arrowthick-1-w { background-position: -96px -48px; }
|
145
|
-
.ui-icon-arrowthick-1-nw { background-position: -112px -48px; }
|
146
|
-
.ui-icon-arrowthick-2-n-s { background-position: -128px -48px; }
|
147
|
-
.ui-icon-arrowthick-2-ne-sw { background-position: -144px -48px; }
|
148
|
-
.ui-icon-arrowthick-2-e-w { background-position: -160px -48px; }
|
149
|
-
.ui-icon-arrowthick-2-se-nw { background-position: -176px -48px; }
|
150
|
-
.ui-icon-arrowthickstop-1-n { background-position: -192px -48px; }
|
151
|
-
.ui-icon-arrowthickstop-1-e { background-position: -208px -48px; }
|
152
|
-
.ui-icon-arrowthickstop-1-s { background-position: -224px -48px; }
|
153
|
-
.ui-icon-arrowthickstop-1-w { background-position: -240px -48px; }
|
154
|
-
.ui-icon-arrowreturnthick-1-w { background-position: 0 -64px; }
|
155
|
-
.ui-icon-arrowreturnthick-1-n { background-position: -16px -64px; }
|
156
|
-
.ui-icon-arrowreturnthick-1-e { background-position: -32px -64px; }
|
157
|
-
.ui-icon-arrowreturnthick-1-s { background-position: -48px -64px; }
|
158
|
-
.ui-icon-arrowreturn-1-w { background-position: -64px -64px; }
|
159
|
-
.ui-icon-arrowreturn-1-n { background-position: -80px -64px; }
|
160
|
-
.ui-icon-arrowreturn-1-e { background-position: -96px -64px; }
|
161
|
-
.ui-icon-arrowreturn-1-s { background-position: -112px -64px; }
|
162
|
-
.ui-icon-arrowrefresh-1-w { background-position: -128px -64px; }
|
163
|
-
.ui-icon-arrowrefresh-1-n { background-position: -144px -64px; }
|
164
|
-
.ui-icon-arrowrefresh-1-e { background-position: -160px -64px; }
|
165
|
-
.ui-icon-arrowrefresh-1-s { background-position: -176px -64px; }
|
166
|
-
.ui-icon-arrow-4 { background-position: 0 -80px; }
|
167
|
-
.ui-icon-arrow-4-diag { background-position: -16px -80px; }
|
168
|
-
.ui-icon-extlink { background-position: -32px -80px; }
|
169
|
-
.ui-icon-newwin { background-position: -48px -80px; }
|
170
|
-
.ui-icon-refresh { background-position: -64px -80px; }
|
171
|
-
.ui-icon-shuffle { background-position: -80px -80px; }
|
172
|
-
.ui-icon-transfer-e-w { background-position: -96px -80px; }
|
173
|
-
.ui-icon-transferthick-e-w { background-position: -112px -80px; }
|
174
|
-
.ui-icon-folder-collapsed { background-position: 0 -96px; }
|
175
|
-
.ui-icon-folder-open { background-position: -16px -96px; }
|
176
|
-
.ui-icon-document { background-position: -32px -96px; }
|
177
|
-
.ui-icon-document-b { background-position: -48px -96px; }
|
178
|
-
.ui-icon-note { background-position: -64px -96px; }
|
179
|
-
.ui-icon-mail-closed { background-position: -80px -96px; }
|
180
|
-
.ui-icon-mail-open { background-position: -96px -96px; }
|
181
|
-
.ui-icon-suitcase { background-position: -112px -96px; }
|
182
|
-
.ui-icon-comment { background-position: -128px -96px; }
|
183
|
-
.ui-icon-person { background-position: -144px -96px; }
|
184
|
-
.ui-icon-print { background-position: -160px -96px; }
|
185
|
-
.ui-icon-trash { background-position: -176px -96px; }
|
186
|
-
.ui-icon-locked { background-position: -192px -96px; }
|
187
|
-
.ui-icon-unlocked { background-position: -208px -96px; }
|
188
|
-
.ui-icon-bookmark { background-position: -224px -96px; }
|
189
|
-
.ui-icon-tag { background-position: -240px -96px; }
|
190
|
-
.ui-icon-home { background-position: 0 -112px; }
|
191
|
-
.ui-icon-flag { background-position: -16px -112px; }
|
192
|
-
.ui-icon-calendar { background-position: -32px -112px; }
|
193
|
-
.ui-icon-cart { background-position: -48px -112px; }
|
194
|
-
.ui-icon-pencil { background-position: -64px -112px; }
|
195
|
-
.ui-icon-clock { background-position: -80px -112px; }
|
196
|
-
.ui-icon-disk { background-position: -96px -112px; }
|
197
|
-
.ui-icon-calculator { background-position: -112px -112px; }
|
198
|
-
.ui-icon-zoomin { background-position: -128px -112px; }
|
199
|
-
.ui-icon-zoomout { background-position: -144px -112px; }
|
200
|
-
.ui-icon-search { background-position: -160px -112px; }
|
201
|
-
.ui-icon-wrench { background-position: -176px -112px; }
|
202
|
-
.ui-icon-gear { background-position: -192px -112px; }
|
203
|
-
.ui-icon-heart { background-position: -208px -112px; }
|
204
|
-
.ui-icon-star { background-position: -224px -112px; }
|
205
|
-
.ui-icon-link { background-position: -240px -112px; }
|
206
|
-
.ui-icon-cancel { background-position: 0 -128px; }
|
207
|
-
.ui-icon-plus { background-position: -16px -128px; }
|
208
|
-
.ui-icon-plusthick { background-position: -32px -128px; }
|
209
|
-
.ui-icon-minus { background-position: -48px -128px; }
|
210
|
-
.ui-icon-minusthick { background-position: -64px -128px; }
|
211
|
-
.ui-icon-close { background-position: -80px -128px; }
|
212
|
-
.ui-icon-closethick { background-position: -96px -128px; }
|
213
|
-
.ui-icon-key { background-position: -112px -128px; }
|
214
|
-
.ui-icon-lightbulb { background-position: -128px -128px; }
|
215
|
-
.ui-icon-scissors { background-position: -144px -128px; }
|
216
|
-
.ui-icon-clipboard { background-position: -160px -128px; }
|
217
|
-
.ui-icon-copy { background-position: -176px -128px; }
|
218
|
-
.ui-icon-contact { background-position: -192px -128px; }
|
219
|
-
.ui-icon-image { background-position: -208px -128px; }
|
220
|
-
.ui-icon-video { background-position: -224px -128px; }
|
221
|
-
.ui-icon-script { background-position: -240px -128px; }
|
222
|
-
.ui-icon-alert { background-position: 0 -144px; }
|
223
|
-
.ui-icon-info { background-position: -16px -144px; }
|
224
|
-
.ui-icon-notice { background-position: -32px -144px; }
|
225
|
-
.ui-icon-help { background-position: -48px -144px; }
|
226
|
-
.ui-icon-check { background-position: -64px -144px; }
|
227
|
-
.ui-icon-bullet { background-position: -80px -144px; }
|
228
|
-
.ui-icon-radio-off { background-position: -96px -144px; }
|
229
|
-
.ui-icon-radio-on { background-position: -112px -144px; }
|
230
|
-
.ui-icon-pin-w { background-position: -128px -144px; }
|
231
|
-
.ui-icon-pin-s { background-position: -144px -144px; }
|
232
|
-
.ui-icon-play { background-position: 0 -160px; }
|
233
|
-
.ui-icon-pause { background-position: -16px -160px; }
|
234
|
-
.ui-icon-seek-next { background-position: -32px -160px; }
|
235
|
-
.ui-icon-seek-prev { background-position: -48px -160px; }
|
236
|
-
.ui-icon-seek-end { background-position: -64px -160px; }
|
237
|
-
.ui-icon-seek-start { background-position: -80px -160px; }
|
238
|
-
/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
|
239
|
-
.ui-icon-seek-first { background-position: -80px -160px; }
|
240
|
-
.ui-icon-stop { background-position: -96px -160px; }
|
241
|
-
.ui-icon-eject { background-position: -112px -160px; }
|
242
|
-
.ui-icon-volume-off { background-position: -128px -160px; }
|
243
|
-
.ui-icon-volume-on { background-position: -144px -160px; }
|
244
|
-
.ui-icon-power { background-position: 0 -176px; }
|
245
|
-
.ui-icon-signal-diag { background-position: -16px -176px; }
|
246
|
-
.ui-icon-signal { background-position: -32px -176px; }
|
247
|
-
.ui-icon-battery-0 { background-position: -48px -176px; }
|
248
|
-
.ui-icon-battery-1 { background-position: -64px -176px; }
|
249
|
-
.ui-icon-battery-2 { background-position: -80px -176px; }
|
250
|
-
.ui-icon-battery-3 { background-position: -96px -176px; }
|
251
|
-
.ui-icon-circle-plus { background-position: 0 -192px; }
|
252
|
-
.ui-icon-circle-minus { background-position: -16px -192px; }
|
253
|
-
.ui-icon-circle-close { background-position: -32px -192px; }
|
254
|
-
.ui-icon-circle-triangle-e { background-position: -48px -192px; }
|
255
|
-
.ui-icon-circle-triangle-s { background-position: -64px -192px; }
|
256
|
-
.ui-icon-circle-triangle-w { background-position: -80px -192px; }
|
257
|
-
.ui-icon-circle-triangle-n { background-position: -96px -192px; }
|
258
|
-
.ui-icon-circle-arrow-e { background-position: -112px -192px; }
|
259
|
-
.ui-icon-circle-arrow-s { background-position: -128px -192px; }
|
260
|
-
.ui-icon-circle-arrow-w { background-position: -144px -192px; }
|
261
|
-
.ui-icon-circle-arrow-n { background-position: -160px -192px; }
|
262
|
-
.ui-icon-circle-zoomin { background-position: -176px -192px; }
|
263
|
-
.ui-icon-circle-zoomout { background-position: -192px -192px; }
|
264
|
-
.ui-icon-circle-check { background-position: -208px -192px; }
|
265
|
-
.ui-icon-circlesmall-plus { background-position: 0 -208px; }
|
266
|
-
.ui-icon-circlesmall-minus { background-position: -16px -208px; }
|
267
|
-
.ui-icon-circlesmall-close { background-position: -32px -208px; }
|
268
|
-
.ui-icon-squaresmall-plus { background-position: -48px -208px; }
|
269
|
-
.ui-icon-squaresmall-minus { background-position: -64px -208px; }
|
270
|
-
.ui-icon-squaresmall-close { background-position: -80px -208px; }
|
271
|
-
.ui-icon-grip-dotted-vertical { background-position: 0 -224px; }
|
272
|
-
.ui-icon-grip-dotted-horizontal { background-position: -16px -224px; }
|
273
|
-
.ui-icon-grip-solid-vertical { background-position: -32px -224px; }
|
274
|
-
.ui-icon-grip-solid-horizontal { background-position: -48px -224px; }
|
275
|
-
.ui-icon-gripsmall-diagonal-se { background-position: -64px -224px; }
|
276
|
-
.ui-icon-grip-diagonal-se { background-position: -80px -224px; }
|
277
|
-
|
278
|
-
|
279
|
-
/* Misc visuals
|
280
|
-
----------------------------------*/
|
281
|
-
|
282
|
-
/* Corner radius */
|
283
|
-
.ui-corner-all, .ui-corner-top, .ui-corner-left, .ui-corner-tl { -moz-border-radius-topleft: 5px; -webkit-border-top-left-radius: 5px; -khtml-border-top-left-radius: 5px; border-top-left-radius: 5px; }
|
284
|
-
.ui-corner-all, .ui-corner-top, .ui-corner-right, .ui-corner-tr { -moz-border-radius-topright: 5px; -webkit-border-top-right-radius: 5px; -khtml-border-top-right-radius: 5px; border-top-right-radius: 5px; }
|
285
|
-
.ui-corner-all, .ui-corner-bottom, .ui-corner-left, .ui-corner-bl { -moz-border-radius-bottomleft: 5px; -webkit-border-bottom-left-radius: 5px; -khtml-border-bottom-left-radius: 5px; border-bottom-left-radius: 5px; }
|
286
|
-
.ui-corner-all, .ui-corner-bottom, .ui-corner-right, .ui-corner-br { -moz-border-radius-bottomright: 5px; -webkit-border-bottom-right-radius: 5px; -khtml-border-bottom-right-radius: 5px; border-bottom-right-radius: 5px; }
|
287
|
-
|
288
|
-
/* Overlays */
|
289
|
-
.ui-widget-overlay { background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); }
|
290
|
-
.ui-widget-shadow { margin: -8px 0 0 -8px; padding: 8px; background: #aaaaaa url(images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x; opacity: .30;filter:Alpha(Opacity=30); -moz-border-radius: 8px; -khtml-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px; }/*
|
291
|
-
* jQuery UI Autocomplete 1.8.16
|
292
|
-
*
|
293
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
294
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
295
|
-
* http://jquery.org/license
|
296
|
-
*
|
297
|
-
* http://docs.jquery.com/UI/Autocomplete#theming
|
298
|
-
*/
|
299
|
-
.ui-autocomplete { position: absolute; cursor: default; }
|
300
|
-
|
301
|
-
/* workarounds */
|
302
|
-
* html .ui-autocomplete { width:1px; } /* without this, the menu expands to 100% in IE6 */
|
303
|
-
|
304
|
-
/*
|
305
|
-
* jQuery UI Menu 1.8.16
|
306
|
-
*
|
307
|
-
* Copyright 2010, AUTHORS.txt (http://jqueryui.com/about)
|
308
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
309
|
-
* http://jquery.org/license
|
310
|
-
*
|
311
|
-
* http://docs.jquery.com/UI/Menu#theming
|
312
|
-
*/
|
313
|
-
.ui-menu {
|
314
|
-
list-style:none;
|
315
|
-
padding: 2px;
|
316
|
-
margin: 0;
|
317
|
-
display:block;
|
318
|
-
float: left;
|
319
|
-
}
|
320
|
-
.ui-menu .ui-menu {
|
321
|
-
margin-top: -3px;
|
322
|
-
}
|
323
|
-
.ui-menu .ui-menu-item {
|
324
|
-
margin:0;
|
325
|
-
padding: 0;
|
326
|
-
zoom: 1;
|
327
|
-
float: left;
|
328
|
-
clear: left;
|
329
|
-
width: 100%;
|
330
|
-
}
|
331
|
-
.ui-menu .ui-menu-item a {
|
332
|
-
text-decoration:none;
|
333
|
-
display:block;
|
334
|
-
padding:.2em .4em;
|
335
|
-
line-height:1.5;
|
336
|
-
zoom:1;
|
337
|
-
}
|
338
|
-
.ui-menu .ui-menu-item a.ui-state-hover,
|
339
|
-
.ui-menu .ui-menu-item a.ui-state-active {
|
340
|
-
font-weight: normal;
|
341
|
-
margin: -1px;
|
342
|
-
}
|
343
|
-
/*
|
344
|
-
* jQuery UI Datepicker 1.8.16
|
345
|
-
*
|
346
|
-
* Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
|
347
|
-
* Dual licensed under the MIT or GPL Version 2 licenses.
|
348
|
-
* http://jquery.org/license
|
349
|
-
*
|
350
|
-
* http://docs.jquery.com/UI/Datepicker#theming
|
351
|
-
*/
|
352
|
-
.ui-datepicker { width: 17em; padding: .2em .2em 0; display: none; }
|
353
|
-
.ui-datepicker .ui-datepicker-header { position:relative; padding:.2em 0; }
|
354
|
-
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next { position:absolute; top: 2px; width: 1.8em; height: 1.8em; }
|
355
|
-
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover { top: 1px; }
|
356
|
-
.ui-datepicker .ui-datepicker-prev { left:2px; }
|
357
|
-
.ui-datepicker .ui-datepicker-next { right:2px; }
|
358
|
-
.ui-datepicker .ui-datepicker-prev-hover { left:1px; }
|
359
|
-
.ui-datepicker .ui-datepicker-next-hover { right:1px; }
|
360
|
-
.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; }
|
361
|
-
.ui-datepicker .ui-datepicker-title { margin: 0 2.3em; line-height: 1.8em; text-align: center; }
|
362
|
-
.ui-datepicker .ui-datepicker-title select { font-size:1em; margin:1px 0; }
|
363
|
-
.ui-datepicker select.ui-datepicker-month-year {width: 100%;}
|
364
|
-
.ui-datepicker select.ui-datepicker-month,
|
365
|
-
.ui-datepicker select.ui-datepicker-year { width: 49%;}
|
366
|
-
.ui-datepicker table {width: 100%; font-size: .9em; border-collapse: collapse; margin:0 0 .4em; }
|
367
|
-
.ui-datepicker th { padding: .7em .3em; text-align: center; font-weight: bold; border: 0; }
|
368
|
-
.ui-datepicker td { border: 0; padding: 1px; }
|
369
|
-
.ui-datepicker td span, .ui-datepicker td a { display: block; padding: .2em; text-align: right; text-decoration: none; }
|
370
|
-
.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; }
|
371
|
-
.ui-datepicker .ui-datepicker-buttonpane button { float: right; margin: .5em .2em .4em; cursor: pointer; padding: .2em .6em .3em .6em; width:auto; overflow:visible; }
|
372
|
-
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current { float:left; }
|
373
|
-
|
374
|
-
/* with multiple calendars */
|
375
|
-
.ui-datepicker.ui-datepicker-multi { width:auto; }
|
376
|
-
.ui-datepicker-multi .ui-datepicker-group { float:left; }
|
377
|
-
.ui-datepicker-multi .ui-datepicker-group table { width:95%; margin:0 auto .4em; }
|
378
|
-
.ui-datepicker-multi-2 .ui-datepicker-group { width:50%; }
|
379
|
-
.ui-datepicker-multi-3 .ui-datepicker-group { width:33.3%; }
|
380
|
-
.ui-datepicker-multi-4 .ui-datepicker-group { width:25%; }
|
381
|
-
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header { border-left-width:0; }
|
382
|
-
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header { border-left-width:0; }
|
383
|
-
.ui-datepicker-multi .ui-datepicker-buttonpane { clear:left; }
|
384
|
-
.ui-datepicker-row-break { clear:both; width:100%; font-size:0em; }
|
385
|
-
|
386
|
-
/* RTL support */
|
387
|
-
.ui-datepicker-rtl { direction: rtl; }
|
388
|
-
.ui-datepicker-rtl .ui-datepicker-prev { right: 2px; left: auto; }
|
389
|
-
.ui-datepicker-rtl .ui-datepicker-next { left: 2px; right: auto; }
|
390
|
-
.ui-datepicker-rtl .ui-datepicker-prev:hover { right: 1px; left: auto; }
|
391
|
-
.ui-datepicker-rtl .ui-datepicker-next:hover { left: 1px; right: auto; }
|
392
|
-
.ui-datepicker-rtl .ui-datepicker-buttonpane { clear:right; }
|
393
|
-
.ui-datepicker-rtl .ui-datepicker-buttonpane button { float: left; }
|
394
|
-
.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current { float:right; }
|
395
|
-
.ui-datepicker-rtl .ui-datepicker-group { float:right; }
|
396
|
-
.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
397
|
-
.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header { border-right-width:0; border-left-width:1px; }
|
398
|
-
|
399
|
-
/* IE6 IFRAME FIX (taken from datepicker 1.5.3 */
|
400
|
-
.ui-datepicker-cover {
|
401
|
-
display: none; /*sorry for IE5*/
|
402
|
-
display/**/: block; /*sorry for IE5*/
|
403
|
-
position: absolute; /*must have*/
|
404
|
-
z-index: -1; /*must have*/
|
405
|
-
filter: mask(); /*must have*/
|
406
|
-
top: -4px; /*must have*/
|
407
|
-
left: -4px; /*must have*/
|
408
|
-
width: 200px; /*must have*/
|
409
|
-
height: 200px; /*must have*/
|
410
|
-
}
|