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
|
+
.dimmable{position:relative}.ui.dimmer{display:none;position:absolute;top:0!important;left:0!important;width:100%;height:100%;text-align:center;vertical-align:middle;background:rgba(0,0,0,.85);opacity:0;line-height:1;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.5s;animation-duration:.5s;-webkit-transition:background-color .5s linear;transition:background-color .5s linear;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;will-change:opacity;z-index:1000}.ui.dimmer>.content{width:100%;height:100%;display:table;-webkit-user-select:text;-moz-user-select:text;-ms-user-select:text;user-select:text}.ui.dimmer>.content>div{display:table-cell;vertical-align:middle;color:#fff}.ui.segment>.ui.dimmer{border-radius:inherit!important}.animating.dimmable:not(body),.dimmed.dimmable:not(body){overflow:hidden}.dimmed.dimmable>.ui.animating.dimmer,.dimmed.dimmable>.ui.visible.dimmer,.ui.active.dimmer{display:block;opacity:1}.ui.disabled.dimmer{width:0!important;height:0!important}.ui.page.dimmer{position:fixed;-webkit-transform-style:'';transform-style:'';-webkit-perspective:2000px;perspective:2000px;-webkit-transform-origin:center center;-ms-transform-origin:center center;transform-origin:center center}body.animating.in.dimmable,body.dimmed.dimmable{overflow:hidden}body.dimmable>.dimmer{position:fixed}.ui.dimmer>.top.aligned.content>*{vertical-align:top}.ui.dimmer>.bottom.aligned.content>*{vertical-align:bottom}.ui.inverted.dimmer{background:rgba(255,255,255,.85)}.ui.inverted.dimmer>.content>*{color:#fff}.ui.simple.dimmer{display:block;overflow:hidden;opacity:1;width:0;height:0;z-index:-100;background-color:transparent}.dimmed.dimmable>.ui.simple.dimmer{overflow:visible;opacity:1;width:100%;height:100%;background:rgba(0,0,0,.85);z-index:1}.ui.simple.inverted.dimmer{background:rgba(255,255,255,0)}.dimmed.dimmable>.ui.simple.inverted.dimmer{background:rgba(255,255,255,.85)}
|
@@ -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,i,n,t){e.fn.dimmer=function(i){var o,a=e(this),r=(new Date).getTime(),m=[],s=arguments[0],d="string"==typeof s,c=[].slice.call(arguments,1);return a.each(function(){var u,l,f,g=e.isPlainObject(i)?e.extend(!0,{},e.fn.dimmer.settings,i):e.extend({},e.fn.dimmer.settings),h=g.selector,p=g.namespace,b=g.className,v=g.error,C="."+p,w="module-"+p,y=a.selector||"",D="ontouchstart"in n.documentElement?"touchstart":"click",S=e(this),T=this,N=S.data(w);f={preinitialize:function(){f.is.dimmer()?(l=S.parent(),u=S):(l=S,u=f.has.dimmer()?g.dimmerName?l.children(h.dimmer).filter("."+g.dimmerName):l.children(h.dimmer):f.create())},initialize:function(){f.debug("Initializing dimmer",g),"hover"==g.on?l.on("mouseenter"+C,f.show).on("mouseleave"+C,f.hide):"click"==g.on&&l.on(D+C,f.toggle),f.is.page()&&(f.debug("Setting as a page dimmer",l),f.set.pageDimmer()),f.is.closable()&&(f.verbose("Adding dimmer close event",u),u.on(D+C,f.event.click)),f.set.dimmable(),f.instantiate()},instantiate:function(){f.verbose("Storing instance of module",f),N=f,S.data(w,N)},destroy:function(){f.verbose("Destroying previous module",u),S.removeData(w),l.off(C),u.off(C)},event:{click:function(i){f.verbose("Determining if event occured on dimmer",i),(0===u.find(i.target).length||e(i.target).is(h.content))&&(f.hide(),i.stopImmediatePropagation())}},addContent:function(i){var n=e(i);f.debug("Add content to dimmer",n),n.parent()[0]!==u[0]&&n.detach().appendTo(u)},create:function(){var i=e(g.template.dimmer());return g.variation&&(f.debug("Creating dimmer with variation",g.variation),i.addClass(b.variation)),g.dimmerName&&(f.debug("Creating named dimmer",g.dimmerName),i.addClass(g.dimmerName)),i.appendTo(l),i},show:function(i){i=e.isFunction(i)?i:function(){},f.debug("Showing dimmer",u,g),f.is.dimmed()&&!f.is.animating()||!f.is.enabled()?f.debug("Dimmer is already shown or disabled"):(f.animate.show(i),g.onShow.call(T),g.onChange.call(T))},hide:function(i){i=e.isFunction(i)?i:function(){},f.is.dimmed()||f.is.animating()?(f.debug("Hiding dimmer",u),f.animate.hide(i),g.onHide.call(T),g.onChange.call(T)):f.debug("Dimmer is not visible")},toggle:function(){f.verbose("Toggling dimmer visibility",u),f.is.dimmed()?f.hide():f.show()},animate:{show:function(i){i=e.isFunction(i)?i:function(){},g.useCSS&&e.fn.transition!==t&&u.transition("is supported")?u.transition({animation:g.transition+" in",queue:!1,duration:f.get.duration(),onStart:function(){f.set.dimmed()},onComplete:function(){f.set.active(),i()}}):(f.verbose("Showing dimmer animation with javascript"),f.set.dimmed(),u.stop().css({opacity:0,width:"100%",height:"100%"}).fadeTo(f.get.duration(),1,function(){u.removeAttr("style"),f.set.active(),i()}))},hide:function(i){i=e.isFunction(i)?i:function(){},g.useCSS&&e.fn.transition!==t&&u.transition("is supported")?(f.verbose("Hiding dimmer with css"),u.transition({animation:g.transition+" out",queue:!1,duration:f.get.duration(),onStart:function(){f.remove.dimmed()},onComplete:function(){f.remove.active(),i()}})):(f.verbose("Hiding dimmer with javascript"),f.remove.dimmed(),u.stop().fadeOut(f.get.duration(),function(){f.remove.active(),u.removeAttr("style"),i()}))}},get:{dimmer:function(){return u},duration:function(){return"object"==typeof g.duration?f.is.active()?g.duration.hide:g.duration.show:g.duration}},has:{dimmer:function(){return g.dimmerName?S.children(h.dimmer).filter("."+g.dimmerName).length>0:S.children(h.dimmer).length>0}},is:{active:function(){return u.hasClass(b.active)},animating:function(){return u.is(":animated")||u.hasClass(b.animating)},closable:function(){return"auto"==g.closable?"hover"==g.on?!1:!0:g.closable},dimmer:function(){return S.is(h.dimmer)},dimmable:function(){return S.is(h.dimmable)},dimmed:function(){return l.hasClass(b.dimmed)},disabled:function(){return l.hasClass(b.disabled)},enabled:function(){return!f.is.disabled()},page:function(){return l.is("body")},pageDimmer:function(){return u.hasClass(b.pageDimmer)}},can:{show:function(){return!u.hasClass(b.disabled)}},set:{active:function(){u.addClass(b.active)},dimmable:function(){l.addClass(b.dimmable)},dimmed:function(){l.addClass(b.dimmed)},pageDimmer:function(){u.addClass(b.pageDimmer)},disabled:function(){u.addClass(b.disabled)}},remove:{active:function(){u.removeClass(b.active)},dimmed:function(){l.removeClass(b.dimmed)},disabled:function(){u.removeClass(b.disabled)}},setting:function(i,n){if(f.debug("Changing setting",i,n),e.isPlainObject(i))e.extend(!0,g,i);else{if(n===t)return g[i];g[i]=n}},internal:function(i,n){if(e.isPlainObject(i))e.extend(!0,f,i);else{if(n===t)return f[i];f[i]=n}},debug:function(){g.debug&&(g.performance?f.performance.log(arguments):(f.debug=Function.prototype.bind.call(console.info,console,g.name+":"),f.debug.apply(console,arguments)))},verbose:function(){g.verbose&&g.debug&&(g.performance?f.performance.log(arguments):(f.verbose=Function.prototype.bind.call(console.info,console,g.name+":"),f.verbose.apply(console,arguments)))},error:function(){f.error=Function.prototype.bind.call(console.error,console,g.name+":"),f.error.apply(console,arguments)},performance:{log:function(e){var i,n,t;g.performance&&(i=(new Date).getTime(),t=r||i,n=i-t,r=i,m.push({Name:e[0],Arguments:[].slice.call(e,1)||"",Element:T,"Execution Time":n})),clearTimeout(f.performance.timer),f.performance.timer=setTimeout(f.performance.display,100)},display:function(){var i=g.name+":",n=0;r=!1,clearTimeout(f.performance.timer),e.each(m,function(e,i){n+=i["Execution Time"]}),i+=" "+n+"ms",y&&(i+=" '"+y+"'"),a.length>1&&(i+=" ("+a.length+")"),(console.group!==t||console.table!==t)&&m.length>0&&(console.groupCollapsed(i),console.table?console.table(m):e.each(m,function(e,i){console.log(i.Name+": "+i["Execution Time"]+"ms")}),console.groupEnd()),m=[]}},invoke:function(i,n,a){var r,m,s,d=N;return n=n||c,a=T||a,"string"==typeof i&&d!==t&&(i=i.split(/[\. ]/),r=i.length-1,e.each(i,function(n,o){var a=n!=r?o+i[n+1].charAt(0).toUpperCase()+i[n+1].slice(1):i;if(e.isPlainObject(d[a])&&n!=r)d=d[a];else{if(d[a]!==t)return m=d[a],!1;if(!e.isPlainObject(d[o])||n==r)return d[o]!==t?(m=d[o],!1):(f.error(v.method,i),!1);d=d[o]}})),e.isFunction(m)?s=m.apply(a,n):m!==t&&(s=m),e.isArray(o)?o.push(s):o!==t?o=[o,s]:s!==t&&(o=s),m}},f.preinitialize(),d?(N===t&&f.initialize(),f.invoke(s)):(N!==t&&f.destroy(),f.initialize())}),o!==t?o:this},e.fn.dimmer.settings={name:"Dimmer",namespace:"dimmer",debug:!1,verbose:!0,performance:!0,dimmerName:!1,variation:!1,closable:"auto",transition:"fade",useCSS:!0,on:!1,duration:{show:500,hide:500},onChange:function(){},onShow:function(){},onHide:function(){},error:{method:"The method you called is not defined."},selector:{dimmable:".dimmable",dimmer:".ui.dimmer",content:".ui.dimmer > .content, .ui.dimmer > .content > .center"},template:{dimmer:function(){return e("<div />").attr("class","ui dimmer")}},className:{active:"active",animating:"animating",dimmable:"dimmable",dimmed:"dimmed",disabled:"disabled",hide:"hide",pageDimmer:"page",show:"show"}}}(jQuery,window,document);
|
@@ -0,0 +1,244 @@
|
|
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
|
+
Divider
|
16
|
+
*******************************/
|
17
|
+
|
18
|
+
.ui.divider {
|
19
|
+
margin: 1rem 0rem;
|
20
|
+
line-height: 1;
|
21
|
+
height: 0em;
|
22
|
+
font-weight: bold;
|
23
|
+
text-transform: uppercase;
|
24
|
+
letter-spacing: 0.05em;
|
25
|
+
color: rgba(0, 0, 0, 0.85);
|
26
|
+
-webkit-user-select: none;
|
27
|
+
-moz-user-select: none;
|
28
|
+
-ms-user-select: none;
|
29
|
+
user-select: none;
|
30
|
+
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
31
|
+
}
|
32
|
+
|
33
|
+
/*--------------
|
34
|
+
Basic
|
35
|
+
---------------*/
|
36
|
+
|
37
|
+
.ui.divider:not(.vertical):not(.horizontal) {
|
38
|
+
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
39
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
40
|
+
}
|
41
|
+
|
42
|
+
/*--------------
|
43
|
+
Coupling
|
44
|
+
---------------*/
|
45
|
+
|
46
|
+
.ui.grid > .ui.divider {
|
47
|
+
font-size: 1rem;
|
48
|
+
}
|
49
|
+
|
50
|
+
/*--------------
|
51
|
+
Horizontal
|
52
|
+
---------------*/
|
53
|
+
|
54
|
+
.ui.horizontal.divider {
|
55
|
+
position: relative;
|
56
|
+
height: auto;
|
57
|
+
margin: '';
|
58
|
+
overflow: hidden;
|
59
|
+
line-height: 1;
|
60
|
+
text-align: center;
|
61
|
+
}
|
62
|
+
.ui.horizontal.divider:before,
|
63
|
+
.ui.horizontal.divider:after {
|
64
|
+
position: absolute;
|
65
|
+
content: '';
|
66
|
+
z-index: 3;
|
67
|
+
width: 50%;
|
68
|
+
top: 50%;
|
69
|
+
height: 0px;
|
70
|
+
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
71
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
72
|
+
}
|
73
|
+
.ui.horizontal.divider:before {
|
74
|
+
margin-left: -webkit-calc(-50% - 1em );
|
75
|
+
margin-left: calc(-50% - 1em );
|
76
|
+
}
|
77
|
+
.ui.horizontal.divider:after {
|
78
|
+
margin-left: 1em;
|
79
|
+
}
|
80
|
+
|
81
|
+
/*--------------
|
82
|
+
Vertical
|
83
|
+
---------------*/
|
84
|
+
|
85
|
+
.ui.vertical.divider {
|
86
|
+
position: absolute;
|
87
|
+
z-index: 2;
|
88
|
+
top: 50%;
|
89
|
+
left: 50%;
|
90
|
+
margin: 0rem;
|
91
|
+
padding: 0em;
|
92
|
+
width: auto;
|
93
|
+
height: 50%;
|
94
|
+
line-height: 0em;
|
95
|
+
text-align: center;
|
96
|
+
-webkit-transform: translateX(-50%);
|
97
|
+
-ms-transform: translateX(-50%);
|
98
|
+
transform: translateX(-50%);
|
99
|
+
}
|
100
|
+
.ui.vertical.divider:before,
|
101
|
+
.ui.vertical.divider:after {
|
102
|
+
position: absolute;
|
103
|
+
left: 50%;
|
104
|
+
content: '';
|
105
|
+
z-index: 3;
|
106
|
+
border-left: 1px solid rgba(0, 0, 0, 0.1);
|
107
|
+
border-right: 1px solid rgba(255, 255, 255, 0.2);
|
108
|
+
width: 0%;
|
109
|
+
height: -webkit-calc(100% - 1rem );
|
110
|
+
height: calc(100% - 1rem );
|
111
|
+
}
|
112
|
+
.ui.vertical.divider:before {
|
113
|
+
top: -100%;
|
114
|
+
}
|
115
|
+
.ui.vertical.divider:after {
|
116
|
+
top: auto;
|
117
|
+
bottom: 0px;
|
118
|
+
}
|
119
|
+
|
120
|
+
/* Inside grid */
|
121
|
+
@media only screen and (max-width: 767px) {
|
122
|
+
.ui.stackable.grid .ui.vertical.divider,
|
123
|
+
.ui.grid .stackable.row .ui.vertical.divider {
|
124
|
+
position: relative;
|
125
|
+
margin: 1rem 0rem;
|
126
|
+
left: 50%;
|
127
|
+
height: auto;
|
128
|
+
overflow: hidden;
|
129
|
+
line-height: 1;
|
130
|
+
text-align: center;
|
131
|
+
}
|
132
|
+
.ui.stackable.grid .ui.vertical.divider:before,
|
133
|
+
.ui.grid .stackable.row .ui.vertical.divider:before,
|
134
|
+
.ui.stackable.grid .ui.vertical.divider:after,
|
135
|
+
.ui.grid .stackable.row .ui.vertical.divider:after {
|
136
|
+
position: absolute;
|
137
|
+
left: auto;
|
138
|
+
content: '';
|
139
|
+
z-index: 3;
|
140
|
+
width: 50%;
|
141
|
+
top: 50%;
|
142
|
+
height: 0px;
|
143
|
+
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
144
|
+
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
145
|
+
}
|
146
|
+
.ui.stackable.grid .ui.vertical.divider:before,
|
147
|
+
.ui.grid .stackable.row .ui.vertical.divider:before {
|
148
|
+
margin-left: -51%;
|
149
|
+
}
|
150
|
+
.ui.stackable.grid .ui.vertical.divider:after,
|
151
|
+
.ui.grid .stackable.row .ui.vertical.divider:after {
|
152
|
+
margin-left: 1em;
|
153
|
+
}
|
154
|
+
}
|
155
|
+
|
156
|
+
/*--------------
|
157
|
+
Icon
|
158
|
+
---------------*/
|
159
|
+
|
160
|
+
.ui.divider > .icon {
|
161
|
+
margin: 0rem;
|
162
|
+
font-size: 1rem;
|
163
|
+
height: 1em;
|
164
|
+
vertical-align: middle;
|
165
|
+
}
|
166
|
+
|
167
|
+
|
168
|
+
/*******************************
|
169
|
+
Variations
|
170
|
+
*******************************/
|
171
|
+
|
172
|
+
|
173
|
+
/*--------------
|
174
|
+
Hidden
|
175
|
+
---------------*/
|
176
|
+
|
177
|
+
.ui.hidden.divider {
|
178
|
+
border-color: transparent !important;
|
179
|
+
}
|
180
|
+
|
181
|
+
/*--------------
|
182
|
+
Inverted
|
183
|
+
---------------*/
|
184
|
+
|
185
|
+
.ui.divider.inverted {
|
186
|
+
color: #ffffff;
|
187
|
+
}
|
188
|
+
.ui.vertical.inverted.divider,
|
189
|
+
.ui.horizontal.inverted.divider {
|
190
|
+
color: #ffffff;
|
191
|
+
}
|
192
|
+
.ui.divider.inverted,
|
193
|
+
.ui.divider.inverted:after,
|
194
|
+
.ui.divider.inverted:before {
|
195
|
+
border-top-color: rgba(0, 0, 0, 0.15) !important;
|
196
|
+
border-bottom-color: rgba(255, 255, 255, 0.15) !important;
|
197
|
+
border-left-color: rgba(0, 0, 0, 0.15) !important;
|
198
|
+
border-right-color: rgba(255, 255, 255, 0.15) !important;
|
199
|
+
}
|
200
|
+
|
201
|
+
/*--------------
|
202
|
+
Fitted
|
203
|
+
---------------*/
|
204
|
+
|
205
|
+
.ui.fitted.divider {
|
206
|
+
margin: 0em;
|
207
|
+
}
|
208
|
+
|
209
|
+
/*--------------
|
210
|
+
Clearing
|
211
|
+
---------------*/
|
212
|
+
|
213
|
+
.ui.clearing.divider {
|
214
|
+
clear: both;
|
215
|
+
}
|
216
|
+
|
217
|
+
/*--------------
|
218
|
+
Section
|
219
|
+
---------------*/
|
220
|
+
|
221
|
+
.ui.section.divider {
|
222
|
+
margin-top: 2rem;
|
223
|
+
margin-bottom: 2rem;
|
224
|
+
}
|
225
|
+
|
226
|
+
/*--------------
|
227
|
+
Sizes
|
228
|
+
---------------*/
|
229
|
+
|
230
|
+
.ui.divider {
|
231
|
+
font-size: 1rem;
|
232
|
+
}
|
233
|
+
|
234
|
+
|
235
|
+
/*******************************
|
236
|
+
Theme Overrides
|
237
|
+
*******************************/
|
238
|
+
|
239
|
+
|
240
|
+
|
241
|
+
/*******************************
|
242
|
+
Site Overrides
|
243
|
+
*******************************/
|
244
|
+
|
@@ -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.divider{margin:1rem 0;line-height:1;height:0;font-weight:700;text-transform:uppercase;letter-spacing:.05em;color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent}.ui.divider:not(.vertical):not(.horizontal){border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.grid>.ui.divider{font-size:1rem}.ui.horizontal.divider{position:relative;height:auto;margin:'';overflow:hidden;line-height:1;text-align:center}.ui.horizontal.divider:after,.ui.horizontal.divider:before{position:absolute;content:'';z-index:3;width:50%;top:50%;height:0;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.horizontal.divider:before{margin-left:-webkit-calc(-50% - 1em);margin-left:calc(-50% - 1em)}.ui.horizontal.divider:after{margin-left:1em}.ui.vertical.divider{position:absolute;z-index:2;top:50%;left:50%;margin:0;padding:0;width:auto;height:50%;line-height:0;text-align:center;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.ui.vertical.divider:after,.ui.vertical.divider:before{position:absolute;left:50%;content:'';z-index:3;border-left:1px solid rgba(0,0,0,.1);border-right:1px solid rgba(255,255,255,.2);width:0;height:-webkit-calc(100% - 1rem);height:calc(100% - 1rem)}.ui.vertical.divider:before{top:-100%}.ui.vertical.divider:after{top:auto;bottom:0}@media only screen and (max-width:767px){.ui.grid .stackable.row .ui.vertical.divider,.ui.stackable.grid .ui.vertical.divider{position:relative;margin:1rem 0;left:50%;height:auto;overflow:hidden;line-height:1;text-align:center}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:before{position:absolute;left:auto;content:'';z-index:3;width:50%;top:50%;height:0;border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(255,255,255,.2)}.ui.grid .stackable.row .ui.vertical.divider:before,.ui.stackable.grid .ui.vertical.divider:before{margin-left:-51%}.ui.grid .stackable.row .ui.vertical.divider:after,.ui.stackable.grid .ui.vertical.divider:after{margin-left:1em}}.ui.divider>.icon{margin:0;font-size:1rem;height:1em;vertical-align:middle}.ui.hidden.divider{border-color:transparent!important}.ui.divider.inverted,.ui.horizontal.inverted.divider,.ui.vertical.inverted.divider{color:#fff}.ui.divider.inverted,.ui.divider.inverted:after,.ui.divider.inverted:before{border-top-color:rgba(0,0,0,.15)!important;border-bottom-color:rgba(255,255,255,.15)!important;border-left-color:rgba(0,0,0,.15)!important;border-right-color:rgba(255,255,255,.15)!important}.ui.fitted.divider{margin:0}.ui.clearing.divider{clear:both}.ui.section.divider{margin-top:2rem;margin-bottom:2rem}.ui.divider{font-size:1rem}
|
@@ -0,0 +1,1085 @@
|
|
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
|
+
Dropdown
|
16
|
+
*******************************/
|
17
|
+
|
18
|
+
.ui.dropdown {
|
19
|
+
cursor: pointer;
|
20
|
+
position: relative;
|
21
|
+
display: inline-block;
|
22
|
+
line-height: 1em;
|
23
|
+
tap-highlight-color: rgba(0, 0, 0, 0);
|
24
|
+
outline: none;
|
25
|
+
text-align: left;
|
26
|
+
-webkit-transition: border-radius 0.1s ease, width 0.2s ease;
|
27
|
+
transition: border-radius 0.1s ease, width 0.2s ease;
|
28
|
+
}
|
29
|
+
|
30
|
+
|
31
|
+
/*******************************
|
32
|
+
Content
|
33
|
+
*******************************/
|
34
|
+
|
35
|
+
|
36
|
+
/*--------------
|
37
|
+
Menu
|
38
|
+
---------------*/
|
39
|
+
|
40
|
+
.ui.dropdown .menu {
|
41
|
+
cursor: auto;
|
42
|
+
position: absolute;
|
43
|
+
display: none;
|
44
|
+
outline: none;
|
45
|
+
top: 100%;
|
46
|
+
margin: 0em;
|
47
|
+
padding: 0em 0em;
|
48
|
+
background: #ffffff;
|
49
|
+
min-width: 100%;
|
50
|
+
white-space: nowrap;
|
51
|
+
font-size: 1rem;
|
52
|
+
text-shadow: none;
|
53
|
+
text-align: left;
|
54
|
+
box-shadow: 0px 1px 4px 0px rgba(39, 41, 43, 0.15);
|
55
|
+
border: 1px solid rgba(39, 41, 43, 0.15);
|
56
|
+
border-radius: 0em 0em 0.2857rem 0.2857rem;
|
57
|
+
-webkit-transition: opacity 0.2s ease;
|
58
|
+
transition: opacity 0.2s ease;
|
59
|
+
z-index: 11;
|
60
|
+
will-change: transform, opacity;
|
61
|
+
}
|
62
|
+
|
63
|
+
/*--------------
|
64
|
+
Hidden Input
|
65
|
+
---------------*/
|
66
|
+
|
67
|
+
.ui.dropdown > input[type="hidden"],
|
68
|
+
.ui.dropdown > select {
|
69
|
+
display: none !important;
|
70
|
+
}
|
71
|
+
|
72
|
+
/*--------------
|
73
|
+
Dropdown Icon
|
74
|
+
---------------*/
|
75
|
+
|
76
|
+
.ui.dropdown > .dropdown.icon {
|
77
|
+
width: auto;
|
78
|
+
margin: 0em 0em 0em 1em;
|
79
|
+
}
|
80
|
+
.ui.dropdown .menu > .item .dropdown.icon {
|
81
|
+
width: auto;
|
82
|
+
float: right;
|
83
|
+
margin: 0.2em 0em 0em 1em;
|
84
|
+
}
|
85
|
+
.ui.dropdown .menu > .item .dropdown.icon + .text {
|
86
|
+
margin-right: 1em;
|
87
|
+
}
|
88
|
+
|
89
|
+
/*--------------
|
90
|
+
Text
|
91
|
+
---------------*/
|
92
|
+
|
93
|
+
.ui.dropdown > .text {
|
94
|
+
display: inline-block;
|
95
|
+
-webkit-transition: color 0.2s ease;
|
96
|
+
transition: color 0.2s ease;
|
97
|
+
}
|
98
|
+
|
99
|
+
/*--------------
|
100
|
+
Menu Item
|
101
|
+
---------------*/
|
102
|
+
|
103
|
+
.ui.dropdown .menu > .item {
|
104
|
+
position: relative;
|
105
|
+
cursor: pointer;
|
106
|
+
display: block;
|
107
|
+
border: none;
|
108
|
+
height: auto;
|
109
|
+
border-top: none;
|
110
|
+
line-height: 1.2em;
|
111
|
+
color: rgba(0, 0, 0, 0.8);
|
112
|
+
padding: 0.65rem 1.25rem !important;
|
113
|
+
font-size: 1rem;
|
114
|
+
text-transform: none;
|
115
|
+
font-weight: normal;
|
116
|
+
box-shadow: none;
|
117
|
+
-webkit-touch-callout: none;
|
118
|
+
}
|
119
|
+
.ui.dropdown .menu > .item:first-child {
|
120
|
+
border-top-width: 0px;
|
121
|
+
}
|
122
|
+
|
123
|
+
/*--------------
|
124
|
+
Floated Content
|
125
|
+
---------------*/
|
126
|
+
|
127
|
+
.ui.dropdown > .text > [class*="right floated"],
|
128
|
+
.ui.dropdown .menu .item > [class*="right floated"] {
|
129
|
+
float: right !important;
|
130
|
+
margin-right: 0em !important;
|
131
|
+
margin-left: 1em !important;
|
132
|
+
}
|
133
|
+
.ui.dropdown > .text > [class*="left floated"],
|
134
|
+
.ui.dropdown .menu .item > [class*="left floated"] {
|
135
|
+
float: left !important;
|
136
|
+
margin-left: 0em !important;
|
137
|
+
margin-right: 1em !important;
|
138
|
+
}
|
139
|
+
.ui.dropdown .menu .item > .icon.floated,
|
140
|
+
.ui.dropdown .menu .item > .flag.floated,
|
141
|
+
.ui.dropdown .menu .item > .image.floated,
|
142
|
+
.ui.dropdown .menu .item > img.floated {
|
143
|
+
margin-top: 0.2em;
|
144
|
+
}
|
145
|
+
|
146
|
+
/*--------------
|
147
|
+
Menu Divider
|
148
|
+
---------------*/
|
149
|
+
|
150
|
+
.ui.dropdown .menu > .header {
|
151
|
+
margin: 1rem 0rem 0.75rem;
|
152
|
+
padding: 0em 1.25rem;
|
153
|
+
color: rgba(0, 0, 0, 0.85);
|
154
|
+
font-size: 0.8em;
|
155
|
+
font-weight: bold;
|
156
|
+
text-transform: uppercase;
|
157
|
+
}
|
158
|
+
.ui.dropdown .menu > .divider {
|
159
|
+
border-top: 1px solid rgba(0, 0, 0, 0.05);
|
160
|
+
height: 0em;
|
161
|
+
margin: 0.5em 0em;
|
162
|
+
}
|
163
|
+
.ui.dropdown .menu > .input {
|
164
|
+
margin: 0.75rem 1.25rem;
|
165
|
+
min-width: 200px;
|
166
|
+
}
|
167
|
+
.ui.dropdown .menu > .header + .input {
|
168
|
+
margin-top: 0em;
|
169
|
+
}
|
170
|
+
.ui.dropdown .menu > .input:not(.transparent) input {
|
171
|
+
padding: 0.5em 1em;
|
172
|
+
}
|
173
|
+
.ui.dropdown .menu > .input:not(.transparent) .button,
|
174
|
+
.ui.dropdown .menu > .input:not(.transparent) .icon,
|
175
|
+
.ui.dropdown .menu > .input:not(.transparent) .label {
|
176
|
+
padding-top: 0.5em;
|
177
|
+
padding-bottom: 0.5em;
|
178
|
+
}
|
179
|
+
|
180
|
+
/*-----------------
|
181
|
+
Item Description
|
182
|
+
-------------------*/
|
183
|
+
|
184
|
+
.ui.dropdown > .text > .description,
|
185
|
+
.ui.dropdown .menu > .item > .description {
|
186
|
+
margin: 0em 0em 0em 1em;
|
187
|
+
color: rgba(0, 0, 0, 0.4);
|
188
|
+
}
|
189
|
+
|
190
|
+
/*--------------
|
191
|
+
Sub Menu
|
192
|
+
---------------*/
|
193
|
+
|
194
|
+
.ui.dropdown .menu .menu {
|
195
|
+
top: 0% !important;
|
196
|
+
left: 100% !important;
|
197
|
+
right: auto !important;
|
198
|
+
margin: 0em 0em 0em -0.5em !important;
|
199
|
+
border-radius: 0em 0.2857rem 0.2857rem 0em !important;
|
200
|
+
z-index: 21 !important;
|
201
|
+
}
|
202
|
+
|
203
|
+
/* Hide Arrow */
|
204
|
+
.ui.dropdown .menu .menu:after {
|
205
|
+
display: none;
|
206
|
+
}
|
207
|
+
|
208
|
+
|
209
|
+
/*******************************
|
210
|
+
Coupling
|
211
|
+
*******************************/
|
212
|
+
|
213
|
+
|
214
|
+
/*--------------
|
215
|
+
Sub Elements
|
216
|
+
---------------*/
|
217
|
+
|
218
|
+
|
219
|
+
/* Icons / Flags / Labels / Image */
|
220
|
+
.ui.dropdown > .text > .icon,
|
221
|
+
.ui.dropdown > .text > .label,
|
222
|
+
.ui.dropdown > .text > .flag,
|
223
|
+
.ui.dropdown > .text > img,
|
224
|
+
.ui.dropdown > .text > .image {
|
225
|
+
margin-top: 0em;
|
226
|
+
}
|
227
|
+
.ui.dropdown .menu > .item > .icon,
|
228
|
+
.ui.dropdown .menu > .item > .label,
|
229
|
+
.ui.dropdown .menu > .item > .flag,
|
230
|
+
.ui.dropdown .menu > .item > .image,
|
231
|
+
.ui.dropdown .menu > .item > img {
|
232
|
+
margin-top: 0.2em;
|
233
|
+
}
|
234
|
+
.ui.dropdown > .text > .icon,
|
235
|
+
.ui.dropdown > .text > .label,
|
236
|
+
.ui.dropdown > .text > .flag,
|
237
|
+
.ui.dropdown > .text > img,
|
238
|
+
.ui.dropdown > .text > .image,
|
239
|
+
.ui.dropdown .menu > .item > .icon,
|
240
|
+
.ui.dropdown .menu > .item > .label,
|
241
|
+
.ui.dropdown .menu > .item > .flag,
|
242
|
+
.ui.dropdown .menu > .item > .image,
|
243
|
+
.ui.dropdown .menu > .item > img {
|
244
|
+
margin-left: 0em;
|
245
|
+
margin-right: 0.75em;
|
246
|
+
}
|
247
|
+
|
248
|
+
/*--------------
|
249
|
+
Image
|
250
|
+
---------------*/
|
251
|
+
|
252
|
+
.ui.dropdown > .text > img,
|
253
|
+
.ui.dropdown > .text > .image,
|
254
|
+
.ui.dropdown .menu > .item > .image,
|
255
|
+
.ui.dropdown .menu > .item > img {
|
256
|
+
display: inline-block;
|
257
|
+
vertical-align: middle;
|
258
|
+
width: auto;
|
259
|
+
max-height: 2.5em;
|
260
|
+
}
|
261
|
+
|
262
|
+
/*--------------
|
263
|
+
Menu
|
264
|
+
---------------*/
|
265
|
+
|
266
|
+
|
267
|
+
/* Remove Menu Item Divider */
|
268
|
+
.ui.dropdown .ui.menu > .item:before,
|
269
|
+
.ui.menu .ui.dropdown .menu > .item:before {
|
270
|
+
display: none;
|
271
|
+
}
|
272
|
+
|
273
|
+
/* Prevent Menu Item Border */
|
274
|
+
.ui.menu .ui.dropdown .menu .active.item {
|
275
|
+
border-left: none;
|
276
|
+
}
|
277
|
+
|
278
|
+
/* Automatically float dropdown menu right on last menu item */
|
279
|
+
.ui.menu .right.menu .dropdown:last-child .menu,
|
280
|
+
.ui.menu .right.dropdown.item .menu,
|
281
|
+
.ui.buttons > .ui.dropdown:last-child .menu {
|
282
|
+
left: auto;
|
283
|
+
right: 0em;
|
284
|
+
}
|
285
|
+
|
286
|
+
/*--------------
|
287
|
+
Button
|
288
|
+
---------------*/
|
289
|
+
|
290
|
+
|
291
|
+
/* No Margin On Icon Button */
|
292
|
+
.ui.dropdown.icon.button > .dropdown.icon {
|
293
|
+
margin: 0em;
|
294
|
+
}
|
295
|
+
.ui.dropdown.button:not(.pointing):not(.floating).active,
|
296
|
+
.ui.dropdown.button:not(.pointing):not(.floating).visible {
|
297
|
+
border-bottom-left-radius: 0em;
|
298
|
+
border-bottom-right-radius: 0em;
|
299
|
+
}
|
300
|
+
|
301
|
+
|
302
|
+
/*******************************
|
303
|
+
Types
|
304
|
+
*******************************/
|
305
|
+
|
306
|
+
|
307
|
+
/*--------------
|
308
|
+
Selection
|
309
|
+
---------------*/
|
310
|
+
|
311
|
+
|
312
|
+
/* Displays like a select box */
|
313
|
+
.ui.selection.dropdown {
|
314
|
+
cursor: pointer;
|
315
|
+
word-wrap: break-word;
|
316
|
+
white-space: normal;
|
317
|
+
outline: 0;
|
318
|
+
-webkit-transform: rotateZ(0deg);
|
319
|
+
transform: rotateZ(0deg);
|
320
|
+
min-width: 180px;
|
321
|
+
background: #ffffff;
|
322
|
+
display: inline-block;
|
323
|
+
padding: 0.8em 1.1em;
|
324
|
+
color: rgba(0, 0, 0, 0.8);
|
325
|
+
box-shadow: none;
|
326
|
+
border: 1px solid rgba(39, 41, 43, 0.15);
|
327
|
+
border-radius: 0.2857rem;
|
328
|
+
-webkit-transition: border-radius 0.1s ease, width 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
|
329
|
+
transition: border-radius 0.1s ease, width 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
|
330
|
+
}
|
331
|
+
.ui.selection.dropdown.visible,
|
332
|
+
.ui.selection.dropdown.active {
|
333
|
+
z-index: 10;
|
334
|
+
}
|
335
|
+
select.ui.dropdown {
|
336
|
+
height: 38px;
|
337
|
+
padding: 0em;
|
338
|
+
margin: 0em;
|
339
|
+
visibility: hidden;
|
340
|
+
}
|
341
|
+
.ui.selection.dropdown > .text {
|
342
|
+
margin-right: 2em;
|
343
|
+
}
|
344
|
+
.ui.selection.dropdown > .search.icon,
|
345
|
+
.ui.selection.dropdown > .delete.icon,
|
346
|
+
.ui.selection.dropdown > .dropdown.icon {
|
347
|
+
position: absolute;
|
348
|
+
top: auto;
|
349
|
+
margin: 0em;
|
350
|
+
width: auto;
|
351
|
+
right: 1.1em;
|
352
|
+
opacity: 0.8;
|
353
|
+
-webkit-transition: opacity 0.2s ease;
|
354
|
+
transition: opacity 0.2s ease;
|
355
|
+
}
|
356
|
+
|
357
|
+
/* Compact */
|
358
|
+
.ui.compact.selection.dropdown {
|
359
|
+
min-width: 0px;
|
360
|
+
}
|
361
|
+
|
362
|
+
/* Selection Menu */
|
363
|
+
.ui.selection.dropdown .menu {
|
364
|
+
overflow-x: hidden;
|
365
|
+
overflow-y: auto;
|
366
|
+
-webkit-backface-visibility: hidden;
|
367
|
+
backface-visibility: hidden;
|
368
|
+
-webkit-overflow-scrolling: touch;
|
369
|
+
border-top-width: 0px !important;
|
370
|
+
width: auto;
|
371
|
+
margin: 0px -1px;
|
372
|
+
min-width: -webkit-calc(100% + 2px );
|
373
|
+
min-width: calc(100% + 2px );
|
374
|
+
outline: none;
|
375
|
+
box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
|
376
|
+
-webkit-transition: box-shadow 0.2s ease, border 0.2s ease;
|
377
|
+
transition: box-shadow 0.2s ease, border 0.2s ease;
|
378
|
+
}
|
379
|
+
.ui.selection.dropdown .menu:after,
|
380
|
+
.ui.selection.dropdown .menu:before {
|
381
|
+
display: none;
|
382
|
+
}
|
383
|
+
@media only screen and (max-width: 767px) {
|
384
|
+
.ui.selection.dropdown .menu {
|
385
|
+
max-height: 7.7142rem;
|
386
|
+
}
|
387
|
+
}
|
388
|
+
@media only screen and (min-width: 768px) {
|
389
|
+
.ui.selection.dropdown .menu {
|
390
|
+
max-height: 10.2856rem;
|
391
|
+
}
|
392
|
+
}
|
393
|
+
@media only screen and (min-width: 992px) {
|
394
|
+
.ui.selection.dropdown .menu {
|
395
|
+
max-height: 15.4284rem;
|
396
|
+
}
|
397
|
+
}
|
398
|
+
@media only screen and (min-width: 1920px) {
|
399
|
+
.ui.selection.dropdown .menu {
|
400
|
+
max-height: 20.5712rem;
|
401
|
+
}
|
402
|
+
}
|
403
|
+
|
404
|
+
/* Menu Item */
|
405
|
+
.ui.selection.dropdown .menu > .item {
|
406
|
+
border-top: 1px solid rgba(0, 0, 0, 0.05);
|
407
|
+
padding-left: 1.1em !important;
|
408
|
+
|
409
|
+
/* Add in spacing for scroll bar */
|
410
|
+
padding-right: -webkit-calc(2.1em) !important;
|
411
|
+
padding-right: calc(2.1em) !important;
|
412
|
+
white-space: normal;
|
413
|
+
word-wrap: normal;
|
414
|
+
}
|
415
|
+
|
416
|
+
/* Hover */
|
417
|
+
.ui.selection.dropdown:hover {
|
418
|
+
border-color: rgba(39, 41, 43, 0.3);
|
419
|
+
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
|
420
|
+
}
|
421
|
+
|
422
|
+
/* Disabled */
|
423
|
+
.ui.selection.dropdown.disabled,
|
424
|
+
.ui.selection.dropdown.disabled:hover {
|
425
|
+
cursor: default;
|
426
|
+
box-shadow: none;
|
427
|
+
color: rgba(0, 0, 0, 0.8);
|
428
|
+
border: 1px solid rgba(39, 41, 43, 0.15);
|
429
|
+
opacity: 0.3 !important;
|
430
|
+
}
|
431
|
+
|
432
|
+
/* Visible Hover */
|
433
|
+
.ui.selection.visible.dropdown:hover {
|
434
|
+
border-color: rgba(39, 41, 43, 0.3);
|
435
|
+
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
|
436
|
+
}
|
437
|
+
.ui.selection.visible.dropdown:hover .menu {
|
438
|
+
border: 1px solid rgba(39, 41, 43, 0.3);
|
439
|
+
box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.1);
|
440
|
+
}
|
441
|
+
|
442
|
+
/* Visible */
|
443
|
+
.ui.selection.dropdown.visible {
|
444
|
+
border-color: rgba(39, 41, 43, 0.15);
|
445
|
+
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
|
446
|
+
}
|
447
|
+
.ui.visible.selection.dropdown > .dropdown.icon {
|
448
|
+
opacity: 1;
|
449
|
+
}
|
450
|
+
|
451
|
+
/* Active Item */
|
452
|
+
.ui.selection.active.dropdown > .text:not(.default),
|
453
|
+
.ui.selection.visible.dropdown > .text:not(.default) {
|
454
|
+
font-weight: normal;
|
455
|
+
color: rgba(0, 0, 0, 0.8);
|
456
|
+
}
|
457
|
+
|
458
|
+
/* Connecting Border */
|
459
|
+
.ui.active.selection.dropdown,
|
460
|
+
.ui.visible.selection.dropdown {
|
461
|
+
border-bottom-left-radius: 0em !important;
|
462
|
+
border-bottom-right-radius: 0em !important;
|
463
|
+
}
|
464
|
+
|
465
|
+
/*--------------
|
466
|
+
Searchable
|
467
|
+
---------------*/
|
468
|
+
|
469
|
+
|
470
|
+
/* Search Selection */
|
471
|
+
.ui.search.dropdown {
|
472
|
+
min-width: '';
|
473
|
+
}
|
474
|
+
|
475
|
+
/* Search Dropdown */
|
476
|
+
.ui.search.dropdown > input.search {
|
477
|
+
background: none transparent !important;
|
478
|
+
border: none !important;
|
479
|
+
box-shadow: none !important;
|
480
|
+
border-radius: 0em !important;
|
481
|
+
cursor: pointer;
|
482
|
+
top: 0em;
|
483
|
+
left: 0em;
|
484
|
+
width: 100%;
|
485
|
+
outline: none;
|
486
|
+
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
|
487
|
+
padding: inherit;
|
488
|
+
}
|
489
|
+
|
490
|
+
/* Text Layering */
|
491
|
+
.ui.search.dropdown > input.search {
|
492
|
+
position: absolute;
|
493
|
+
z-index: 2;
|
494
|
+
}
|
495
|
+
.ui.search.dropdown > .text {
|
496
|
+
cursor: text;
|
497
|
+
position: relative;
|
498
|
+
z-index: 3;
|
499
|
+
}
|
500
|
+
|
501
|
+
/* Search Selection */
|
502
|
+
.ui.search.selection.dropdown > input.search {
|
503
|
+
line-height: 1.2142em;
|
504
|
+
padding: 0.6929em 1.1em;
|
505
|
+
}
|
506
|
+
|
507
|
+
/* Active/Visible Search */
|
508
|
+
.ui.search.dropdown.active > input.search,
|
509
|
+
.ui.search.dropdown.visible > input.search {
|
510
|
+
cursor: auto;
|
511
|
+
}
|
512
|
+
.ui.search.dropdown.active > .text,
|
513
|
+
.ui.search.dropdown.visible > .text {
|
514
|
+
pointer-events: none;
|
515
|
+
}
|
516
|
+
.ui.active.search.dropdown > input.search:focus + .text {
|
517
|
+
color: rgba(0, 0, 0, 0.4) !important;
|
518
|
+
}
|
519
|
+
|
520
|
+
/* Search Menu */
|
521
|
+
.ui.search.dropdown .menu {
|
522
|
+
overflow-x: hidden;
|
523
|
+
overflow-y: auto;
|
524
|
+
-webkit-backface-visibility: hidden;
|
525
|
+
backface-visibility: hidden;
|
526
|
+
-webkit-overflow-scrolling: touch;
|
527
|
+
}
|
528
|
+
@media only screen and (max-width: 767px) {
|
529
|
+
.ui.search.dropdown .menu {
|
530
|
+
max-height: 7.7142rem;
|
531
|
+
}
|
532
|
+
}
|
533
|
+
@media only screen and (min-width: 768px) {
|
534
|
+
.ui.search.dropdown .menu {
|
535
|
+
max-height: 10.2856rem;
|
536
|
+
}
|
537
|
+
}
|
538
|
+
@media only screen and (min-width: 992px) {
|
539
|
+
.ui.search.dropdown .menu {
|
540
|
+
max-height: 15.4284rem;
|
541
|
+
}
|
542
|
+
}
|
543
|
+
@media only screen and (min-width: 1920px) {
|
544
|
+
.ui.search.dropdown .menu {
|
545
|
+
max-height: 20.5712rem;
|
546
|
+
}
|
547
|
+
}
|
548
|
+
|
549
|
+
/*--------------
|
550
|
+
Inline
|
551
|
+
---------------*/
|
552
|
+
|
553
|
+
.ui.inline.dropdown {
|
554
|
+
cursor: pointer;
|
555
|
+
display: inline-block;
|
556
|
+
color: inherit;
|
557
|
+
}
|
558
|
+
.ui.inline.dropdown .dropdown.icon {
|
559
|
+
margin: 0em 0.5em 0em 0.25em;
|
560
|
+
vertical-align: top;
|
561
|
+
}
|
562
|
+
.ui.inline.dropdown > .text {
|
563
|
+
font-weight: bold;
|
564
|
+
}
|
565
|
+
.ui.inline.dropdown .menu {
|
566
|
+
cursor: auto;
|
567
|
+
margin-top: 0.25em;
|
568
|
+
border-radius: 0.2857rem;
|
569
|
+
}
|
570
|
+
|
571
|
+
|
572
|
+
/*******************************
|
573
|
+
States
|
574
|
+
*******************************/
|
575
|
+
|
576
|
+
|
577
|
+
/*--------------------
|
578
|
+
Hover
|
579
|
+
----------------------*/
|
580
|
+
|
581
|
+
|
582
|
+
/* Menu Item Hover */
|
583
|
+
.ui.dropdown .menu > .item:hover {
|
584
|
+
background: rgba(0, 0, 0, 0.05);
|
585
|
+
color: rgba(0, 0, 0, 0.8);
|
586
|
+
z-index: 12;
|
587
|
+
}
|
588
|
+
|
589
|
+
/*--------------------
|
590
|
+
Active
|
591
|
+
----------------------*/
|
592
|
+
|
593
|
+
|
594
|
+
/* Menu Item Active */
|
595
|
+
.ui.dropdown .menu .active.item {
|
596
|
+
background: transparent;
|
597
|
+
font-weight: bold;
|
598
|
+
color: rgba(0, 0, 0, 0.8);
|
599
|
+
box-shadow: none;
|
600
|
+
z-index: 12;
|
601
|
+
}
|
602
|
+
|
603
|
+
/*--------------------
|
604
|
+
Default Text
|
605
|
+
----------------------*/
|
606
|
+
|
607
|
+
.ui.dropdown > .default.text,
|
608
|
+
.ui.default.dropdown > .text {
|
609
|
+
color: rgba(179, 179, 179, 0.7);
|
610
|
+
}
|
611
|
+
.ui.dropdown:hover > .default.text,
|
612
|
+
.ui.default.dropdown:hover > .text {
|
613
|
+
color: rgba(140, 140, 140, 0.7);
|
614
|
+
}
|
615
|
+
|
616
|
+
/*--------------------
|
617
|
+
Loading
|
618
|
+
----------------------*/
|
619
|
+
|
620
|
+
.ui.loading.dropdown > .text {
|
621
|
+
-webkit-transition: none;
|
622
|
+
transition: none;
|
623
|
+
}
|
624
|
+
.ui.dropdown > .loading.menu {
|
625
|
+
display: block;
|
626
|
+
visibility: hidden;
|
627
|
+
z-index: -1;
|
628
|
+
}
|
629
|
+
|
630
|
+
/*--------------------
|
631
|
+
Keyboard Select
|
632
|
+
----------------------*/
|
633
|
+
|
634
|
+
|
635
|
+
/* Selected Item */
|
636
|
+
.ui.dropdown.selected,
|
637
|
+
.ui.dropdown .menu .selected.item {
|
638
|
+
background: rgba(0, 0, 0, 0.03);
|
639
|
+
color: rgba(0, 0, 0, 0.8);
|
640
|
+
}
|
641
|
+
|
642
|
+
/*--------------------
|
643
|
+
Search Filtered
|
644
|
+
----------------------*/
|
645
|
+
|
646
|
+
|
647
|
+
/* Filtered Item */
|
648
|
+
.ui.dropdown > .filtered.text {
|
649
|
+
visibility: hidden;
|
650
|
+
}
|
651
|
+
.ui.dropdown .filtered.item {
|
652
|
+
display: none;
|
653
|
+
}
|
654
|
+
|
655
|
+
/*--------------------
|
656
|
+
Error
|
657
|
+
----------------------*/
|
658
|
+
|
659
|
+
.ui.dropdown.error,
|
660
|
+
.ui.dropdown.error > .text,
|
661
|
+
.ui.dropdown.error > .default.text {
|
662
|
+
color: #a94442;
|
663
|
+
}
|
664
|
+
.ui.selection.dropdown.error {
|
665
|
+
background: #fff0f0;
|
666
|
+
border-color: #dbb1b1;
|
667
|
+
}
|
668
|
+
.ui.selection.dropdown.error:hover {
|
669
|
+
border-color: #dbb1b1;
|
670
|
+
}
|
671
|
+
.ui.dropdown.error > .menu,
|
672
|
+
.ui.dropdown.error > .menu .menu {
|
673
|
+
border-color: #dbb1b1;
|
674
|
+
}
|
675
|
+
.ui.dropdown.error > .menu > .item {
|
676
|
+
color: #d95c5c;
|
677
|
+
}
|
678
|
+
|
679
|
+
/* Item Hover */
|
680
|
+
.ui.dropdown.error > .menu > .item:hover {
|
681
|
+
background-color: #fff2f2;
|
682
|
+
}
|
683
|
+
|
684
|
+
/* Item Active */
|
685
|
+
.ui.dropdown.error > .menu .active.item {
|
686
|
+
background-color: #fdcfcf;
|
687
|
+
}
|
688
|
+
|
689
|
+
/*--------------------
|
690
|
+
Disabled
|
691
|
+
----------------------*/
|
692
|
+
|
693
|
+
|
694
|
+
/* Disabled */
|
695
|
+
.ui.disabled.dropdown {
|
696
|
+
cursor: default;
|
697
|
+
pointer-events: none;
|
698
|
+
opacity: 0.3;
|
699
|
+
}
|
700
|
+
|
701
|
+
|
702
|
+
/*******************************
|
703
|
+
Variations
|
704
|
+
*******************************/
|
705
|
+
|
706
|
+
|
707
|
+
/*--------------
|
708
|
+
Direction
|
709
|
+
---------------*/
|
710
|
+
|
711
|
+
|
712
|
+
/* Flyout Direction */
|
713
|
+
.ui.dropdown .menu {
|
714
|
+
left: 0px;
|
715
|
+
}
|
716
|
+
|
717
|
+
/* Default Side (Right) */
|
718
|
+
.ui.dropdown .right.menu > .menu,
|
719
|
+
.ui.dropdown .menu .right.menu {
|
720
|
+
left: 100% !important;
|
721
|
+
right: auto !important;
|
722
|
+
}
|
723
|
+
|
724
|
+
/* Left Flyout Menu */
|
725
|
+
.ui.dropdown > .left.menu .menu,
|
726
|
+
.ui.dropdown .menu .left.menu {
|
727
|
+
left: auto !important;
|
728
|
+
right: 100% !important;
|
729
|
+
}
|
730
|
+
.ui.dropdown .item .left.dropdown.icon,
|
731
|
+
.ui.dropdown .left.menu .item .dropdown.icon {
|
732
|
+
width: auto;
|
733
|
+
float: left;
|
734
|
+
margin: 0.2em 0.75em 0em 0em;
|
735
|
+
}
|
736
|
+
.ui.dropdown .item .left.dropdown.icon,
|
737
|
+
.ui.dropdown .left.menu .item .dropdown.icon {
|
738
|
+
width: auto;
|
739
|
+
float: left;
|
740
|
+
margin: 0.2em 0.75em 0em 0em;
|
741
|
+
}
|
742
|
+
.ui.dropdown .item .left.dropdown.icon + .text,
|
743
|
+
.ui.dropdown .left.menu .item .dropdown.icon + .text {
|
744
|
+
margin-left: 1em;
|
745
|
+
}
|
746
|
+
|
747
|
+
/*--------------
|
748
|
+
Upward
|
749
|
+
---------------*/
|
750
|
+
|
751
|
+
.ui.upward.dropdown > .menu {
|
752
|
+
top: auto;
|
753
|
+
bottom: 100%;
|
754
|
+
box-shadow: 0px 0px 4px 0px rgba(39, 41, 43, 0.15);
|
755
|
+
border-radius: 0.2857rem 0.2857rem 0em 0em;
|
756
|
+
}
|
757
|
+
|
758
|
+
/* Active Upward */
|
759
|
+
.ui.simple.upward.active.dropdown,
|
760
|
+
.ui.simple.upward.dropdown:hover {
|
761
|
+
border-radius: 0.2857rem 0.2857rem 0em 0em !important;
|
762
|
+
}
|
763
|
+
.ui.upward.dropdown.button:not(.pointing):not(.floating).active,
|
764
|
+
.ui.upward.dropdown.button:not(.pointing):not(.floating).visible {
|
765
|
+
border-radius: 0.2857rem 0.2857rem 0em 0em;
|
766
|
+
}
|
767
|
+
|
768
|
+
/* Selection */
|
769
|
+
.ui.upward.selection.dropdown .menu {
|
770
|
+
border-top-width: 1px !important;
|
771
|
+
border-bottom-width: 0px !important;
|
772
|
+
}
|
773
|
+
.ui.upward.selection.dropdown:hover {
|
774
|
+
box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
|
775
|
+
}
|
776
|
+
.ui.upward.selection.visible.dropdown:hover {
|
777
|
+
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.05);
|
778
|
+
}
|
779
|
+
.ui.active.upward.selection.dropdown,
|
780
|
+
.ui.visible.upward.selection.dropdown {
|
781
|
+
border-radius: 0em 0em 0.2857rem 0.2857rem !important;
|
782
|
+
}
|
783
|
+
.ui.upward.selection.dropdown.visible {
|
784
|
+
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
|
785
|
+
}
|
786
|
+
.ui.upward.selection.visible.dropdown:hover .menu {
|
787
|
+
box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.08);
|
788
|
+
}
|
789
|
+
|
790
|
+
/*--------------
|
791
|
+
Simple
|
792
|
+
---------------*/
|
793
|
+
|
794
|
+
|
795
|
+
/* Displays without javascript */
|
796
|
+
.ui.simple.dropdown .menu:before,
|
797
|
+
.ui.simple.dropdown .menu:after {
|
798
|
+
display: none;
|
799
|
+
}
|
800
|
+
.ui.simple.dropdown .menu {
|
801
|
+
position: absolute;
|
802
|
+
display: block;
|
803
|
+
overflow: hidden;
|
804
|
+
top: -9999px !important;
|
805
|
+
opacity: 0;
|
806
|
+
width: 0;
|
807
|
+
height: 0;
|
808
|
+
-webkit-transition: opacity 0.2s ease;
|
809
|
+
transition: opacity 0.2s ease;
|
810
|
+
}
|
811
|
+
.ui.simple.active.dropdown,
|
812
|
+
.ui.simple.dropdown:hover {
|
813
|
+
border-bottom-left-radius: 0em !important;
|
814
|
+
border-bottom-right-radius: 0em !important;
|
815
|
+
}
|
816
|
+
.ui.simple.active.dropdown > .menu,
|
817
|
+
.ui.simple.dropdown:hover > .menu {
|
818
|
+
overflow: visible;
|
819
|
+
width: auto;
|
820
|
+
height: auto;
|
821
|
+
top: 100% !important;
|
822
|
+
opacity: 1;
|
823
|
+
}
|
824
|
+
.ui.simple.dropdown > .menu > .item:active > .menu,
|
825
|
+
.ui.simple.dropdown:hover > .menu > .item:hover > .menu {
|
826
|
+
overflow: visible;
|
827
|
+
width: auto;
|
828
|
+
height: auto;
|
829
|
+
top: 0% !important;
|
830
|
+
left: 100% !important;
|
831
|
+
opacity: 1;
|
832
|
+
}
|
833
|
+
.ui.simple.disabled.dropdown:hover .menu {
|
834
|
+
display: none;
|
835
|
+
height: 0px;
|
836
|
+
width: 0px;
|
837
|
+
overflow: hidden;
|
838
|
+
}
|
839
|
+
|
840
|
+
/* Visible */
|
841
|
+
.ui.simple.visible.dropdown > .menu {
|
842
|
+
display: block;
|
843
|
+
}
|
844
|
+
|
845
|
+
/*--------------
|
846
|
+
Fluid
|
847
|
+
---------------*/
|
848
|
+
|
849
|
+
.ui.fluid.dropdown {
|
850
|
+
display: block;
|
851
|
+
width: 100%;
|
852
|
+
min-width: 0em;
|
853
|
+
}
|
854
|
+
.ui.fluid.dropdown > .dropdown.icon {
|
855
|
+
float: right;
|
856
|
+
}
|
857
|
+
|
858
|
+
/*--------------
|
859
|
+
Floating
|
860
|
+
---------------*/
|
861
|
+
|
862
|
+
.ui.floating.dropdown .menu {
|
863
|
+
left: 0;
|
864
|
+
right: auto;
|
865
|
+
box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.15);
|
866
|
+
border-radius: 0.2857rem;
|
867
|
+
}
|
868
|
+
.ui.floating.dropdown > .menu {
|
869
|
+
margin-top: 0.5em !important;
|
870
|
+
}
|
871
|
+
|
872
|
+
/*--------------
|
873
|
+
Pointing
|
874
|
+
---------------*/
|
875
|
+
|
876
|
+
.ui.pointing.dropdown > .menu {
|
877
|
+
top: 100%;
|
878
|
+
margin-top: 0.75em;
|
879
|
+
border-radius: 0.2857rem;
|
880
|
+
}
|
881
|
+
.ui.pointing.dropdown > .menu:after {
|
882
|
+
display: block;
|
883
|
+
position: absolute;
|
884
|
+
pointer-events: none;
|
885
|
+
content: '';
|
886
|
+
visibility: visible;
|
887
|
+
-webkit-transform: rotate(45deg);
|
888
|
+
-ms-transform: rotate(45deg);
|
889
|
+
transform: rotate(45deg);
|
890
|
+
width: 0.5em;
|
891
|
+
height: 0.5em;
|
892
|
+
box-shadow: -1px -1px 0px 1px rgba(0, 0, 0, 0.1);
|
893
|
+
background: #ffffff;
|
894
|
+
z-index: 2;
|
895
|
+
}
|
896
|
+
.ui.pointing.dropdown > .menu:after {
|
897
|
+
top: -0.25em;
|
898
|
+
left: 50%;
|
899
|
+
margin: 0em 0em 0em -0.25em;
|
900
|
+
}
|
901
|
+
|
902
|
+
/* Top Left Pointing */
|
903
|
+
.ui.top.left.pointing.dropdown > .menu {
|
904
|
+
top: 100%;
|
905
|
+
bottom: auto;
|
906
|
+
left: 0%;
|
907
|
+
right: auto;
|
908
|
+
margin: 1em 0em 0em;
|
909
|
+
}
|
910
|
+
.ui.top.left.pointing.dropdown > .menu {
|
911
|
+
top: 100%;
|
912
|
+
bottom: auto;
|
913
|
+
left: 0%;
|
914
|
+
right: auto;
|
915
|
+
margin: 1em 0em 0em;
|
916
|
+
}
|
917
|
+
.ui.top.left.pointing.dropdown > .menu:after {
|
918
|
+
top: -0.25em;
|
919
|
+
left: 1em;
|
920
|
+
right: auto;
|
921
|
+
margin: 0em;
|
922
|
+
-webkit-transform: rotate(45deg);
|
923
|
+
-ms-transform: rotate(45deg);
|
924
|
+
transform: rotate(45deg);
|
925
|
+
}
|
926
|
+
|
927
|
+
/* Top Right Pointing */
|
928
|
+
.ui.top.right.pointing.dropdown > .menu {
|
929
|
+
top: 100%;
|
930
|
+
bottom: auto;
|
931
|
+
right: 0%;
|
932
|
+
left: auto;
|
933
|
+
margin: 1em 0em 0em;
|
934
|
+
}
|
935
|
+
.ui.top.right.pointing.dropdown > .menu:after {
|
936
|
+
top: -0.25em;
|
937
|
+
left: auto;
|
938
|
+
right: 1em;
|
939
|
+
margin: 0em;
|
940
|
+
-webkit-transform: rotate(45deg);
|
941
|
+
-ms-transform: rotate(45deg);
|
942
|
+
transform: rotate(45deg);
|
943
|
+
}
|
944
|
+
|
945
|
+
/* Left Pointing */
|
946
|
+
.ui.left.pointing.dropdown > .menu {
|
947
|
+
top: 0%;
|
948
|
+
left: 100%;
|
949
|
+
right: auto;
|
950
|
+
margin: 0em 0em 0em 1em;
|
951
|
+
}
|
952
|
+
.ui.left.pointing.dropdown > .menu:after {
|
953
|
+
top: 1em;
|
954
|
+
left: -0.25em;
|
955
|
+
margin: 0em 0em 0em 0em;
|
956
|
+
-webkit-transform: rotate(-45deg);
|
957
|
+
-ms-transform: rotate(-45deg);
|
958
|
+
transform: rotate(-45deg);
|
959
|
+
}
|
960
|
+
|
961
|
+
/* Right Pointing */
|
962
|
+
.ui.right.pointing.dropdown > .menu {
|
963
|
+
top: 0%;
|
964
|
+
left: auto;
|
965
|
+
right: 100%;
|
966
|
+
margin: 0em 1em 0em 0em;
|
967
|
+
}
|
968
|
+
.ui.right.pointing.dropdown > .menu:after {
|
969
|
+
top: 1em;
|
970
|
+
left: auto;
|
971
|
+
right: -0.25em;
|
972
|
+
margin: 0em 0em 0em 0em;
|
973
|
+
-webkit-transform: rotate(135deg);
|
974
|
+
-ms-transform: rotate(135deg);
|
975
|
+
transform: rotate(135deg);
|
976
|
+
}
|
977
|
+
|
978
|
+
/* Bottom Pointing */
|
979
|
+
.ui.bottom.pointing.dropdown > .menu {
|
980
|
+
top: auto;
|
981
|
+
bottom: 100%;
|
982
|
+
left: 0%;
|
983
|
+
right: auto;
|
984
|
+
margin: 0em 0em 1em;
|
985
|
+
}
|
986
|
+
.ui.bottom.pointing.dropdown > .menu:after {
|
987
|
+
top: auto;
|
988
|
+
bottom: -0.25em;
|
989
|
+
right: auto;
|
990
|
+
margin: 0em;
|
991
|
+
-webkit-transform: rotate(-135deg);
|
992
|
+
-ms-transform: rotate(-135deg);
|
993
|
+
transform: rotate(-135deg);
|
994
|
+
}
|
995
|
+
|
996
|
+
/* Reverse Sub-Menu Direction */
|
997
|
+
.ui.bottom.pointing.dropdown > .menu .menu {
|
998
|
+
top: auto !important;
|
999
|
+
bottom: 0px !important;
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
/* Bottom Left */
|
1003
|
+
.ui.bottom.left.pointing.dropdown > .menu {
|
1004
|
+
left: 0%;
|
1005
|
+
right: auto;
|
1006
|
+
}
|
1007
|
+
.ui.bottom.left.pointing.dropdown > .menu:after {
|
1008
|
+
left: 1em;
|
1009
|
+
right: auto;
|
1010
|
+
}
|
1011
|
+
|
1012
|
+
/* Bottom Right */
|
1013
|
+
.ui.bottom.right.pointing.dropdown > .menu {
|
1014
|
+
right: 0%;
|
1015
|
+
left: auto;
|
1016
|
+
}
|
1017
|
+
.ui.bottom.right.pointing.dropdown > .menu:after {
|
1018
|
+
left: auto;
|
1019
|
+
right: 1em;
|
1020
|
+
}
|
1021
|
+
|
1022
|
+
|
1023
|
+
/*******************************
|
1024
|
+
Theme Overrides
|
1025
|
+
*******************************/
|
1026
|
+
|
1027
|
+
|
1028
|
+
/* Dropdown Carets */
|
1029
|
+
@font-face {
|
1030
|
+
font-family: 'Dropdown';
|
1031
|
+
src: url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMggjB5AAAAC8AAAAYGNtYXAPfuIIAAABHAAAAExnYXNwAAAAEAAAAWgAAAAIZ2x5Zjo82LgAAAFwAAABVGhlYWQAQ88bAAACxAAAADZoaGVhAwcB6QAAAvwAAAAkaG10eAS4ABIAAAMgAAAAIGxvY2EBNgDeAAADQAAAABJtYXhwAAoAFgAAA1QAAAAgbmFtZVcZpu4AAAN0AAABRXBvc3QAAwAAAAAEvAAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADw2gHg/+D/4AHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEADgAAAAKAAgAAgACAAEAIPDa//3//wAAAAAAIPDX//3//wAB/+MPLQADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAIABJQElABMAABM0NzY3BTYXFhUUDwEGJwYvASY1AAUGBwEACAUGBoAFCAcGgAUBEgcGBQEBAQcECQYHfwYBAQZ/BwYAAQAAAG4BJQESABMAADc0PwE2MzIfARYVFAcGIyEiJyY1AAWABgcIBYAGBgUI/wAHBgWABwaABQWABgcHBgUFBgcAAAABABIASQC3AW4AEwAANzQ/ATYXNhcWHQEUBwYnBi8BJjUSBoAFCAcFBgYFBwgFgAbbBwZ/BwEBBwQJ/wgEBwEBB38GBgAAAAABAAAASQClAW4AEwAANxE0NzYzMh8BFhUUDwEGIyInJjUABQYHCAWABgaABQgHBgVbAQAIBQYGgAUIBwWABgYFBwAAAAEAAAABAADZuaKOXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAAAAACgAUAB4AQgBkAIgAqgAAAAEAAAAIABQAAQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQAOAAAAAQAAAAAAAgAOAEcAAQAAAAAAAwAOACQAAQAAAAAABAAOAFUAAQAAAAAABQAWAA4AAQAAAAAABgAHADIAAQAAAAAACgA0AGMAAwABBAkAAQAOAAAAAwABBAkAAgAOAEcAAwABBAkAAwAOACQAAwABBAkABAAOAFUAAwABBAkABQAWAA4AAwABBAkABgAOADkAAwABBAkACgA0AGMAaQBjAG8AbQBvAG8AbgBWAGUAcgBzAGkAbwBuACAAMQAuADAAaQBjAG8AbQBvAG8Abmljb21vb24AaQBjAG8AbQBvAG8AbgBSAGUAZwB1AGwAYQByAGkAYwBvAG0AbwBvAG4ARgBvAG4AdAAgAGcAZQBuAGUAcgBhAHQAZQBkACAAYgB5ACAASQBjAG8ATQBvAG8AbgAuAAAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype'), url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAVwAAoAAAAABSgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAAA9AAAAdkAAAHZLDXE/09TLzIAAALQAAAAYAAAAGAIIweQY21hcAAAAzAAAABMAAAATA9+4ghnYXNwAAADfAAAAAgAAAAIAAAAEGhlYWQAAAOEAAAANgAAADYAQ88baGhlYQAAA7wAAAAkAAAAJAMHAelobXR4AAAD4AAAACAAAAAgBLgAEm1heHAAAAQAAAAABgAAAAYACFAAbmFtZQAABAgAAAFFAAABRVcZpu5wb3N0AAAFUAAAACAAAAAgAAMAAAEABAQAAQEBCGljb21vb24AAQIAAQA6+BwC+BsD+BgEHgoAGVP/i4seCgAZU/+LiwwHi2v4lPh0BR0AAACIDx0AAACNER0AAAAJHQAAAdASAAkBAQgPERMWGyAlKmljb21vb25pY29tb29udTB1MXUyMHVGMEQ3dUYwRDh1RjBEOXVGMERBAAACAYkABgAIAgABAAQABwAKAA0AVgCfAOgBL/yUDvyUDvyUDvuUDvtvi/emFYuQjZCOjo+Pj42Qiwj3lIsFkIuQiY6Hj4iNhouGi4aJh4eHCPsU+xQFiIiGiYaLhouHjYeOCPsU9xQFiI+Jj4uQCA77b4v3FBWLkI2Pjo8I9xT3FAWPjo+NkIuQi5CJjogI9xT7FAWPh42Hi4aLhomHh4eIiIaJhosI+5SLBYaLh42HjoiPiY+LkAgO+92d928Vi5CNkI+OCPcU9xQFjo+QjZCLkIuPiY6Hj4iNhouGCIv7lAWLhomHh4iIh4eJhouGi4aNiI8I+xT3FAWHjomPi5AIDvvdi+YVi/eUBYuQjZCOjo+Pj42Qi5CLkImOhwj3FPsUBY+IjYaLhouGiYeHiAj7FPsUBYiHhomGi4aLh42Hj4iOiY+LkAgO+JQU+JQViwwKAAAAAAMCAAGQAAUAAAFMAWYAAABHAUwBZgAAAPUAGQCEAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA8NoB4P/g/+AB4AAgAAAAAQAAAAAAAAAAAAAAIAAAAAAAAgAAAAMAAAAUAAMAAQAAABQABAA4AAAACgAIAAIAAgABACDw2v/9//8AAAAAACDw1//9//8AAf/jDy0AAwABAAAAAAAAAAAAAAABAAH//wAPAAEAAAABAAA5emozXw889QALAgAAAAAA0ABHWAAAAADQAEdYAAAAAAElAW4AAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgAAAAAAASUAAQAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAAAAAAAABAAAAASUAAAElAAAAtwASALcAAAAAUAAACAAAAAAADgCuAAEAAAAAAAEADgAAAAEAAAAAAAIADgBHAAEAAAAAAAMADgAkAAEAAAAAAAQADgBVAAEAAAAAAAUAFgAOAAEAAAAAAAYABwAyAAEAAAAAAAoANABjAAMAAQQJAAEADgAAAAMAAQQJAAIADgBHAAMAAQQJAAMADgAkAAMAAQQJAAQADgBVAAMAAQQJAAUAFgAOAAMAAQQJAAYADgA5AAMAAQQJAAoANABjAGkAYwBvAG0AbwBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAGkAYwBvAG0AbwBvAG5pY29tb29uAGkAYwBvAG0AbwBvAG4AUgBlAGcAdQBsAGEAcgBpAGMAbwBtAG8AbwBuAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA) format('woff');
|
1032
|
+
font-weight: normal;
|
1033
|
+
font-style: normal;
|
1034
|
+
}
|
1035
|
+
.ui.dropdown > .dropdown.icon {
|
1036
|
+
font-family: 'Dropdown';
|
1037
|
+
line-height: 1;
|
1038
|
+
height: 1em;
|
1039
|
+
width: 1.23em;
|
1040
|
+
-webkit-backface-visibility: hidden;
|
1041
|
+
backface-visibility: hidden;
|
1042
|
+
font-weight: normal;
|
1043
|
+
font-style: normal;
|
1044
|
+
text-align: center;
|
1045
|
+
}
|
1046
|
+
.ui.dropdown > .dropdown.icon {
|
1047
|
+
width: auto;
|
1048
|
+
}
|
1049
|
+
.ui.dropdown > .dropdown.icon:before {
|
1050
|
+
content: '\f0d7';
|
1051
|
+
}
|
1052
|
+
|
1053
|
+
/* Sub Menu */
|
1054
|
+
.ui.dropdown .menu .item .dropdown.icon:before {
|
1055
|
+
content: '\f0da' /*rtl:'\f0d9'*/;
|
1056
|
+
}
|
1057
|
+
.ui.dropdown .item .left.dropdown.icon:before,
|
1058
|
+
.ui.dropdown .left.menu .item .dropdown.icon:before {
|
1059
|
+
content: "\f0d9" /*rtl:"\f0da"*/;
|
1060
|
+
}
|
1061
|
+
|
1062
|
+
/* Vertical Menu Dropdown */
|
1063
|
+
.ui.vertical.menu .dropdown.item > .dropdown.icon:before {
|
1064
|
+
content: "\f0da" /*rtl:"\f0d9"*/;
|
1065
|
+
}
|
1066
|
+
/* Icons for Reference
|
1067
|
+
.dropdown.down.icon {
|
1068
|
+
content: "\f0d7";
|
1069
|
+
}
|
1070
|
+
.dropdown.up.icon {
|
1071
|
+
content: "\f0d8";
|
1072
|
+
}
|
1073
|
+
.dropdown.left.icon {
|
1074
|
+
content: "\f0d9";
|
1075
|
+
}
|
1076
|
+
.dropdown.icon.icon {
|
1077
|
+
content: "\f0da";
|
1078
|
+
}
|
1079
|
+
*/
|
1080
|
+
|
1081
|
+
|
1082
|
+
/*******************************
|
1083
|
+
User Overrides
|
1084
|
+
*******************************/
|
1085
|
+
|