stylish 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +7 -10
- data/ARCHITECTURE.md +96 -0
- data/Gemfile +8 -0
- data/README.md +25 -29
- data/Rakefile +24 -0
- data/bin/stylish +33 -0
- data/lib/stylish.rb +36 -1
- data/lib/stylish/configuration.rb +37 -0
- data/lib/stylish/core_ext.rb +20 -0
- data/lib/stylish/developer.rb +13 -0
- data/lib/stylish/developer/config.rb +19 -0
- data/lib/stylish/developer/environment.rb +75 -0
- data/lib/stylish/developer/listing.rb +85 -0
- data/lib/stylish/developer/model_delegator.rb +51 -0
- data/lib/stylish/developer/modification.rb +139 -0
- data/lib/stylish/developer/path.rb +168 -0
- data/lib/stylish/developer/route.rb +97 -0
- data/lib/stylish/developer/server.rb +40 -0
- data/lib/stylish/engine.rb +12 -0
- data/lib/stylish/fs.rb +59 -0
- data/lib/stylish/manifest.rb +100 -0
- data/lib/stylish/models.rb +119 -0
- data/lib/stylish/models/component.rb +19 -0
- data/lib/stylish/models/layout.rb +19 -0
- data/lib/stylish/models/library.rb +134 -0
- data/lib/stylish/models/package.rb +156 -0
- data/lib/stylish/models/script.rb +10 -0
- data/lib/stylish/models/stylesheet.rb +9 -0
- data/lib/stylish/models/template.rb +9 -0
- data/lib/stylish/models/theme.rb +8 -0
- data/lib/stylish/util.rb +20 -0
- data/lib/stylish/version.rb +1 -1
- data/library/config.json +4 -0
- data/library/second-theme/manifest.json +8 -0
- data/library/second-theme/manifest.yml +6 -0
- data/library/second-theme/templates/footers/footer-01.html +3 -0
- data/library/second-theme/templates/footers/footer-02.html +3 -0
- data/library/second-theme/templates/headers/header-01.html +3 -0
- data/library/second-theme/templates/headers/header-02.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/components/footers/footer-01.json +5 -0
- data/library/test-theme/components/footers/footer-02.json +5 -0
- data/library/test-theme/components/headers/header-01.json +5 -0
- data/library/test-theme/components/headers/header-02.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/library/test-theme/manifest.json +8 -0
- data/library/test-theme/manifest.yml +6 -0
- data/library/test-theme/pages/page-01.json +11 -0
- data/library/test-theme/templates/footers/footer-01.html +3 -0
- data/library/test-theme/templates/footers/footer-02.html +3 -0
- data/library/test-theme/templates/headers/header-01.html +3 -0
- data/library/test-theme/templates/headers/header-02.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/templates/layouts/standard-layout.html +10 -0
- data/spec/acceptance/listing_assets_spec.rb +20 -0
- data/spec/acceptance/model_browsing_spec.rb +21 -0
- data/spec/acceptance/model_creation_spec.rb +16 -0
- data/spec/acceptance/model_deleting_spec.rb +10 -0
- data/spec/acceptance/model_updating_spec.rb +12 -0
- data/spec/acceptance/modifying_assets_spec.rb +50 -0
- data/spec/acceptance/server_info_spec.rb +10 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/javascripts/test.coffee +4 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/assets/stylesheets/test.css.scss +6 -0
- data/spec/dummy/app/assets/stylesheets/writable/existing.scss.css +0 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +30 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +82 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/migrate/20140822065900_create_books.rb +11 -0
- data/spec/dummy/db/migrate/20140822065916_create_authors.rb +9 -0
- data/spec/dummy/db/migrate/20140824215902_create_users.rb +10 -0
- data/spec/dummy/db/migrate/20140826193259_create_libraries.rb +10 -0
- data/spec/dummy/db/schema.rb +37 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/fixtures/config.json +3 -0
- data/spec/fixtures/test-theme/components/footers/footer-01.json +5 -0
- data/spec/fixtures/test-theme/components/footers/footer-02.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-01.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-02.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/spec/fixtures/test-theme/manifest.json +8 -0
- data/spec/fixtures/test-theme/manifest.yml +6 -0
- data/spec/fixtures/test-theme/pages/page-01.json +11 -0
- data/spec/fixtures/test-theme/templates/footers/footer-01.html +3 -0
- data/spec/fixtures/test-theme/templates/footers/footer-02.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-01.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-02.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/spec/fixtures/test-theme/templates/layouts/standard-01.html +9 -0
- data/spec/lib/stylish/configuration_spec.rb +8 -0
- data/spec/lib/stylish/developer/path_spec.rb +36 -0
- data/spec/lib/stylish/developer/route_spec.rb +5 -0
- data/spec/lib/stylish/manifest_spec.rb +48 -0
- data/spec/lib/stylish/models/library_spec.rb +38 -0
- data/spec/lib/stylish/models/package_spec.rb +35 -0
- data/spec/lib/stylish/models_spec.rb +12 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/support/json_helper.rb +7 -0
- data/spec/test.css.scss +6 -0
- data/stylish.gemspec +17 -2
- data/support/editor-app/.gitignore +2 -0
- data/support/editor-app/development/bower.json +9 -0
- data/support/editor-app/development/package.json +28 -0
- data/support/editor-app/development/semantic/components/accordion.css +257 -0
- data/support/editor-app/development/semantic/components/accordion.js +558 -0
- data/support/editor-app/development/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/development/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/development/semantic/components/ad.css +277 -0
- data/support/editor-app/development/semantic/components/ad.min.css +11 -0
- data/support/editor-app/development/semantic/components/api.js +851 -0
- data/support/editor-app/development/semantic/components/api.min.js +11 -0
- data/support/editor-app/development/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/development/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/development/semantic/components/button.css +2391 -0
- data/support/editor-app/development/semantic/components/button.min.css +11 -0
- data/support/editor-app/development/semantic/components/card.css +758 -0
- data/support/editor-app/development/semantic/components/card.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.css +514 -0
- data/support/editor-app/development/semantic/components/checkbox.js +507 -0
- data/support/editor-app/development/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/development/semantic/components/comment.css +260 -0
- data/support/editor-app/development/semantic/components/comment.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.css +187 -0
- data/support/editor-app/development/semantic/components/dimmer.js +627 -0
- data/support/editor-app/development/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/development/semantic/components/divider.css +244 -0
- data/support/editor-app/development/semantic/components/divider.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/development/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/development/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/development/semantic/components/feed.css +277 -0
- data/support/editor-app/development/semantic/components/feed.min.css +11 -0
- data/support/editor-app/development/semantic/components/flag.css +1017 -0
- data/support/editor-app/development/semantic/components/flag.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.css +875 -0
- data/support/editor-app/development/semantic/components/form.js +1039 -0
- data/support/editor-app/development/semantic/components/form.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.min.js +11 -0
- data/support/editor-app/development/semantic/components/grid.css +1816 -0
- data/support/editor-app/development/semantic/components/grid.min.css +11 -0
- data/support/editor-app/development/semantic/components/header.css +572 -0
- data/support/editor-app/development/semantic/components/header.min.css +11 -0
- data/support/editor-app/development/semantic/components/icon.css +2127 -0
- data/support/editor-app/development/semantic/components/icon.min.css +11 -0
- data/support/editor-app/development/semantic/components/image.css +275 -0
- data/support/editor-app/development/semantic/components/image.min.css +11 -0
- data/support/editor-app/development/semantic/components/input.css +455 -0
- data/support/editor-app/development/semantic/components/input.min.css +11 -0
- data/support/editor-app/development/semantic/components/item.css +458 -0
- data/support/editor-app/development/semantic/components/item.min.css +11 -0
- data/support/editor-app/development/semantic/components/label.css +930 -0
- data/support/editor-app/development/semantic/components/label.min.css +11 -0
- data/support/editor-app/development/semantic/components/list.css +879 -0
- data/support/editor-app/development/semantic/components/list.min.css +11 -0
- data/support/editor-app/development/semantic/components/loader.css +279 -0
- data/support/editor-app/development/semantic/components/loader.min.css +11 -0
- data/support/editor-app/development/semantic/components/menu.css +1596 -0
- data/support/editor-app/development/semantic/components/menu.min.css +11 -0
- data/support/editor-app/development/semantic/components/message.css +422 -0
- data/support/editor-app/development/semantic/components/message.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.css +431 -0
- data/support/editor-app/development/semantic/components/modal.js +860 -0
- data/support/editor-app/development/semantic/components/modal.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.min.js +11 -0
- data/support/editor-app/development/semantic/components/nag.css +149 -0
- data/support/editor-app/development/semantic/components/nag.js +477 -0
- data/support/editor-app/development/semantic/components/nag.min.css +11 -0
- data/support/editor-app/development/semantic/components/nag.min.js +11 -0
- data/support/editor-app/development/semantic/components/popup.css +294 -0
- data/support/editor-app/development/semantic/components/popup.js +1187 -0
- data/support/editor-app/development/semantic/components/popup.min.css +11 -0
- data/support/editor-app/development/semantic/components/popup.min.js +11 -0
- data/support/editor-app/development/semantic/components/progress.css +449 -0
- data/support/editor-app/development/semantic/components/progress.js +785 -0
- data/support/editor-app/development/semantic/components/progress.min.css +11 -0
- data/support/editor-app/development/semantic/components/progress.min.js +11 -0
- data/support/editor-app/development/semantic/components/rail.css +125 -0
- data/support/editor-app/development/semantic/components/rail.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.css +262 -0
- data/support/editor-app/development/semantic/components/rating.js +451 -0
- data/support/editor-app/development/semantic/components/rating.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.min.js +11 -0
- data/support/editor-app/development/semantic/components/reset.css +430 -0
- data/support/editor-app/development/semantic/components/reset.min.css +11 -0
- data/support/editor-app/development/semantic/components/reveal.css +294 -0
- data/support/editor-app/development/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.css +330 -0
- data/support/editor-app/development/semantic/components/search.js +1055 -0
- data/support/editor-app/development/semantic/components/search.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.min.js +11 -0
- data/support/editor-app/development/semantic/components/segment.css +590 -0
- data/support/editor-app/development/semantic/components/segment.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.css +155 -0
- data/support/editor-app/development/semantic/components/shape.js +830 -0
- data/support/editor-app/development/semantic/components/shape.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.min.js +11 -0
- data/support/editor-app/development/semantic/components/sidebar.css +621 -0
- data/support/editor-app/development/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/development/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/development/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/development/semantic/components/site.css +147 -0
- data/support/editor-app/development/semantic/components/site.js +487 -0
- data/support/editor-app/development/semantic/components/site.min.css +11 -0
- data/support/editor-app/development/semantic/components/site.min.js +11 -0
- data/support/editor-app/development/semantic/components/state.js +690 -0
- data/support/editor-app/development/semantic/components/state.min.js +11 -0
- data/support/editor-app/development/semantic/components/statistic.css +410 -0
- data/support/editor-app/development/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/development/semantic/components/step.css +433 -0
- data/support/editor-app/development/semantic/components/step.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.css +80 -0
- data/support/editor-app/development/semantic/components/sticky.js +775 -0
- data/support/editor-app/development/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/development/semantic/components/tab.css +93 -0
- data/support/editor-app/development/semantic/components/tab.js +787 -0
- data/support/editor-app/development/semantic/components/tab.min.css +11 -0
- data/support/editor-app/development/semantic/components/tab.min.js +11 -0
- data/support/editor-app/development/semantic/components/table.css +999 -0
- data/support/editor-app/development/semantic/components/table.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.css +2152 -0
- data/support/editor-app/development/semantic/components/transition.js +936 -0
- data/support/editor-app/development/semantic/components/transition.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.min.js +11 -0
- data/support/editor-app/development/semantic/components/video.css +126 -0
- data/support/editor-app/development/semantic/components/video.js +540 -0
- data/support/editor-app/development/semantic/components/video.min.css +11 -0
- data/support/editor-app/development/semantic/components/video.min.js +11 -0
- data/support/editor-app/development/semantic/components/visibility.js +970 -0
- data/support/editor-app/development/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/development/semantic/semantic.css +31768 -0
- data/support/editor-app/development/semantic/semantic.js +18317 -0
- data/support/editor-app/development/semantic/semantic.min.css +11 -0
- data/support/editor-app/development/semantic/semantic.min.js +17 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/development/src/apis/index.coffee +35 -0
- data/support/editor-app/development/src/components/editor.cjsx +58 -0
- data/support/editor-app/development/src/components/editor_drawer.cjsx +7 -0
- data/support/editor-app/development/src/components/header.cjsx +12 -0
- data/support/editor-app/development/src/components/index.coffee +9 -0
- data/support/editor-app/development/src/components/menus/icon_grid.cjsx +0 -0
- data/support/editor-app/development/src/components/sidebar.cjsx +24 -0
- data/support/editor-app/development/src/components/tiled_grid.cjsx +35 -0
- data/support/editor-app/development/src/index.cjsx +82 -0
- data/support/editor-app/development/src/lib/util.coffee +48 -0
- data/support/editor-app/development/src/pages/home.cjsx +46 -0
- data/support/editor-app/development/src/pages/index.coffee +6 -0
- data/support/editor-app/development/src/pages/package_details.cjsx +55 -0
- data/support/editor-app/development/src/registry.coffee +35 -0
- data/support/editor-app/development/src/styles/components/tiled_grid.css.scss +5 -0
- data/support/editor-app/development/src/styles/index.css.scss +240 -0
- data/support/editor-app/development/src/sugar.cjsx +126 -0
- data/support/editor-app/development/webpack.config.js +53 -0
- data/support/editor-app/dist/base.css +0 -0
- data/support/editor-app/dist/toolit.js +62 -0
- data/support/editor-app/dist/toolkit.js +44573 -0
- data/support/editor-app/index.html +50 -0
- data/support/editor-app/package.json +15 -0
- data/support/editor-app/semantic/components/accordion.css +257 -0
- data/support/editor-app/semantic/components/accordion.js +558 -0
- data/support/editor-app/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/semantic/components/ad.css +277 -0
- data/support/editor-app/semantic/components/ad.min.css +11 -0
- data/support/editor-app/semantic/components/api.js +851 -0
- data/support/editor-app/semantic/components/api.min.js +11 -0
- data/support/editor-app/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/semantic/components/button.css +2391 -0
- data/support/editor-app/semantic/components/button.min.css +11 -0
- data/support/editor-app/semantic/components/card.css +758 -0
- data/support/editor-app/semantic/components/card.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.css +514 -0
- data/support/editor-app/semantic/components/checkbox.js +507 -0
- data/support/editor-app/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/semantic/components/comment.css +260 -0
- data/support/editor-app/semantic/components/comment.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.css +187 -0
- data/support/editor-app/semantic/components/dimmer.js +627 -0
- data/support/editor-app/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/semantic/components/divider.css +244 -0
- data/support/editor-app/semantic/components/divider.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/semantic/components/feed.css +277 -0
- data/support/editor-app/semantic/components/feed.min.css +11 -0
- data/support/editor-app/semantic/components/flag.css +1017 -0
- data/support/editor-app/semantic/components/flag.min.css +11 -0
- data/support/editor-app/semantic/components/form.css +875 -0
- data/support/editor-app/semantic/components/form.js +1039 -0
- data/support/editor-app/semantic/components/form.min.css +11 -0
- data/support/editor-app/semantic/components/form.min.js +11 -0
- data/support/editor-app/semantic/components/grid.css +1816 -0
- data/support/editor-app/semantic/components/grid.min.css +11 -0
- data/support/editor-app/semantic/components/header.css +572 -0
- data/support/editor-app/semantic/components/header.min.css +11 -0
- data/support/editor-app/semantic/components/icon.css +2127 -0
- data/support/editor-app/semantic/components/icon.min.css +11 -0
- data/support/editor-app/semantic/components/image.css +275 -0
- data/support/editor-app/semantic/components/image.min.css +11 -0
- data/support/editor-app/semantic/components/input.css +455 -0
- data/support/editor-app/semantic/components/input.min.css +11 -0
- data/support/editor-app/semantic/components/item.css +458 -0
- data/support/editor-app/semantic/components/item.min.css +11 -0
- data/support/editor-app/semantic/components/label.css +930 -0
- data/support/editor-app/semantic/components/label.min.css +11 -0
- data/support/editor-app/semantic/components/list.css +879 -0
- data/support/editor-app/semantic/components/list.min.css +11 -0
- data/support/editor-app/semantic/components/loader.css +279 -0
- data/support/editor-app/semantic/components/loader.min.css +11 -0
- data/support/editor-app/semantic/components/menu.css +1596 -0
- data/support/editor-app/semantic/components/menu.min.css +11 -0
- data/support/editor-app/semantic/components/message.css +422 -0
- data/support/editor-app/semantic/components/message.min.css +11 -0
- data/support/editor-app/semantic/components/modal.css +431 -0
- data/support/editor-app/semantic/components/modal.js +860 -0
- data/support/editor-app/semantic/components/modal.min.css +11 -0
- data/support/editor-app/semantic/components/modal.min.js +11 -0
- data/support/editor-app/semantic/components/nag.css +149 -0
- data/support/editor-app/semantic/components/nag.js +477 -0
- data/support/editor-app/semantic/components/nag.min.css +11 -0
- data/support/editor-app/semantic/components/nag.min.js +11 -0
- data/support/editor-app/semantic/components/popup.css +294 -0
- data/support/editor-app/semantic/components/popup.js +1187 -0
- data/support/editor-app/semantic/components/popup.min.css +11 -0
- data/support/editor-app/semantic/components/popup.min.js +11 -0
- data/support/editor-app/semantic/components/progress.css +449 -0
- data/support/editor-app/semantic/components/progress.js +785 -0
- data/support/editor-app/semantic/components/progress.min.css +11 -0
- data/support/editor-app/semantic/components/progress.min.js +11 -0
- data/support/editor-app/semantic/components/rail.css +125 -0
- data/support/editor-app/semantic/components/rail.min.css +11 -0
- data/support/editor-app/semantic/components/rating.css +262 -0
- data/support/editor-app/semantic/components/rating.js +451 -0
- data/support/editor-app/semantic/components/rating.min.css +11 -0
- data/support/editor-app/semantic/components/rating.min.js +11 -0
- data/support/editor-app/semantic/components/reset.css +430 -0
- data/support/editor-app/semantic/components/reset.min.css +11 -0
- data/support/editor-app/semantic/components/reveal.css +294 -0
- data/support/editor-app/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/semantic/components/search.css +330 -0
- data/support/editor-app/semantic/components/search.js +1055 -0
- data/support/editor-app/semantic/components/search.min.css +11 -0
- data/support/editor-app/semantic/components/search.min.js +11 -0
- data/support/editor-app/semantic/components/segment.css +590 -0
- data/support/editor-app/semantic/components/segment.min.css +11 -0
- data/support/editor-app/semantic/components/shape.css +155 -0
- data/support/editor-app/semantic/components/shape.js +830 -0
- data/support/editor-app/semantic/components/shape.min.css +11 -0
- data/support/editor-app/semantic/components/shape.min.js +11 -0
- data/support/editor-app/semantic/components/sidebar.css +621 -0
- data/support/editor-app/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/semantic/components/site.css +147 -0
- data/support/editor-app/semantic/components/site.js +487 -0
- data/support/editor-app/semantic/components/site.min.css +11 -0
- data/support/editor-app/semantic/components/site.min.js +11 -0
- data/support/editor-app/semantic/components/state.js +690 -0
- data/support/editor-app/semantic/components/state.min.js +11 -0
- data/support/editor-app/semantic/components/statistic.css +410 -0
- data/support/editor-app/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/semantic/components/step.css +433 -0
- data/support/editor-app/semantic/components/step.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.css +80 -0
- data/support/editor-app/semantic/components/sticky.js +775 -0
- data/support/editor-app/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/semantic/components/tab.css +93 -0
- data/support/editor-app/semantic/components/tab.js +787 -0
- data/support/editor-app/semantic/components/tab.min.css +11 -0
- data/support/editor-app/semantic/components/tab.min.js +11 -0
- data/support/editor-app/semantic/components/table.css +999 -0
- data/support/editor-app/semantic/components/table.min.css +11 -0
- data/support/editor-app/semantic/components/transition.css +2152 -0
- data/support/editor-app/semantic/components/transition.js +936 -0
- data/support/editor-app/semantic/components/transition.min.css +11 -0
- data/support/editor-app/semantic/components/transition.min.js +11 -0
- data/support/editor-app/semantic/components/video.css +126 -0
- data/support/editor-app/semantic/components/video.js +540 -0
- data/support/editor-app/semantic/components/video.min.css +11 -0
- data/support/editor-app/semantic/components/video.min.js +11 -0
- data/support/editor-app/semantic/components/visibility.js +970 -0
- data/support/editor-app/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/semantic/semantic.css +31768 -0
- data/support/editor-app/semantic/semantic.js +18317 -0
- data/support/editor-app/semantic/semantic.min.css +11 -0
- data/support/editor-app/semantic/semantic.min.js +17 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/vendor/jquery.js +8829 -0
- data/support/library-server/Gemfile +0 -0
- data/support/library-server/config.ru +4 -0
- metadata +740 -7
@@ -0,0 +1,11 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
!function(e,t,n,a){e.fn.state=function(t){var i,o=e(this),s=o.selector||"",r=("ontouchstart"in n.documentElement,(new Date).getTime()),c=[],u=arguments[0],l="string"==typeof u,d=[].slice.call(arguments,1);return o.each(function(){var n,f=e.isPlainObject(t)?e.extend(!0,{},e.fn.state.settings,t):e.extend({},e.fn.state.settings),g=f.error,v=f.metadata,m=f.className,b=f.namespace,x=f.states,p=f.text,h="."+b,T=b+"-module",y=e(this),C=this,w=y.data(T);n={initialize:function(){n.verbose("Initializing module"),f.automatic&&n.add.defaults(),f.context&&""!==s?e(f.context).on(s,"mouseenter"+h,n.change.text).on(s,"mouseleave"+h,n.reset.text).on(s,"click"+h,n.toggle.state):y.on("mouseenter"+h,n.change.text).on("mouseleave"+h,n.reset.text).on("click"+h,n.toggle.state),n.instantiate()},instantiate:function(){n.verbose("Storing instance of module",n),w=n,y.data(T,n)},destroy:function(){n.verbose("Destroying previous module",w),y.off(h).removeData(T)},refresh:function(){n.verbose("Refreshing selector cache"),y=e(C)},add:{defaults:function(){var i=t&&e.isPlainObject(t.states)?t.states:{};e.each(f.defaults,function(t,o){n.is[t]!==a&&n.is[t]()&&(n.verbose("Adding default states",t,C),e.extend(f.states,o,i))})}},is:{active:function(){return y.hasClass(m.active)},loading:function(){return y.hasClass(m.loading)},inactive:function(){return!y.hasClass(m.active)},state:function(e){return m[e]===a?!1:y.hasClass(m[e])},enabled:function(){return!y.is(f.filter.active)},disabled:function(){return y.is(f.filter.active)},textEnabled:function(){return!y.is(f.filter.text)},button:function(){return y.is(".button:not(a, .submit)")},input:function(){return y.is("input")},progress:function(){return y.is(".ui.progress")}},allow:function(e){n.debug("Now allowing state",e),x[e]=!0},disallow:function(e){n.debug("No longer allowing",e),x[e]=!1},allows:function(e){return x[e]||!1},enable:function(){y.removeClass(m.disabled)},disable:function(){y.addClass(m.disabled)},setState:function(e){n.allows(e)&&y.addClass(m[e])},removeState:function(e){n.allows(e)&&y.removeClass(m[e])},toggle:{state:function(){var t;if(n.allows("active")&&n.is.enabled()){if(n.refresh(),e.fn.api!==a&&(t=y.api("get request")))return void n.listenTo(t);n.change.state()}}},listenTo:function(t){n.debug("API request detected, waiting for state signal",t),t?(p.loading&&n.update.text(p.loading),e.when(t).then(function(){"resolved"==t.state()?(n.debug("API request succeeded"),f.activateTest=function(){return!0},f.deactivateTest=function(){return!0}):(n.debug("API request failed"),f.activateTest=function(){return!1},f.deactivateTest=function(){return!1}),n.change.state()})):(f.activateTest=function(){return!1},f.deactivateTest=function(){return!1})},change:{state:function(){n.debug("Determining state change direction"),n.is.inactive()?n.activate():n.deactivate(),f.sync&&n.sync(),f.onChange.call(C)},text:function(){n.is.textEnabled()&&(n.is.disabled()?(n.verbose("Changing text to disabled text",p.hover),n.update.text(p.disabled)):n.is.active()?p.hover?(n.verbose("Changing text to hover text",p.hover),n.update.text(p.hover)):p.deactivate&&(n.verbose("Changing text to deactivating text",p.deactivate),n.update.text(p.deactivate)):p.hover?(n.verbose("Changing text to hover text",p.hover),n.update.text(p.hover)):p.activate&&(n.verbose("Changing text to activating text",p.activate),n.update.text(p.activate)))}},activate:function(){f.activateTest.call(C)&&(n.debug("Setting state to active"),y.addClass(m.active),n.update.text(p.active),f.onActivate.call(C))},deactivate:function(){f.deactivateTest.call(C)&&(n.debug("Setting state to inactive"),y.removeClass(m.active),n.update.text(p.inactive),f.onDeactivate.call(C))},sync:function(){n.verbose("Syncing other buttons to current state"),o.not(y).state(n.is.active()?"activate":"deactivate")},get:{text:function(){return f.selector.text?y.find(f.selector.text).text():y.html()},textFor:function(e){return p[e]||!1}},flash:{text:function(e,t,a){var i=n.get.text();n.debug("Flashing text message",e,t),e=e||f.text.flash,t=t||f.flashDuration,a=a||function(){},n.update.text(e),setTimeout(function(){n.update.text(i),a.call(C)},t)}},reset:{text:function(){var e=p.active||y.data(v.storedText),t=p.inactive||y.data(v.storedText);n.is.textEnabled()&&(n.is.active()&&e?(n.verbose("Resetting active text",e),n.update.text(e)):t&&(n.verbose("Resetting inactive text",e),n.update.text(t)))}},update:{text:function(e){var t=n.get.text();e&&e!==t?(n.debug("Updating text",e),f.selector.text?y.data(v.storedText,e).find(f.selector.text).text(e):y.data(v.storedText,e).html(e)):n.debug("Text is already sane, ignoring update",e)}},setting:function(t,i){if(n.debug("Changing setting",t,i),e.isPlainObject(t))e.extend(!0,f,t);else{if(i===a)return f[t];f[t]=i}},internal:function(t,i){if(e.isPlainObject(t))e.extend(!0,n,t);else{if(i===a)return n[t];n[t]=i}},debug:function(){f.debug&&(f.performance?n.performance.log(arguments):(n.debug=Function.prototype.bind.call(console.info,console,f.name+":"),n.debug.apply(console,arguments)))},verbose:function(){f.verbose&&f.debug&&(f.performance?n.performance.log(arguments):(n.verbose=Function.prototype.bind.call(console.info,console,f.name+":"),n.verbose.apply(console,arguments)))},error:function(){n.error=Function.prototype.bind.call(console.error,console,f.name+":"),n.error.apply(console,arguments)},performance:{log:function(e){var t,a,i;f.performance&&(t=(new Date).getTime(),i=r||t,a=t-i,r=t,c.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:C,"Execution Time":a})),clearTimeout(n.performance.timer),n.performance.timer=setTimeout(n.performance.display,100)},display:function(){var t=f.name+":",i=0;r=!1,clearTimeout(n.performance.timer),e.each(c,function(e,t){i+=t["Execution Time"]}),t+=" "+i+"ms",s&&(t+=" '"+s+"'"),(console.group!==a||console.table!==a)&&c.length>0&&(console.groupCollapsed(t),console.table?console.table(c):e.each(c,function(e,t){console.log(t.Name+": "+t["Execution Time"]+"ms")}),console.groupEnd()),c=[]}},invoke:function(t,o,s){var r,c,u,l=w;return o=o||d,s=C||s,"string"==typeof t&&l!==a&&(t=t.split(/[\. ]/),r=t.length-1,e.each(t,function(i,o){var s=i!=r?o+t[i+1].charAt(0).toUpperCase()+t[i+1].slice(1):t;if(e.isPlainObject(l[s])&&i!=r)l=l[s];else{if(l[s]!==a)return c=l[s],!1;if(!e.isPlainObject(l[o])||i==r)return l[o]!==a?(c=l[o],!1):(n.error(g.method,t),!1);l=l[o]}})),e.isFunction(c)?u=c.apply(s,o):c!==a&&(u=c),e.isArray(i)?i.push(u):i!==a?i=[i,u]:u!==a&&(i=u),c}},l?(w===a&&n.initialize(),n.invoke(u)):(w!==a&&n.destroy(),n.initialize())}),i!==a?i:this},e.fn.state.settings={name:"State",debug:!1,verbose:!0,namespace:"state",performance:!0,onActivate:function(){},onDeactivate:function(){},onChange:function(){},activateTest:function(){return!0},deactivateTest:function(){return!0},automatic:!0,sync:!1,flashDuration:1e3,filter:{text:".loading, .disabled",active:".disabled"},context:!1,error:{method:"The method you called is not defined."},metadata:{promise:"promise",storedText:"stored-text"},className:{active:"active",disabled:"disabled",error:"error",loading:"loading",success:"success",warning:"warning"},selector:{text:!1},defaults:{input:{disabled:!0,loading:!0,active:!0},button:{disabled:!0,loading:!0,active:!0},progress:{active:!0,success:!0,warning:!0,error:!0}},states:{active:!0,disabled:!0,error:!0,loading:!0,success:!0,warning:!0},text:{disabled:!1,flash:!1,hover:!1,active:!1,inactive:!1,activate:!1,deactivate:!1}}}(jQuery,window,document);
|
@@ -0,0 +1,410 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
/*******************************
|
15
|
+
Statistic
|
16
|
+
*******************************/
|
17
|
+
|
18
|
+
|
19
|
+
/* Standalone */
|
20
|
+
.ui.statistic {
|
21
|
+
display: inline-block;
|
22
|
+
margin: 1em 0em;
|
23
|
+
max-width: 175px;
|
24
|
+
}
|
25
|
+
.ui.statistic + .ui.statistic {
|
26
|
+
margin: 0em 0em 0em 1em;
|
27
|
+
}
|
28
|
+
.ui.statistic:first-child {
|
29
|
+
margin-top: 0em;
|
30
|
+
}
|
31
|
+
.ui.statistic:last-child {
|
32
|
+
margin-bottom: 0em;
|
33
|
+
}
|
34
|
+
|
35
|
+
/* Grouped */
|
36
|
+
.ui.statistics > .statistic {
|
37
|
+
display: block;
|
38
|
+
float: left;
|
39
|
+
margin: 0em 1em 2em;
|
40
|
+
max-width: 175px;
|
41
|
+
}
|
42
|
+
|
43
|
+
|
44
|
+
/*******************************
|
45
|
+
Group
|
46
|
+
*******************************/
|
47
|
+
|
48
|
+
.ui.statistics {
|
49
|
+
display: block;
|
50
|
+
margin: 1em -1em;
|
51
|
+
}
|
52
|
+
|
53
|
+
/* Clearing */
|
54
|
+
.ui.statistics:after {
|
55
|
+
display: block;
|
56
|
+
content: ' ';
|
57
|
+
height: 0px;
|
58
|
+
clear: both;
|
59
|
+
overflow: hidden;
|
60
|
+
visibility: hidden;
|
61
|
+
}
|
62
|
+
.ui.statistics:first-child {
|
63
|
+
margin-top: 0em;
|
64
|
+
}
|
65
|
+
.ui.statistics:last-child {
|
66
|
+
margin-bottom: 0em;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
/*******************************
|
71
|
+
Content
|
72
|
+
*******************************/
|
73
|
+
|
74
|
+
|
75
|
+
/*--------------
|
76
|
+
Value
|
77
|
+
---------------*/
|
78
|
+
|
79
|
+
.ui.statistics .statistic > .value,
|
80
|
+
.ui.statistic > .value {
|
81
|
+
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
82
|
+
font-size: 4rem;
|
83
|
+
font-weight: normal;
|
84
|
+
line-height: 1em;
|
85
|
+
color: #1b1c1d;
|
86
|
+
text-transform: uppercase;
|
87
|
+
text-align: center;
|
88
|
+
}
|
89
|
+
|
90
|
+
/*--------------
|
91
|
+
Label
|
92
|
+
---------------*/
|
93
|
+
|
94
|
+
.ui.statistics .statistic > .label,
|
95
|
+
.ui.statistic > .label {
|
96
|
+
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
97
|
+
font-size: 1rem;
|
98
|
+
font-weight: normal;
|
99
|
+
color: rgba(0, 0, 0, 0.4);
|
100
|
+
text-transform: none;
|
101
|
+
text-align: center;
|
102
|
+
}
|
103
|
+
|
104
|
+
/* Top Label */
|
105
|
+
.ui.statistics .statistic > .label ~ .value,
|
106
|
+
.ui.statistic > .label ~ .value {
|
107
|
+
margin-top: 0rem;
|
108
|
+
}
|
109
|
+
|
110
|
+
/* Bottom Label */
|
111
|
+
.ui.statistics .statistic > .value ~ .label,
|
112
|
+
.ui.statistic > .value ~ .label {
|
113
|
+
margin-top: 0.25rem;
|
114
|
+
}
|
115
|
+
|
116
|
+
|
117
|
+
/*******************************
|
118
|
+
Types
|
119
|
+
*******************************/
|
120
|
+
|
121
|
+
|
122
|
+
/*--------------
|
123
|
+
Icon Value
|
124
|
+
---------------*/
|
125
|
+
|
126
|
+
.ui.statistics .statistic > .value .icon,
|
127
|
+
.ui.statistic > .value .icon {
|
128
|
+
opacity: 1;
|
129
|
+
width: auto;
|
130
|
+
margin: 0em;
|
131
|
+
}
|
132
|
+
|
133
|
+
/*--------------
|
134
|
+
Text Value
|
135
|
+
---------------*/
|
136
|
+
|
137
|
+
.ui.statistics .statistic > .text.value,
|
138
|
+
.ui.statistic > .text.value {
|
139
|
+
line-height: 1em;
|
140
|
+
min-height: 2em;
|
141
|
+
text-align: center;
|
142
|
+
}
|
143
|
+
.ui.statistics .statistic > .text.value + .label,
|
144
|
+
.ui.statistic > .text.value + .label {
|
145
|
+
text-align: center;
|
146
|
+
}
|
147
|
+
|
148
|
+
/*--------------
|
149
|
+
Image Value
|
150
|
+
---------------*/
|
151
|
+
|
152
|
+
.ui.statistics .statistic > .value img,
|
153
|
+
.ui.statistic > .value img {
|
154
|
+
max-height: 3rem;
|
155
|
+
vertical-align: baseline;
|
156
|
+
}
|
157
|
+
|
158
|
+
|
159
|
+
/*******************************
|
160
|
+
Variations
|
161
|
+
*******************************/
|
162
|
+
|
163
|
+
|
164
|
+
/*--------------
|
165
|
+
Horizontal
|
166
|
+
---------------*/
|
167
|
+
|
168
|
+
.ui.horizontal.statistics,
|
169
|
+
.ui.horizontal.statistic {
|
170
|
+
display: block;
|
171
|
+
margin: 0em;
|
172
|
+
max-width: 9999px;
|
173
|
+
}
|
174
|
+
.ui.horizontal.statistics .statistic {
|
175
|
+
float: none;
|
176
|
+
margin: 1em 0em;
|
177
|
+
max-width: 9999px;
|
178
|
+
}
|
179
|
+
.ui.horizontal.statistic > .text.value,
|
180
|
+
.ui.horizontal.statistics > .statistic > .text.value {
|
181
|
+
min-height: 0em !important;
|
182
|
+
}
|
183
|
+
.ui.horizontal.statistics .statistic > .value .icon,
|
184
|
+
.ui.horizontal.statistic > .value .icon {
|
185
|
+
width: 1.18em;
|
186
|
+
}
|
187
|
+
.ui.horizontal.statistics .statistic > .value,
|
188
|
+
.ui.horizontal.statistic > .value {
|
189
|
+
display: inline-block;
|
190
|
+
vertical-align: middle;
|
191
|
+
}
|
192
|
+
.ui.horizontal.statistics .statistic > .label,
|
193
|
+
.ui.horizontal.statistic > .label {
|
194
|
+
display: inline-block;
|
195
|
+
vertical-align: middle;
|
196
|
+
margin: 0em 0em 0em 0.75em;
|
197
|
+
}
|
198
|
+
|
199
|
+
/*--------------
|
200
|
+
Colors
|
201
|
+
---------------*/
|
202
|
+
|
203
|
+
.ui.blue.statistics .statistic > .value,
|
204
|
+
.ui.statistics .blue.statistic > .value,
|
205
|
+
.ui.blue.statistic > .value {
|
206
|
+
color: #3b83c0;
|
207
|
+
}
|
208
|
+
.ui.green.statistics .statistic > .value,
|
209
|
+
.ui.statistics .green.statistic > .value,
|
210
|
+
.ui.green.statistic > .value {
|
211
|
+
color: #5bbd72;
|
212
|
+
}
|
213
|
+
.ui.orange.statistics .statistic > .value,
|
214
|
+
.ui.statistics .orange.statistic > .value,
|
215
|
+
.ui.orange.statistic > .value {
|
216
|
+
color: #e07b53;
|
217
|
+
}
|
218
|
+
.ui.pink.statistics .statistic > .value,
|
219
|
+
.ui.statistics .pink.statistic > .value,
|
220
|
+
.ui.pink.statistic > .value {
|
221
|
+
color: #d9499a;
|
222
|
+
}
|
223
|
+
.ui.purple.statistics .statistic > .value,
|
224
|
+
.ui.statistics .purple.statistic > .value,
|
225
|
+
.ui.purple.statistic > .value {
|
226
|
+
color: #564f8a;
|
227
|
+
}
|
228
|
+
.ui.red.statistics .statistic > .value,
|
229
|
+
.ui.statistics .red.statistic > .value,
|
230
|
+
.ui.red.statistic > .value {
|
231
|
+
color: #d95c5c;
|
232
|
+
}
|
233
|
+
.ui.teal.statistics .statistic > .value,
|
234
|
+
.ui.statistics .teal.statistic > .value,
|
235
|
+
.ui.teal.statistic > .value {
|
236
|
+
color: #00b5ad;
|
237
|
+
}
|
238
|
+
.ui.yellow.statistics .statistic > .value,
|
239
|
+
.ui.statistics .yellow.statistic > .value,
|
240
|
+
.ui.yellow.statistic > .value {
|
241
|
+
color: #f2c61f;
|
242
|
+
}
|
243
|
+
|
244
|
+
/*--------------
|
245
|
+
Floated
|
246
|
+
---------------*/
|
247
|
+
|
248
|
+
.ui[class*="left floated"].statistic {
|
249
|
+
float: left;
|
250
|
+
margin: 0em 2em 1em 0em;
|
251
|
+
}
|
252
|
+
.ui[class*="right floated"].statistic {
|
253
|
+
float: right;
|
254
|
+
margin: 0em 0em 1em 2em;
|
255
|
+
}
|
256
|
+
.ui.floated.statistic:last-child {
|
257
|
+
margin-bottom: 0em;
|
258
|
+
}
|
259
|
+
|
260
|
+
/*--------------
|
261
|
+
Inverted
|
262
|
+
---------------*/
|
263
|
+
|
264
|
+
.ui.inverted.statistic .value {
|
265
|
+
color: #ffffff;
|
266
|
+
}
|
267
|
+
.ui.inverted.statistic .label {
|
268
|
+
color: rgba(255, 255, 255, 0.8);
|
269
|
+
}
|
270
|
+
.ui.inverted.blue.statistics .statistic > .value,
|
271
|
+
.ui.statistics .inverted.blue.statistic > .value,
|
272
|
+
.ui.inverted.blue.statistic > .value {
|
273
|
+
color: #54c8ff;
|
274
|
+
}
|
275
|
+
.ui.inverted.green.statistics .statistic > .value,
|
276
|
+
.ui.statistics .inverted.green.statistic > .value,
|
277
|
+
.ui.inverted.green.statistic > .value {
|
278
|
+
color: #2ecc40;
|
279
|
+
}
|
280
|
+
.ui.inverted.orange.statistics .statistic > .value,
|
281
|
+
.ui.statistics .inverted.orange.statistic > .value,
|
282
|
+
.ui.inverted.orange.statistic > .value {
|
283
|
+
color: #ff851b;
|
284
|
+
}
|
285
|
+
.ui.inverted.pink.statistics .statistic > .value,
|
286
|
+
.ui.statistics .inverted.pink.statistic > .value,
|
287
|
+
.ui.inverted.pink.statistic > .value {
|
288
|
+
color: #ff8edf;
|
289
|
+
}
|
290
|
+
.ui.inverted.purple.statistics .statistic > .value,
|
291
|
+
.ui.statistics .inverted.purple.statistic > .value,
|
292
|
+
.ui.inverted.purple.statistic > .value {
|
293
|
+
color: #cdc6ff;
|
294
|
+
}
|
295
|
+
.ui.inverted.red.statistics .statistic > .value,
|
296
|
+
.ui.statistics .inverted.red.statistic > .value,
|
297
|
+
.ui.inverted.red.statistic > .value {
|
298
|
+
color: #ff695e;
|
299
|
+
}
|
300
|
+
.ui.inverted.teal.statistics .statistic > .value,
|
301
|
+
.ui.statistics .inverted.teal.statistic > .value,
|
302
|
+
.ui.inverted.teal.statistic > .value {
|
303
|
+
color: #6dffff;
|
304
|
+
}
|
305
|
+
.ui.inverted.yellow.statistics .statistic > .value,
|
306
|
+
.ui.statistics .inverted.yellow.statistic > .value,
|
307
|
+
.ui.inverted.yellow.statistic > .value {
|
308
|
+
color: #ffe21f;
|
309
|
+
}
|
310
|
+
|
311
|
+
/*--------------
|
312
|
+
Sizes
|
313
|
+
---------------*/
|
314
|
+
|
315
|
+
|
316
|
+
/* Mini */
|
317
|
+
.ui.mini.statistics .statistic > .value,
|
318
|
+
.ui.mini.statistic > .value {
|
319
|
+
font-size: 1.5rem;
|
320
|
+
}
|
321
|
+
.ui.mini.horizontal.statistics .statistic > .value,
|
322
|
+
.ui.mini.horizontal.statistic > .value {
|
323
|
+
font-size: 1.5rem;
|
324
|
+
}
|
325
|
+
.ui.mini.statistics .statistic > .text.value,
|
326
|
+
.ui.mini.statistic > .text.value {
|
327
|
+
font-size: 1rem;
|
328
|
+
}
|
329
|
+
|
330
|
+
/* Tiny */
|
331
|
+
.ui.tiny.statistics .statistic > .value,
|
332
|
+
.ui.tiny.statistic > .value {
|
333
|
+
font-size: 2rem;
|
334
|
+
}
|
335
|
+
.ui.tiny.horizontal.statistics .statistic > .value,
|
336
|
+
.ui.tiny.horizontal.statistic > .value {
|
337
|
+
font-size: 2rem;
|
338
|
+
}
|
339
|
+
.ui.tiny.statistics .statistic > .text.value,
|
340
|
+
.ui.tiny.statistic > .text.value {
|
341
|
+
font-size: 1rem;
|
342
|
+
}
|
343
|
+
|
344
|
+
/* Small */
|
345
|
+
.ui.small.statistics .statistic > .value,
|
346
|
+
.ui.small.statistic > .value {
|
347
|
+
font-size: 3rem;
|
348
|
+
}
|
349
|
+
.ui.small.horizontal.statistics .statistic > .value,
|
350
|
+
.ui.small.horizontal.statistic > .value {
|
351
|
+
font-size: 2rem;
|
352
|
+
}
|
353
|
+
.ui.small.statistics .statistic > .text.value,
|
354
|
+
.ui.small.statistic > .text.value {
|
355
|
+
font-size: 1.5rem;
|
356
|
+
}
|
357
|
+
|
358
|
+
/* Medium */
|
359
|
+
.ui.statistics .statistic > .value,
|
360
|
+
.ui.statistic > .value {
|
361
|
+
font-size: 4rem;
|
362
|
+
}
|
363
|
+
.ui.horizontal.statistics .statistic > .value,
|
364
|
+
.ui.horizontal.statistic > .value {
|
365
|
+
font-size: 3rem;
|
366
|
+
}
|
367
|
+
.ui.statistics .statistic > .text.value,
|
368
|
+
.ui.statistic > .text.value {
|
369
|
+
font-size: 2rem;
|
370
|
+
}
|
371
|
+
|
372
|
+
/* Large */
|
373
|
+
.ui.large.statistics .statistic > .value,
|
374
|
+
.ui.large.statistic > .value {
|
375
|
+
font-size: 5rem;
|
376
|
+
}
|
377
|
+
.ui.large.horizontal.statistics .statistic > .value,
|
378
|
+
.ui.large.horizontal.statistic > .value {
|
379
|
+
font-size: 4rem;
|
380
|
+
}
|
381
|
+
.ui.large.statistics .statistic > .text.value,
|
382
|
+
.ui.large.statistic > .text.value {
|
383
|
+
font-size: 2.5rem;
|
384
|
+
}
|
385
|
+
|
386
|
+
/* Huge */
|
387
|
+
.ui.huge.statistics .statistic > .value,
|
388
|
+
.ui.huge.statistic > .value {
|
389
|
+
font-size: 6rem;
|
390
|
+
}
|
391
|
+
.ui.huge.horizontal.statistics .statistic > .value,
|
392
|
+
.ui.huge.horizontal.statistic > .value {
|
393
|
+
font-size: 5rem;
|
394
|
+
}
|
395
|
+
.ui.huge.statistics .statistic > .text.value,
|
396
|
+
.ui.huge.statistic > .text.value {
|
397
|
+
font-size: 2.5rem;
|
398
|
+
}
|
399
|
+
|
400
|
+
|
401
|
+
/*******************************
|
402
|
+
Theme Overrides
|
403
|
+
*******************************/
|
404
|
+
|
405
|
+
|
406
|
+
|
407
|
+
/*******************************
|
408
|
+
User Variable Overrides
|
409
|
+
*******************************/
|
410
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
.ui.statistic{display:inline-block;margin:1em 0;max-width:175px}.ui.statistic+.ui.statistic{margin:0 0 0 1em}.ui.statistic:first-child{margin-top:0}.ui.statistic:last-child{margin-bottom:0}.ui.statistics>.statistic{display:block;float:left;margin:0 1em 2em;max-width:175px}.ui.statistics{display:block;margin:1em -1em}.ui.statistics:after{display:block;content:' ';height:0;clear:both;overflow:hidden;visibility:hidden}.ui.statistics:first-child{margin-top:0}.ui.statistics:last-child{margin-bottom:0}.ui.statistic>.value,.ui.statistics .statistic>.value{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-weight:400;line-height:1em;color:#1b1c1d;text-transform:uppercase;text-align:center}.ui.statistic>.label,.ui.statistics .statistic>.label{font-family:Lato,'Helvetica Neue',Arial,Helvetica,sans-serif;font-size:1rem;font-weight:400;color:rgba(0,0,0,.4);text-transform:none;text-align:center}.ui.statistic>.label~.value,.ui.statistics .statistic>.label~.value{margin-top:0}.ui.statistic>.value~.label,.ui.statistics .statistic>.value~.label{margin-top:.25rem}.ui.statistic>.value .icon,.ui.statistics .statistic>.value .icon{opacity:1;width:auto;margin:0}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{line-height:1em;min-height:2em;text-align:center}.ui.statistic>.text.value+.label,.ui.statistics .statistic>.text.value+.label{text-align:center}.ui.statistic>.value img,.ui.statistics .statistic>.value img{max-height:3rem;vertical-align:baseline}.ui.horizontal.statistic,.ui.horizontal.statistics{display:block;margin:0;max-width:9999px}.ui.horizontal.statistics .statistic{float:none;margin:1em 0;max-width:9999px}.ui.horizontal.statistic>.text.value,.ui.horizontal.statistics>.statistic>.text.value{min-height:0!important}.ui.horizontal.statistic>.value .icon,.ui.horizontal.statistics .statistic>.value .icon{width:1.18em}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{display:inline-block;vertical-align:middle}.ui.horizontal.statistic>.label,.ui.horizontal.statistics .statistic>.label{display:inline-block;vertical-align:middle;margin:0 0 0 .75em}.ui.blue.statistic>.value,.ui.blue.statistics .statistic>.value,.ui.statistics .blue.statistic>.value{color:#3b83c0}.ui.green.statistic>.value,.ui.green.statistics .statistic>.value,.ui.statistics .green.statistic>.value{color:#5bbd72}.ui.orange.statistic>.value,.ui.orange.statistics .statistic>.value,.ui.statistics .orange.statistic>.value{color:#e07b53}.ui.pink.statistic>.value,.ui.pink.statistics .statistic>.value,.ui.statistics .pink.statistic>.value{color:#d9499a}.ui.purple.statistic>.value,.ui.purple.statistics .statistic>.value,.ui.statistics .purple.statistic>.value{color:#564f8a}.ui.red.statistic>.value,.ui.red.statistics .statistic>.value,.ui.statistics .red.statistic>.value{color:#d95c5c}.ui.statistics .teal.statistic>.value,.ui.teal.statistic>.value,.ui.teal.statistics .statistic>.value{color:#00b5ad}.ui.statistics .yellow.statistic>.value,.ui.yellow.statistic>.value,.ui.yellow.statistics .statistic>.value{color:#f2c61f}.ui[class*="left floated"].statistic{float:left;margin:0 2em 1em 0}.ui[class*="right floated"].statistic{float:right;margin:0 0 1em 2em}.ui.floated.statistic:last-child{margin-bottom:0}.ui.inverted.statistic .value{color:#fff}.ui.inverted.statistic .label{color:rgba(255,255,255,.8)}.ui.inverted.blue.statistic>.value,.ui.inverted.blue.statistics .statistic>.value,.ui.statistics .inverted.blue.statistic>.value{color:#54c8ff}.ui.inverted.green.statistic>.value,.ui.inverted.green.statistics .statistic>.value,.ui.statistics .inverted.green.statistic>.value{color:#2ecc40}.ui.inverted.orange.statistic>.value,.ui.inverted.orange.statistics .statistic>.value,.ui.statistics .inverted.orange.statistic>.value{color:#ff851b}.ui.inverted.pink.statistic>.value,.ui.inverted.pink.statistics .statistic>.value,.ui.statistics .inverted.pink.statistic>.value{color:#ff8edf}.ui.inverted.purple.statistic>.value,.ui.inverted.purple.statistics .statistic>.value,.ui.statistics .inverted.purple.statistic>.value{color:#cdc6ff}.ui.inverted.red.statistic>.value,.ui.inverted.red.statistics .statistic>.value,.ui.statistics .inverted.red.statistic>.value{color:#ff695e}.ui.inverted.teal.statistic>.value,.ui.inverted.teal.statistics .statistic>.value,.ui.statistics .inverted.teal.statistic>.value{color:#6dffff}.ui.inverted.yellow.statistic>.value,.ui.inverted.yellow.statistics .statistic>.value,.ui.statistics .inverted.yellow.statistic>.value{color:#ffe21f}.ui.mini.horizontal.statistic>.value,.ui.mini.horizontal.statistics .statistic>.value,.ui.mini.statistic>.value,.ui.mini.statistics .statistic>.value{font-size:1.5rem}.ui.mini.statistic>.text.value,.ui.mini.statistics .statistic>.text.value{font-size:1rem}.ui.tiny.horizontal.statistic>.value,.ui.tiny.horizontal.statistics .statistic>.value,.ui.tiny.statistic>.value,.ui.tiny.statistics .statistic>.value{font-size:2rem}.ui.tiny.statistic>.text.value,.ui.tiny.statistics .statistic>.text.value{font-size:1rem}.ui.small.statistic>.value,.ui.small.statistics .statistic>.value{font-size:3rem}.ui.small.horizontal.statistic>.value,.ui.small.horizontal.statistics .statistic>.value{font-size:2rem}.ui.small.statistic>.text.value,.ui.small.statistics .statistic>.text.value{font-size:1.5rem}.ui.statistic>.value,.ui.statistics .statistic>.value{font-size:4rem}.ui.horizontal.statistic>.value,.ui.horizontal.statistics .statistic>.value{font-size:3rem}.ui.statistic>.text.value,.ui.statistics .statistic>.text.value{font-size:2rem}.ui.large.statistic>.value,.ui.large.statistics .statistic>.value{font-size:5rem}.ui.large.horizontal.statistic>.value,.ui.large.horizontal.statistics .statistic>.value{font-size:4rem}.ui.large.statistic>.text.value,.ui.large.statistics .statistic>.text.value{font-size:2.5rem}.ui.huge.statistic>.value,.ui.huge.statistics .statistic>.value{font-size:6rem}.ui.huge.horizontal.statistic>.value,.ui.huge.horizontal.statistics .statistic>.value{font-size:5rem}.ui.huge.statistic>.text.value,.ui.huge.statistics .statistic>.text.value{font-size:2.5rem}
|
@@ -0,0 +1,433 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic UI - 1.8.1
|
3
|
+
* https://github.com/Semantic-Org/Semantic-UI
|
4
|
+
* http://www.semantic-ui.com/
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributors
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
|
12
|
+
|
13
|
+
|
14
|
+
/*******************************
|
15
|
+
Singular
|
16
|
+
*******************************/
|
17
|
+
|
18
|
+
.ui.steps .step {
|
19
|
+
position: relative;
|
20
|
+
display: table-cell;
|
21
|
+
vertical-align: middle;
|
22
|
+
margin: 0em 0em;
|
23
|
+
padding: 0.9285em 1.5em 0.9285em 2.25em;
|
24
|
+
background: #ffffff;
|
25
|
+
color: rgba(0, 0, 0, 0.8);
|
26
|
+
box-shadow: 0px 0px 0px 1px #d4d4d5;
|
27
|
+
border-radius: 0em;
|
28
|
+
}
|
29
|
+
.ui.steps .step:after {
|
30
|
+
position: absolute;
|
31
|
+
z-index: 2;
|
32
|
+
content: '';
|
33
|
+
top: 50%;
|
34
|
+
right: 0em;
|
35
|
+
border: medium none;
|
36
|
+
background-color: #ffffff;
|
37
|
+
width: 1.5em;
|
38
|
+
height: 1.5em;
|
39
|
+
border-bottom: 1px solid rgba(39, 41, 43, 0.15);
|
40
|
+
border-right: 1px solid rgba(39, 41, 43, 0.15);
|
41
|
+
-webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
42
|
+
-ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
43
|
+
transform: translateY(-50%) translateX(50%) rotate(-45deg);
|
44
|
+
}
|
45
|
+
.ui.steps .step,
|
46
|
+
.ui.steps .step:after {
|
47
|
+
-webkit-transition: background-color 0.2s ease, opacity 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
|
48
|
+
transition: background-color 0.2s ease, opacity 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
|
49
|
+
}
|
50
|
+
|
51
|
+
|
52
|
+
/*******************************
|
53
|
+
Plural
|
54
|
+
*******************************/
|
55
|
+
|
56
|
+
.ui.steps {
|
57
|
+
display: table;
|
58
|
+
table-layout: fixed;
|
59
|
+
background: '';
|
60
|
+
box-shadow: '';
|
61
|
+
line-height: 1.142rem;
|
62
|
+
box-sizing: border-box;
|
63
|
+
border-radius: 0.2857rem;
|
64
|
+
}
|
65
|
+
.ui.steps .step:first-child {
|
66
|
+
padding-left: 1.5em;
|
67
|
+
border-radius: 0.2857rem 0em 0em 0.2857rem;
|
68
|
+
}
|
69
|
+
.ui.steps .step:last-child {
|
70
|
+
border-radius: 0em 0.2857rem 0.2857rem 0em;
|
71
|
+
}
|
72
|
+
.ui.steps .step:only-child {
|
73
|
+
border-radius: 0.2857rem;
|
74
|
+
}
|
75
|
+
.ui.steps .step:last-child {
|
76
|
+
margin-right: 0em;
|
77
|
+
}
|
78
|
+
.ui.steps .step:last-child:after {
|
79
|
+
display: none;
|
80
|
+
}
|
81
|
+
|
82
|
+
|
83
|
+
/*******************************
|
84
|
+
Content
|
85
|
+
*******************************/
|
86
|
+
|
87
|
+
|
88
|
+
/* Title */
|
89
|
+
.ui.steps .step .title {
|
90
|
+
font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
|
91
|
+
font-size: 1.0714em;
|
92
|
+
font-weight: bold;
|
93
|
+
}
|
94
|
+
|
95
|
+
/* Description */
|
96
|
+
.ui.steps .step .description {
|
97
|
+
font-weight: normal;
|
98
|
+
font-size: 0.9285em;
|
99
|
+
color: rgba(0, 0, 0, 0.8);
|
100
|
+
}
|
101
|
+
.ui.steps .step .title ~ .description {
|
102
|
+
margin-top: 0.1em;
|
103
|
+
}
|
104
|
+
|
105
|
+
/* Icon */
|
106
|
+
.ui.steps .step > .icon,
|
107
|
+
.ui.steps .step > .icon ~ .content {
|
108
|
+
display: table-cell;
|
109
|
+
vertical-align: middle;
|
110
|
+
}
|
111
|
+
.ui.steps .step > .icon {
|
112
|
+
font-size: 2em;
|
113
|
+
margin: 0em;
|
114
|
+
padding-right: 0.6em;
|
115
|
+
}
|
116
|
+
|
117
|
+
/* Link */
|
118
|
+
.ui.steps .link.step,
|
119
|
+
.ui.steps a.step {
|
120
|
+
cursor: pointer;
|
121
|
+
}
|
122
|
+
|
123
|
+
|
124
|
+
/*******************************
|
125
|
+
Types
|
126
|
+
*******************************/
|
127
|
+
|
128
|
+
|
129
|
+
/*--------------
|
130
|
+
Ordered
|
131
|
+
---------------*/
|
132
|
+
|
133
|
+
.ui.ordered.steps {
|
134
|
+
counter-reset: ordered;
|
135
|
+
}
|
136
|
+
.ui.ordered.steps .step:before {
|
137
|
+
display: table-cell;
|
138
|
+
position: static;
|
139
|
+
text-align: center;
|
140
|
+
content: counters(ordered, ".");
|
141
|
+
vertical-align: middle;
|
142
|
+
padding-right: 0.6em;
|
143
|
+
font-size: 2em;
|
144
|
+
counter-increment: ordered;
|
145
|
+
}
|
146
|
+
.ui.ordered.steps .step > * {
|
147
|
+
display: table-cell;
|
148
|
+
vertical-align: middle;
|
149
|
+
}
|
150
|
+
|
151
|
+
/*--------------
|
152
|
+
Vertical
|
153
|
+
---------------*/
|
154
|
+
|
155
|
+
.ui.vertical.steps {
|
156
|
+
display: inline-block;
|
157
|
+
overflow: visible;
|
158
|
+
}
|
159
|
+
.ui.vertical.steps .step {
|
160
|
+
display: block;
|
161
|
+
border-radius: 0em;
|
162
|
+
padding: 0.9285em 1.5em;
|
163
|
+
}
|
164
|
+
.ui.vertical.steps .step:first-child {
|
165
|
+
padding: 0.9285em 1.5em;
|
166
|
+
border-radius: 0.2857rem 0.2857rem 0em 0em;
|
167
|
+
}
|
168
|
+
.ui.vertical.steps .step:last-child {
|
169
|
+
border-radius: 0em 0em 0.2857rem 0.2857rem;
|
170
|
+
}
|
171
|
+
|
172
|
+
/* Arrow */
|
173
|
+
.ui.vertical.steps .step:after {
|
174
|
+
display: none;
|
175
|
+
}
|
176
|
+
|
177
|
+
/* Active Arrow */
|
178
|
+
.ui.vertical.steps .active.step:after {
|
179
|
+
display: block;
|
180
|
+
}
|
181
|
+
|
182
|
+
/*---------------
|
183
|
+
Responsive
|
184
|
+
----------------*/
|
185
|
+
|
186
|
+
|
187
|
+
/* Mobile (Default) */
|
188
|
+
@media only screen and (max-width: 767px) {
|
189
|
+
.ui.steps {
|
190
|
+
overflow: visible;
|
191
|
+
}
|
192
|
+
.ui.steps .step {
|
193
|
+
display: block;
|
194
|
+
border-radius: 0em;
|
195
|
+
padding: 0.9285em 1.5em;
|
196
|
+
}
|
197
|
+
.ui.steps .step:first-child {
|
198
|
+
padding: 0.9285em 1.5em;
|
199
|
+
border-radius: 0.2857rem 0.2857rem 0em 0em;
|
200
|
+
}
|
201
|
+
.ui.steps .step:last-child {
|
202
|
+
border-radius: 0em 0em 0.2857rem 0.2857rem;
|
203
|
+
}
|
204
|
+
|
205
|
+
/* Arrow */
|
206
|
+
.ui.steps .step:after {
|
207
|
+
display: none;
|
208
|
+
}
|
209
|
+
}
|
210
|
+
|
211
|
+
|
212
|
+
/*******************************
|
213
|
+
States
|
214
|
+
*******************************/
|
215
|
+
|
216
|
+
|
217
|
+
/* Link Hover */
|
218
|
+
.ui.steps .link.step:hover::after,
|
219
|
+
.ui.steps .link.step:hover,
|
220
|
+
.ui.steps a.step:hover::after,
|
221
|
+
.ui.steps a.step:hover {
|
222
|
+
background: #fafafa;
|
223
|
+
color: rgba(0, 0, 0, 0.8);
|
224
|
+
}
|
225
|
+
|
226
|
+
/* Link Down */
|
227
|
+
.ui.steps .link.step:active::after,
|
228
|
+
.ui.steps .link.step:active,
|
229
|
+
.ui.steps a.step:active::after,
|
230
|
+
.ui.steps a.step:active {
|
231
|
+
background: #f0f0f0;
|
232
|
+
color: rgba(0, 0, 0, 0.8);
|
233
|
+
}
|
234
|
+
|
235
|
+
/* Active */
|
236
|
+
.ui.steps .step.active {
|
237
|
+
cursor: auto;
|
238
|
+
background: #f0f0f0;
|
239
|
+
}
|
240
|
+
.ui.steps .step.active:after {
|
241
|
+
background: #f0f0f0;
|
242
|
+
}
|
243
|
+
.ui.steps .step.active .title {
|
244
|
+
color: #009fda;
|
245
|
+
}
|
246
|
+
.ui.ordered.steps .step.active:before,
|
247
|
+
.ui.steps .active.step .icon {
|
248
|
+
color: rgba(0, 0, 0, 0.85);
|
249
|
+
}
|
250
|
+
|
251
|
+
/* Active Hover */
|
252
|
+
.ui.steps .link.active.step:hover::after,
|
253
|
+
.ui.steps .link.active.step:hover,
|
254
|
+
.ui.steps a.active.step:hover::after,
|
255
|
+
.ui.steps a.active.step:hover {
|
256
|
+
cursor: pointer;
|
257
|
+
background: #ececec;
|
258
|
+
color: rgba(0, 0, 0, 0.8);
|
259
|
+
}
|
260
|
+
|
261
|
+
/* Completed */
|
262
|
+
.ui.steps .step.completed > .icon:before,
|
263
|
+
.ui.ordered.steps .step.completed:before {
|
264
|
+
color: #5bbd72;
|
265
|
+
}
|
266
|
+
|
267
|
+
/* Disabled */
|
268
|
+
.ui.steps .disabled.step {
|
269
|
+
cursor: auto;
|
270
|
+
background: #ffffff;
|
271
|
+
pointer-events: none;
|
272
|
+
}
|
273
|
+
.ui.steps .disabled.step,
|
274
|
+
.ui.steps .disabled.step .title,
|
275
|
+
.ui.steps .disabled.step .description {
|
276
|
+
color: rgba(40, 40, 40, 0.3);
|
277
|
+
}
|
278
|
+
.ui.steps .disabled.step:after {
|
279
|
+
background: #ffffff;
|
280
|
+
}
|
281
|
+
|
282
|
+
|
283
|
+
/*******************************
|
284
|
+
Variations
|
285
|
+
*******************************/
|
286
|
+
|
287
|
+
|
288
|
+
/*--------------
|
289
|
+
Stackable
|
290
|
+
---------------*/
|
291
|
+
|
292
|
+
|
293
|
+
/* Tablet Or Below */
|
294
|
+
@media only screen and (min-width: 992px) {
|
295
|
+
.ui[class*="tablet stackable"].steps {
|
296
|
+
overflow: visible;
|
297
|
+
}
|
298
|
+
.ui[class*="tablet stackable"].steps .step {
|
299
|
+
display: block;
|
300
|
+
border-radius: 0em;
|
301
|
+
padding: 0.9285em 1.5em;
|
302
|
+
}
|
303
|
+
.ui[class*="tablet stackable"].steps .step:first-child {
|
304
|
+
padding: 0.9285em 1.5em;
|
305
|
+
border-radius: 0.2857rem 0.2857rem 0em 0em;
|
306
|
+
}
|
307
|
+
.ui[class*="tablet stackable"].steps .step:last-child {
|
308
|
+
border-radius: 0em 0em 0.2857rem 0.2857rem;
|
309
|
+
}
|
310
|
+
|
311
|
+
/* Arrow */
|
312
|
+
.ui[class*="tablet stackable"].steps .step:after {
|
313
|
+
display: none;
|
314
|
+
}
|
315
|
+
}
|
316
|
+
|
317
|
+
/*--------------
|
318
|
+
Fluid
|
319
|
+
---------------*/
|
320
|
+
|
321
|
+
|
322
|
+
/* Fluid */
|
323
|
+
.ui.fluid.steps {
|
324
|
+
width: 100%;
|
325
|
+
}
|
326
|
+
|
327
|
+
/*--------------
|
328
|
+
Attached
|
329
|
+
---------------*/
|
330
|
+
|
331
|
+
|
332
|
+
/* Top */
|
333
|
+
.attached.ui.steps {
|
334
|
+
margin: 0em;
|
335
|
+
border-radius: 0.2857rem 0.2857rem 0em 0em;
|
336
|
+
}
|
337
|
+
.attached.ui.steps .step:first-child {
|
338
|
+
border-radius: 0.2857rem 0em 0em 0em;
|
339
|
+
}
|
340
|
+
.attached.ui.steps .step:last-child {
|
341
|
+
border-radius: 0em 0.2857rem 0em 0em;
|
342
|
+
}
|
343
|
+
|
344
|
+
/* Bottom */
|
345
|
+
.bottom.attached.ui.steps {
|
346
|
+
margin: -1px 0em 0em;
|
347
|
+
border-radius: 0em 0em 0.2857rem 0.2857rem;
|
348
|
+
}
|
349
|
+
.bottom.attached.ui.steps .step:first-child {
|
350
|
+
border-radius: 0em 0em 0em 0.2857rem;
|
351
|
+
}
|
352
|
+
.bottom.attached.ui.steps .step:last-child {
|
353
|
+
border-radius: 0em 0em 0.2857rem 0em;
|
354
|
+
}
|
355
|
+
|
356
|
+
/*-------------------
|
357
|
+
Evenly Divided
|
358
|
+
--------------------*/
|
359
|
+
|
360
|
+
.ui.one.steps,
|
361
|
+
.ui.two.steps,
|
362
|
+
.ui.three.steps,
|
363
|
+
.ui.four.steps,
|
364
|
+
.ui.five.steps,
|
365
|
+
.ui.six.steps,
|
366
|
+
.ui.seven.steps,
|
367
|
+
.ui.eight.steps {
|
368
|
+
display: block;
|
369
|
+
}
|
370
|
+
.ui.one.steps > .step {
|
371
|
+
width: 100%;
|
372
|
+
}
|
373
|
+
.ui.two.steps > .step {
|
374
|
+
width: 50%;
|
375
|
+
}
|
376
|
+
.ui.three.steps > .step {
|
377
|
+
width: 33.333%;
|
378
|
+
}
|
379
|
+
.ui.four.steps > .step {
|
380
|
+
width: 25%;
|
381
|
+
}
|
382
|
+
.ui.five.steps > .step {
|
383
|
+
width: 20%;
|
384
|
+
}
|
385
|
+
.ui.six.steps > .step {
|
386
|
+
width: 16.666%;
|
387
|
+
}
|
388
|
+
.ui.seven.steps > .step {
|
389
|
+
width: 14.285%;
|
390
|
+
}
|
391
|
+
.ui.eight.steps > .step {
|
392
|
+
width: 12.500%;
|
393
|
+
}
|
394
|
+
|
395
|
+
/*-------------------
|
396
|
+
Sizes
|
397
|
+
--------------------*/
|
398
|
+
|
399
|
+
.ui.small.step,
|
400
|
+
.ui.small.steps .step {
|
401
|
+
font-size: 0.92857143rem;
|
402
|
+
}
|
403
|
+
.ui.step,
|
404
|
+
.ui.steps .step {
|
405
|
+
font-size: 1rem;
|
406
|
+
}
|
407
|
+
.ui.large.step,
|
408
|
+
.ui.large.steps .step {
|
409
|
+
font-size: 1.14285714rem;
|
410
|
+
}
|
411
|
+
|
412
|
+
|
413
|
+
/*******************************
|
414
|
+
Theme Overrides
|
415
|
+
*******************************/
|
416
|
+
|
417
|
+
@font-face {
|
418
|
+
font-family: 'Step';
|
419
|
+
src: url(data:application/x-font-ttf;charset=utf-8;;base64,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) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAAoUAA4AAAAAEPQAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABRAAAAEQAAABWPeFJAWNtYXAAAAGIAAAAOgAAAUrQEhm3Y3Z0IAAAAcQAAAAUAAAAHAZJ/5RmcGdtAAAB2AAABPkAAAmRigp4O2dhc3AAAAbUAAAACAAAAAgAAAAQZ2x5ZgAABtwAAACuAAAAtt9nBHZoZWFkAAAHjAAAADUAAAA2ASs8e2hoZWEAAAfEAAAAIAAAACQHUwNNaG10eAAAB+QAAAAMAAAADAspAABsb2NhAAAH8AAAAAgAAAAIADgAW21heHAAAAf4AAAAIAAAACAApgm8bmFtZQAACBgAAAF3AAACzcydGhxwb3N0AAAJkAAAACoAAAA7rr1AmHByZXAAAAm8AAAAVgAAAFaSoZr/eJxjYGTewTiBgZWBg6mKaQ8DA0MPhGZ8wGDIyMTAwMTAysyAFQSkuaYwOLxgeMHIHPQ/iyGKmZvBHyjMCJIDAPe9C2B4nGNgYGBmgGAZBkYGEHAB8hjBfBYGDSDNBqQZGZgYGF4w/v8PUvCCAURLMELVAwEjG8OIBwBk5AavAAB4nGNgQANGDEbM3P83gjAAELQD4XicnVXZdtNWFJU8ZHASOmSgoA7X3DhQ68qEKRgwaSrFdiEdHAitBB2kDHTkncc+62uOQrtWH/m07n09JLR0rbYsls++R1tn2DrnRhwjKn0aiGvUoZKXA6msPZZK90lc13Uvj5UMBnFdthJPSZuonSRKat3sUC7xWOsqWSdYJ+PlIFZPVZ5noAziFB5lSUQbRBuplyZJ4onjJ4kWZxAfJUkgJaMQp9LIUEI1GsRS1aFM6dCr1xNx00DKRqMedVhU90PFJ8c1p9SsA0YqVznCFevVRr4bpwMve5DEOsGzrYcxHnisfpQqkIqR6cg/dkpOlIaBVHHUoVbi6DCTX/eRTCrNQKaMYkWl7oG43f102xYxPXQ6vi5KlUaqurnOKJrt0fGogygP2cbppNzQ2fbw5RlTVKtdcbPtQGYNXErJbHSfRAAdJlLj6QFONZwCqRn1R8XZ588BEslclKo8VTKHegOZMzt7cTHtbiersnCknwcyb3Z2452HQ6dXh3/R+hdM4cxHj+Jifj5C+lBqfiJOJKVGWMzyp4YfcVcgQrkxiAsXyuBThDl0RdrZZl3jtTH2hs/5SqlhPQna6KP4fgr9TiQrHGdRo/VInM1j13Wt3GdQS7W7Fzsyr0OVIu7vCwuuM+eEYZ4WC1VfnvneBTT/Bohn/EDeNIVL+5YpSrRvm6JMu2iKCu0SVKVdNsUU7YoppmnPmmKG9h1TzNKeMzLj/8vc55H7HN7xkJv2XeSmfQ+5ad9HbtoPkJtWITdtHblpLyA3rUZu2lWjOnYEGgZpF1IVQdA0svph3Fab9UDWjDR8aWDyLmLI+upER521tcofxX914gsHcmmip7siF5viLq/bFj483e6rj5pG3bDV+MaR8jAeRnocmtBZ+c3hv+1N3S6a7jKqMugBFUwKwABl7UAC0zrbCaT1mqf48gdgXIZ4zkpDtVSfO4am7+V5X/exOfG+x+3GLrdcd3kJWdYNcmP28N9SZKrrH+UtrVQnR6wrJ49VaxhDKrwour6SlHu0tRu/KKmy8l6U1srnk5CbPYMbQlu27mGwI0xpyiUeXlOlKD3UUo6yQyxvKco84JSLC1qGxLgOdQ9qa8TpoXoYGwshhqG0vRBwSCldFd+0ynfxHqtr2Oj4xRXh6XpyEhGf4ir7UfBU10b96A7avGbdMoMpVaqn+4xPsa/b9lFZaaSOsxe3VAfXNOsaORXTT+Rr4HRvOGjdAz1UfDRBI1U1x+jGKGM0ljXl3wR0MVZ+w2jVYvs93E+dpFWsuUuY7JsT9+C0u/0q+7WcW0bW/dcGvW3kip8jMb8tCvw7B2K3ZA3UO5OBGAvIWdAYxhYmdxiug23EbfY/Jqf/34aFRXJXOxq7eerD1ZNRJXfZ8rjLTXZZ16M2R9VOGvsIjS0PN+bY4XIstsRgQbb+wf8x7gF3aVEC4NDIZZiI2nShnurh6h6rsW04VxIBds2x43QAegAuQd8cu9bzCYD13CPnLsB9cgh2yCH4lByCz8i5BfA5OQRfkEMwIIdgl5w7AA/IIXhIDsEeOQSPyNkE+JIcgq/IIYjJIUjIuQ3wmByCJ+QQfE0OwTdGrk5k/pYH2QD6zqKbQKmdGhzaOGRGrk3Y+zxY9oFFZB9aROqRkesT6lMeLPV7i0j9wSJSfzRyY0L9iQdL/dkiUn+xiNRnxpeZIymvDp7zjg7+BJfqrV4AAAAAAQAB//8AD3icY2BkAALmJUwzGEQZZBwk+RkZGBmdGJgYmbIYgMwsoGSiiLgIs5A2owg7I5uSOqOaiT2jmZE8I5gQY17C/09BQEfg3yt+fh8gvYQxD0j68DOJiQn8U+DnZxQDcQUEljLmCwBpBgbG/3//b2SOZ+Zm4GEQcuAH2sblDLSEm8FFVJhJEGgLH6OSHpMdo5EcI3Nk0bEXJ/LYqvZ82VXHGFd6pKTkyCsQwQAAq+QkqAAAeJxjYGRgYADiw5VSsfH8Nl8ZuJlfAEUYzpvO6IXQCb7///7fyLyEmRvI5WBgAokCAFb/DJAAAAB4nGNgZGBgDvqfxRDF/IKB4f935iUMQBEUwAwAi5YFpgPoAAAD6AAAA1kAAAAAAAAAOABbAAEAAAADABYAAQAAAAAAAgAGABMAbgAAAC0JkQAAAAB4nHWQy2rCQBSG//HSi0JbWui2sypKabxgN4IgWHTTbqS4LTHGJBIzMhkFX6Pv0IfpS/RZ+puMpShNmMx3vjlz5mQAXOMbAvnzxJGzwBmjnAs4Rc9ykf7Zcon8YrmMKt4sn9C/W67gAYHlKm7wwQqidM5ogU/LAlfi0nIBF+LOcpH+0XKJ3LNcxq14tXxC71muYCJSy1Xci6+BWm11FIRG1gZ12W62OnK6lYoqStxYumsTKp3KvpyrxPhxrBxPLfc89oN17Op9uJ8nvk4jlciW09yrkZ/42jX+bFc93QRtY+ZyrtVSDm2GXGm18D3jhMasuo3G3/MwgMIKW2hEvKoQBhI12jrnNppooUOaMkMyM8+KkMBFTONizR1htpIy7nPMGSW0PjNisgOP3+WRH5MC7o9ZRR+tHsYT0u6MKPOSfTns7jBrREqyTDezs9/eU2x4WpvWcNeuS511JTE8qCF5H7u1BY1H72S3Ymi7aPD95/9+AN1fhEsAeJxjYGKAAC4G7ICZgYGRiZGZMzkjNTk7N7Eomy05syg5J5WBAQBE1QZBAABLuADIUlixAQGOWbkIAAgAYyCwASNEsAMjcLIEKAlFUkSyCgIHKrEGAUSxJAGIUViwQIhYsQYDRLEmAYhRWLgEAIhYsQYBRFlZWVm4Af+FsASNsQUARAAA) format('woff');
|
420
|
+
}
|
421
|
+
.ui.steps .step.completed > .icon:before,
|
422
|
+
.ui.ordered.steps .step.completed:before {
|
423
|
+
font-family: 'Step';
|
424
|
+
content: '\e800';
|
425
|
+
|
426
|
+
/* '' */
|
427
|
+
}
|
428
|
+
|
429
|
+
|
430
|
+
/*******************************
|
431
|
+
Site Overrides
|
432
|
+
*******************************/
|
433
|
+
|