card 1.104.2 → 1.105.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +5 -6
- data/VERSION +1 -1
- data/config/environments/development.rb +1 -1
- data/config/environments/test.rb +1 -0
- data/config/initializers/01_core_extensions/object.rb +10 -0
- data/config/initializers/01_core_extensions/string.rb +9 -0
- data/config/initializers/core_extensions.rb +1 -0
- data/db/migrate/{20160122153608_new_indeces.rb → 20160122153608_new_indices.rb} +2 -2
- data/db/migrate/{20200805200729_add_unique_pair_indeces.rb → 20200805200729_add_unique_pair_indices.rb} +1 -1
- data/db/migrate/20221031182227_remove_referee_key_requirement.rb +11 -0
- data/db/migrate_core_cards/20130920291703_update_stylesheets.rb +1 -9
- data/db/migrate_core_cards/20140307231621_user_data_to_cards.rb +1 -38
- data/db/migrate_core_cards/20161103154836_update_keys.rb +1 -1
- data/db/migrate_core_cards/20180905061537_migrate_layouts.rb +1 -1
- data/db/migrate_core_cards/20190125125150_add_script_rules_card.rb +1 -1
- data/db/migrate_core_cards/20190320091257_upgrade_recaptcha_to_v3.rb +1 -1
- data/db/migrate_core_cards/20190502130029_add_shark_and_help_desk_role.rb +2 -20
- data/db/migrate_core_cards/20190528131330_enabled_roles.rb +0 -3
- data/db/migrate_core_cards/20190625153616_pointer_overhaul.rb +0 -2
- data/db/migrate_core_cards/20190718140126_add_guides.rb +1 -1
- data/db/migrate_core_cards/20190822093633_move_help_text_to_code.rb +1 -1
- data/db/migrate_core_cards/20190829205148_remove_add_help.rb +1 -1
- data/db/migrate_core_cards/20190902193208_input_type.rb +1 -1
- data/db/migrate_core_cards/20190909104250_add_cardtype_input_types.rb +2 -2
- data/db/schema.rb +2 -2
- data/db/seeds.rb +14 -1
- data/db/version.txt +1 -1
- data/lib/card/auth/current.rb +4 -2
- data/lib/card/auth/permissions.rb +1 -1
- data/lib/card/auth/setup.rb +1 -1
- data/lib/card/auth/token.rb +1 -1
- data/lib/card/cache/persistent.rb +4 -1
- data/lib/card/codename.rb +2 -6
- data/lib/card/content/all.rb +2 -2
- data/lib/card/content/clean.rb +1 -1
- data/lib/card/content/parser.rb +0 -2
- data/lib/card/content.rb +1 -8
- data/lib/card/director/all.rb +67 -0
- data/lib/card/director/card_class.rb +158 -2
- data/lib/card/director/{act_direction.rb → class_methods.rb} +13 -3
- data/lib/card/director/phases.rb +7 -4
- data/lib/card/director/run.rb +51 -50
- data/lib/card/director/stages.rb +18 -16
- data/lib/card/director/store.rb +1 -1
- data/lib/card/director.rb +6 -7
- data/lib/card/env/location.rb +1 -1
- data/lib/card/env/serializable.rb +2 -0
- data/lib/card/env/serialization.rb +2 -3
- data/lib/card/env.rb +2 -2
- data/lib/card/error.rb +9 -5
- data/lib/card/format/error.rb +6 -12
- data/lib/card/format/nest.rb +1 -1
- data/lib/card/format/wrapper.rb +1 -1
- data/lib/card/format.rb +4 -0
- data/lib/card/model/save_helper/save_arguments.rb +0 -44
- data/lib/card/model/save_helper/save_helper_helper.rb +0 -37
- data/lib/card/model/save_helper.rb +0 -82
- data/lib/card/name/all.rb +1 -4
- data/lib/card/name/card_class.rb +0 -2
- data/lib/card/name/name_variants.rb +4 -0
- data/lib/card/name.rb +0 -5
- data/lib/card/query/abstract_query/query_helper.rb +3 -5
- data/lib/card/query/abstract_query/tie.rb +1 -1
- data/lib/card/query/abstract_query.rb +36 -17
- data/lib/card/query/card_class.rb +36 -0
- data/lib/card/query/card_query/custom.rb +12 -0
- data/lib/card/query/card_query/interpretation.rb +1 -0
- data/lib/card/query/card_query/normalization.rb +11 -3
- data/lib/card/query/card_query/reference_attributes.rb +3 -2
- data/lib/card/query/card_query/sorting.rb +5 -4
- data/lib/card/query/card_query.rb +1 -0
- data/lib/card/query/sql_statement/order.rb +12 -10
- data/lib/card/query/sql_statement/where.rb +2 -2
- data/lib/card/query.rb +5 -1
- data/lib/card/reference/all.rb +10 -10
- data/lib/card/set/advanced_api.rb +1 -1
- data/lib/card/set/event/all.rb +9 -1
- data/lib/card/set/event/delayed_event.rb +4 -2
- data/lib/card/set/event/options.rb +1 -1
- data/lib/card/set/event/skip_and_trigger.rb +34 -10
- data/lib/card/set/format/abstract_format/haml_views.rb +3 -3
- data/lib/card/set/format/abstract_format.rb +1 -1
- data/lib/card/set/format/haml_paths.rb +5 -21
- data/lib/card/set/inheritance.rb +4 -4
- data/lib/card/set/pattern/all.rb +1 -1
- data/lib/card/set/pattern/base.rb +1 -1
- data/lib/card/set/pattern/class_methods.rb +4 -4
- data/lib/card/set/trait.rb +1 -1
- data/lib/card/set/type.rb +0 -41
- data/lib/card/setting.rb +0 -1
- data/lib/card/subcards/all.rb +6 -8
- data/lib/card/subcards/args.rb +9 -9
- data/lib/card/view/cache/cache_action.rb +1 -1
- data/lib/card/view/options/visibility.rb +4 -0
- data/lib/card/view/options.rb +1 -0
- data/lib/card/view/permission.rb +12 -4
- data/lib/card/view.rb +4 -0
- data/lib/card.rb +18 -27
- data/lib/cardio/cli.rb +3 -1
- data/lib/cardio/command/application.rb +5 -0
- data/lib/cardio/{commands/command.rb → command/command_base.rb} +2 -2
- data/lib/cardio/{commands → command}/custom.rb +16 -13
- data/lib/cardio/{commands → command}/rake_command/parser.rb +3 -3
- data/lib/cardio/{commands → command}/rake_command.rb +4 -4
- data/lib/cardio/{commands → command}/rspec_command/parser.rb +2 -2
- data/lib/cardio/{commands → command}/rspec_command.rb +7 -9
- data/lib/cardio/command.rb +129 -0
- data/lib/cardio/commands.rb +17 -116
- data/lib/cardio/generators/deck_generator_loader.rb +1 -0
- data/lib/cardio/generators.rb +2 -2
- data/lib/cardio/migration.rb +3 -53
- data/lib/cardio/mod/class_methods.rb +26 -22
- data/lib/cardio/mod/dirs.rb +29 -22
- data/lib/cardio/mod/eat/edibles.rb +22 -15
- data/lib/cardio/mod/eat.rb +18 -14
- data/lib/cardio/mod/load_strategy/set_tmp_files.rb +1 -1
- data/lib/cardio/mod/load_strategy.rb +12 -2
- data/lib/cardio/mod/modfile_api.rb +18 -18
- data/lib/cardio/mod/{poop.rb → sow.rb} +10 -18
- data/lib/cardio/mod.rb +21 -30
- data/lib/cardio/railtie.rb +19 -56
- data/lib/cardio/schema.rb +2 -1
- data/lib/cardio/script_loader.rb +3 -1
- data/lib/cardio/seed.rb +101 -8
- data/lib/cardio/utils.rb +39 -1
- data/lib/generators/deck/deck_generator.rb +5 -2
- data/lib/generators/deck/templates/config/puma.rb +1 -1
- data/lib/generators/deck/templates/script/decko_rspec +1 -1
- data/lib/generators/deck/templates/simplecov.rb.erb +10 -8
- data/lib/generators/mod/USAGE +1 -1
- data/lib/generators/set/USAGE +2 -2
- data/mod/core/data/fixtures/real/card_actions.yml +78 -0
- data/{db/seed/new → mod/core/data/fixtures/real}/card_acts.yml +2 -2
- data/{db/seed/new → mod/core/data/fixtures/real}/card_changes.yml +0 -0
- data/mod/core/data/fixtures/real/card_references.yml +8 -0
- data/mod/core/data/fixtures/real/cards.yml +135 -0
- data/{db/seed/new → mod/core/data/fixtures/real}/schema_migrations.yml +0 -0
- data/{db/seed/new → mod/core/data/fixtures/real}/schema_migrations_core_cards.yml +0 -0
- data/{db/seed/new → mod/core/data/fixtures/real}/schema_migrations_deck.yml +0 -0
- data/{db/seed/new → mod/core/data/fixtures/real}/schema_migrations_deck_cards.yml +0 -0
- data/mod/core/data/real.yml +79 -0
- data/mod/core/data/test/cardtype.yml +38 -0
- data/mod/core/data/test/sample.yml +50 -0
- data/mod/core/data/test/user.yml +41 -0
- data/mod/core/data/test.yml +79 -28
- data/mod/core/lib/tasks/card/assets.rake +17 -0
- data/{lib → mod/core/lib}/tasks/card/create.rake +0 -0
- data/{lib → mod/core/lib}/tasks/card/migrate.rake +4 -0
- data/{lib → mod/core/lib}/tasks/card/mod.rake +4 -3
- data/mod/core/lib/tasks/card/seed.rake +58 -0
- data/mod/core/lib/tasks/card.rake +115 -0
- data/mod/core/locales/de.yml +4 -0
- data/mod/core/locales/en.yml +13 -0
- data/mod/core/set/all/admin.rb +14 -0
- data/mod/core/set/all/codename.rb +4 -0
- data/mod/core/set/all/content.rb +8 -4
- data/mod/core/set/all/{abort.rb → result.rb} +11 -15
- data/mod/core/set/all/states.rb +15 -1
- data/mod/core/set/all/trash.rb +25 -73
- data/mod/core/set/all/type.rb +2 -2
- data/mod/core/set/all/utils.rb +3 -87
- data/mod/core/set/right/autoname.rb +2 -0
- data/mod/core/set/self/admin/warning_alert.haml +3 -0
- data/mod/core/set/self/admin.rb +173 -0
- data/mod/core/set/type/cardtype.rb +2 -0
- data/mod/core/set_pattern/02_all_plus.rb +1 -1
- data/mod/core/set_pattern/05_rstar.rb +1 -1
- data/mod/core/set_pattern/06_rule.rb +1 -1
- data/mod/core/set_pattern/07_right.rb +1 -1
- data/mod/core/set_pattern/08_type_plus_right.rb +1 -1
- data/mod/core/spec/set/all/assign_attributes_spec.rb +3 -3
- data/mod/core/spec/set/all/autoname_spec.rb +25 -0
- data/mod/core/spec/set/all/codename_spec.rb +1 -1
- data/mod/core/spec/set/all/name_events_spec.rb +43 -66
- data/mod/core/spec/set/all/trash_spec.rb +149 -68
- data/mod/{admin → core}/spec/set/self/admin_spec.rb +25 -22
- data/mod/core/spec/set/self/trash_spec.rb +5 -0
- metadata +88 -251
- data/db/migrate_core_cards/20130411211600_delete_old_related_tab_cards.rb +0 -18
- data/db/migrate_core_cards/20130419215612_import_help_text.rb +0 -13
- data/db/migrate_core_cards/20130823192433_add_style_cards.rb +0 -100
- data/db/migrate_core_cards/20130910183318_move_styles_to_content.rb +0 -11
- data/db/migrate_core_cards/20130927191728_account_events.rb +0 -20
- data/db/migrate_core_cards/20131016172445_common_css_patch.rb +0 -9
- data/db/migrate_core_cards/20140110193325_reset_account_request_type.rb +0 -8
- data/db/migrate_core_cards/20140512155840_add_script_cards.rb +0 -86
- data/db/migrate_core_cards/20140629222005_add_email_cards.rb +0 -132
- data/db/migrate_core_cards/20140725180118_config_card_updates.rb +0 -9
- data/db/migrate_core_cards/20141111083921_delete_machine_output.rb +0 -7
- data/db/migrate_core_cards/20141115034214_config_descriptions_etc.rb +0 -14
- data/db/migrate_core_cards/20141119001955_make_symlinks_relative.rb +0 -15
- data/db/migrate_core_cards/20141120120605_fix_notification_html_message.rb +0 -10
- data/db/migrate_core_cards/20141216155251_add_more_following_cards.rb +0 -26
- data/db/migrate_core_cards/20141230204340_uri_codename.rb +0 -13
- data/db/migrate_core_cards/20150202143810_import_bootstrap_layout.rb +0 -76
- data/db/migrate_core_cards/20150317162412_bootstrap_themes.rb +0 -41
- data/db/migrate_core_cards/20150326205655_bootswatch_themes.rb +0 -36
- data/db/migrate_core_cards/20150331135745_new_card_menu.rb +0 -8
- data/db/migrate_core_cards/20150501010515_responsive_sidebar.rb +0 -11
- data/db/migrate_core_cards/20150508212032_menu_compatibility.rb +0 -24
- data/db/migrate_core_cards/20150528084659_add_session_cardtype.rb +0 -18
- data/db/migrate_core_cards/20150601133433_add_recent_setting_session_card.rb +0 -18
- data/db/migrate_core_cards/20150610171702_add_debugger_session_card.rb +0 -12
- data/db/migrate_core_cards/20150610180019_add_recaptcha_key_and_admin_info_cards.rb +0 -58
- data/db/migrate_core_cards/20150627205133_fix_script_bootstrap_card_type.rb +0 -7
- data/db/migrate_core_cards/20150702130543_remove_edit_toolbar_pinned.rb +0 -9
- data/db/migrate_core_cards/20150708224756_add_list_cards.rb +0 -29
- data/db/migrate_core_cards/20150903130006_attachment_upload_cards.rb +0 -15
- data/db/migrate_core_cards/20150910085603_remove_performance_log_card.rb +0 -10
- data/db/migrate_core_cards/20151120180631_add_token_expiration.rb +0 -7
- data/db/migrate_core_cards/20160801143221_change_bootstrap_card_type_to_scss.rb +0 -10
- data/db/migrate_core_cards/20160804112510_reorganize_scripts.rb +0 -27
- data/db/migrate_core_cards/20160908154210_add_trash_card.rb +0 -7
- data/db/migrate_core_cards/20161102202156_tweak_recaptcha_setting_cards.rb +0 -17
- data/db/migrate_core_cards/20170209132834_email_test_context.rb +0 -49
- data/db/migrate_core_cards/20170314175313_add_notification_event_card.rb +0 -20
- data/db/migrate_core_cards/20170515101262_add_advanced_edit_cards.rb +0 -20
- data/db/migrate_core_cards/20170608083819_add_full_width_layout_card.rb +0 -23
- data/db/migrate_core_cards/20170608200649_add_input_options_codename.rb +0 -8
- data/db/migrate_core_cards/20180423120222_add_mod_styles_card.rb +0 -20
- data/db/migrate_core_cards/20180508210903_add_json_type.rb +0 -10
- data/db/migrate_core_cards/20180515175726_add_codenames.rb +0 -8
- data/db/migrate_core_cards/20180712042655_head_rule.rb +0 -13
- data/db/migrate_core_cards/20181120200937_update_layout.rb +0 -7
- data/db/migrate_core_cards/20190204195039_add_rule_card.rb +0 -10
- data/db/migrate_core_cards/20190321085735_wagn_to_decko_logo.rb +0 -11
- data/db/migrate_core_cards/20190417142612_reorganize_scripts_2.rb +0 -17
- data/db/migrate_core_cards/20190424100531_update_credit_image.rb +0 -76
- data/db/migrate_core_cards/20190424101004_add_read_anyone_rules.rb +0 -13
- data/db/migrate_core_cards/20190503122739_update_pristine_data.rb +0 -18
- data/db/migrate_core_cards/20190605133556_tweak_config_cards.rb +0 -10
- data/db/migrate_core_cards/20190618110446_add_dropdown_divider.rb +0 -8
- data/db/migrate_core_cards/20190621143156_add_role_assign_permissions.rb +0 -9
- data/db/migrate_core_cards/20190710090209_homepage_tweaks.rb +0 -13
- data/db/migrate_core_cards/20190820155833_update_cardtype_type_structure.rb +0 -7
- data/db/migrate_core_cards/20190823220018_cleanup_for_decko_1_0.rb +0 -19
- data/db/migrate_core_cards/20190826132738_add_more_guides.rb +0 -7
- data/db/migrate_core_cards/20190829093961_cardtype_grouping.rb +0 -16
- data/db/migrate_core_cards/20190830131820_setting_settings_aside.rb +0 -17
- data/db/migrate_core_cards/20190902161223_add_style_media.rb +0 -7
- data/db/migrate_core_cards/20190918200115_ensure_description_card.rb +0 -13
- data/db/migrate_core_cards/20191008201046_fixture_fix.rb +0 -11
- data/db/migrate_core_cards/20191028135243_add_link_editor_to_tiny_mce_config.rb +0 -9
- data/db/migrate_core_cards/20191118145629_codename_fixes.rb +0 -5
- data/db/migrate_core_cards/20200821231558_add_nest_list_type.rb +0 -9
- data/db/migrate_core_cards/data/1.11_help_text.json +0 -410
- data/db/migrate_core_cards/data/1.12_stylesheets/classic_cards.scss +0 -104
- data/db/migrate_core_cards/data/1.12_stylesheets/common.scss +0 -228
- data/db/migrate_core_cards/data/1.12_stylesheets/right_sidebar.scss +0 -27
- data/db/migrate_core_cards/data/1.12_stylesheets/traditional.scss +0 -143
- data/db/migrate_core_cards/data/1.13_config_text.json +0 -32
- data/db/migrate_core_cards/data/1.14_config_descriptions_etc.json +0 -77
- data/db/migrate_core_cards/data/bootstrap_layout.json +0 -96
- data/db/migrate_core_cards/data/cards/Xaccount +0 -22
- data/db/migrate_core_cards/data/cards/Xaccount_setting-Xright-Xstructure +0 -12
- data/db/migrate_core_cards/data/cards/Xall-Xlayout +0 -1
- data/db/migrate_core_cards/data/cards/Xcredit +0 -2
- data/db/migrate_core_cards/data/cards/Xfooter +0 -3
- data/db/migrate_core_cards/data/cards/Xgetting_started +0 -31
- data/db/migrate_core_cards/data/cards/Xgetting_started-shark +0 -66
- data/db/migrate_core_cards/data/cards/Xgetting_started_link +0 -6
- data/db/migrate_core_cards/data/cards/Xheader +0 -19
- data/db/migrate_core_cards/data/cards/Xhome +0 -1
- data/db/migrate_core_cards/data/cards/Xlogo +0 -1
- data/db/migrate_core_cards/data/cards/Xmain_menu +0 -2
- data/db/migrate_core_cards/data/cards/Xrecaptcha_setting-Xself-Xstructure +0 -1
- data/db/migrate_core_cards/data/cards/Xsidebar +0 -7
- data/db/migrate_core_cards/data/cards/Xstructure-Xright-Xguide +0 -12
- data/db/migrate_core_cards/data/cards/Xtitle +0 -1
- data/db/migrate_core_cards/data/cards/administrator-dashboard +0 -23
- data/db/migrate_core_cards/data/cards/administrator-description +0 -1
- data/db/migrate_core_cards/data/cards/anyone_signed_in-dashboard +0 -0
- data/db/migrate_core_cards/data/cards/cardtype-Xtype-Xguide +0 -24
- data/db/migrate_core_cards/data/cards/cardtype-Xtype-Xstructure +0 -3
- data/db/migrate_core_cards/data/cards/default_layout +0 -6
- data/db/migrate_core_cards/data/cards/full_width_layout +0 -5
- data/db/migrate_core_cards/data/cards/help_desk-dashboard +0 -7
- data/db/migrate_core_cards/data/cards/help_desk-description +0 -1
- data/db/migrate_core_cards/data/cards/home +0 -2
- data/db/migrate_core_cards/data/cards/home-Xself-Xlayout +0 -1
- data/db/migrate_core_cards/data/cards/home-original +0 -22
- data/db/migrate_core_cards/data/cards/home_layout +0 -6
- data/db/migrate_core_cards/data/cards/left_sidebar_layout +0 -6
- data/db/migrate_core_cards/data/cards/menu +0 -1
- data/db/migrate_core_cards/data/cards/right_thin_sidebar_layout +0 -8
- data/db/migrate_core_cards/data/cards/role-Xtype-Xstructure +0 -2
- data/db/migrate_core_cards/data/cards/shark-dashboard +0 -19
- data/db/migrate_core_cards/data/cards/shark-description +0 -1
- data/db/migrate_core_cards/data/cards/shark_menu +0 -2
- data/db/migrate_core_cards/data/cards.yml +0 -138
- data/db/migrate_core_cards/data/decko_logo.svg +0 -1
- data/db/migrate_core_cards/data/mailer/follower_notification_email.html +0 -9
- data/db/migrate_core_cards/data/mailer/follower_notification_email.txt +0 -11
- data/db/migrate_core_cards/data/mailer/mail_config.json +0 -22
- data/db/migrate_core_cards/data/mailer/password_reset_email.html +0 -13
- data/db/migrate_core_cards/data/mailer/password_reset_email.txt +0 -11
- data/db/migrate_core_cards/data/mailer/signup_alert_email.html +0 -7
- data/db/migrate_core_cards/data/mailer/signup_alert_email.txt +0 -5
- data/db/migrate_core_cards/data/mailer/verification_email.html +0 -12
- data/db/migrate_core_cards/data/mailer/verification_email.txt +0 -9
- data/db/migrate_core_cards/data/skin_images.json +0 -91
- data/db/migrate_core_cards/data/themes/bootstrap_default/_bootswatch.scss +0 -0
- data/db/migrate_core_cards/data/themes/bootstrap_default/_variables.scss +0 -867
- data/db/migrate_core_cards/data/themes/cerulean/_bootswatch.scss +0 -125
- data/db/migrate_core_cards/data/themes/cerulean/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/cosmo/_bootswatch.scss +0 -237
- data/db/migrate_core_cards/data/themes/cosmo/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/cyborg/_bootswatch.scss +0 -210
- data/db/migrate_core_cards/data/themes/cyborg/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/darkly/_bootswatch.scss +0 -330
- data/db/migrate_core_cards/data/themes/darkly/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/flatly/_bootswatch.scss +0 -313
- data/db/migrate_core_cards/data/themes/flatly/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/journal/_bootswatch.scss +0 -120
- data/db/migrate_core_cards/data/themes/journal/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/lumen/_bootswatch.scss +0 -496
- data/db/migrate_core_cards/data/themes/lumen/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/paper/_bootswatch.scss +0 -607
- data/db/migrate_core_cards/data/themes/paper/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/readable/_bootswatch.scss +0 -174
- data/db/migrate_core_cards/data/themes/readable/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/sandstone/_bootswatch.scss +0 -194
- data/db/migrate_core_cards/data/themes/sandstone/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/simplex/_bootswatch.scss +0 -142
- data/db/migrate_core_cards/data/themes/simplex/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/slate/_bootswatch.scss +0 -417
- data/db/migrate_core_cards/data/themes/slate/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/spacelab/_bootswatch.scss +0 -137
- data/db/migrate_core_cards/data/themes/spacelab/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/superhero/_bootswatch.scss +0 -332
- data/db/migrate_core_cards/data/themes/superhero/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/united/_bootswatch.scss +0 -42
- data/db/migrate_core_cards/data/themes/united/_variables.scss +0 -861
- data/db/migrate_core_cards/data/themes/yeti/_bootswatch.scss +0 -437
- data/db/migrate_core_cards/data/themes/yeti/_variables.scss +0 -861
- data/db/seed/README.md +0 -2
- data/db/seed/new/card_actions.yml +0 -5913
- data/db/seed/new/card_references.yml +0 -6532
- data/db/seed/new/cards.yml +0 -14595
- data/db/seed/test/fixtures/card_actions.yml +0 -8153
- data/db/seed/test/fixtures/card_acts.yml +0 -1039
- data/db/seed/test/fixtures/card_changes.yml +0 -230
- data/db/seed/test/fixtures/card_references.yml +0 -8471
- data/db/seed/test/fixtures/cards.yml +0 -20171
- data/db/seed/test/fixtures/file1.txt +0 -1
- data/db/seed/test/fixtures/file2.txt +0 -1
- data/db/seed/test/fixtures/mao2.jpg +0 -0
- data/db/seed/test/fixtures/rails.gif +0 -0
- data/db/seed/test/fixtures/schema_migrations.yml +0 -67
- data/db/seed/test/fixtures/schema_migrations_core_cards.yml +0 -347
- data/db/seed/test/fixtures/schema_migrations_deck.yml +0 -1
- data/db/seed/test/fixtures/schema_migrations_deck_cards.yml +0 -5
- data/db/test_seed.rb +0 -322
- data/lib/card/content/truncate.rb +0 -67
- data/lib/card/director/card_methods.rb +0 -45
- data/lib/card/file_card_creator/abstract_file_card/migration_file.rb +0 -50
- data/lib/card/file_card_creator/abstract_file_card/ruby_file.rb +0 -30
- data/lib/card/file_card_creator/abstract_file_card/source_file.rb +0 -36
- data/lib/card/file_card_creator/abstract_file_card.rb +0 -44
- data/lib/card/file_card_creator/haml_card.rb +0 -42
- data/lib/card/file_card_creator/output_helper.rb +0 -53
- data/lib/card/file_card_creator/script_card.rb +0 -35
- data/lib/card/file_card_creator/style_card.rb +0 -25
- data/lib/card/file_card_creator.rb +0 -25
- data/lib/card/name/fields_and_traits.rb +0 -42
- data/lib/cardio/commands/application.rb +0 -10
- data/lib/cardio/migration/import/import_data/card_attributes.rb +0 -64
- data/lib/cardio/migration/import/import_data/card_content.rb +0 -30
- data/lib/cardio/migration/import/import_data.rb +0 -119
- data/lib/cardio/migration/import/merger.rb +0 -46
- data/lib/cardio/migration/import.rb +0 -125
- data/lib/tasks/card.rake +0 -65
- data/mod/admin/locales/de.yml +0 -4
- data/mod/admin/locales/en.yml +0 -4
- data/mod/admin/set/all/admin.rb +0 -16
- data/mod/admin/set/self/admin.rb +0 -144
- data/mod/admin/set/self/admin_info.rb +0 -40
- data/mod/admin/set/self/debugger.rb +0 -3
- data/mod/admin/spec/set/self/admin_info_spec.rb +0 -9
- data/mod/core/data/production.yml +0 -7
- data/mod/core/set/all/collection.rb +0 -53
- data/mod/core/spec/set/all/collection_spec.rb +0 -170
- data/mod/core/spec/set/all/utils_spec.rb +0 -5
- data/mod/standard/data/files/favicon/image-icon.png +0 -0
- data/mod/standard/data/files/favicon/image-large.png +0 -0
- data/mod/standard/data/files/favicon/image-medium.png +0 -0
- data/mod/standard/data/files/favicon/image-original.png +0 -0
- data/mod/standard/data/files/favicon/image-small.png +0 -0
- data/mod/standard/data/files/logo/image-original.svg +0 -1
@@ -1,861 +0,0 @@
|
|
1
|
-
// Cerulean 3.3.4
|
2
|
-
// Variables
|
3
|
-
// --------------------------------------------------
|
4
|
-
|
5
|
-
|
6
|
-
//== Colors
|
7
|
-
//
|
8
|
-
//## Gray and brand colors for use across Bootstrap.
|
9
|
-
|
10
|
-
$gray-base: #000;
|
11
|
-
$gray-darker: lighten($gray-base, 13.5%); // #222
|
12
|
-
$gray-dark: lighten($gray-base, 20%); // #333
|
13
|
-
$gray: lighten($gray-base, 33.5%); // #555
|
14
|
-
$gray-light: lighten($gray-base, 60%); // #999
|
15
|
-
$gray-lighter: lighten($gray-base, 93.5%); // #eee
|
16
|
-
|
17
|
-
$brand-primary: #2FA4E7;
|
18
|
-
$brand-success: #73A839;
|
19
|
-
$brand-info: #033C73;
|
20
|
-
$brand-warning: #DD5600;
|
21
|
-
$brand-danger: #C71C22;
|
22
|
-
|
23
|
-
|
24
|
-
//== Scaffolding
|
25
|
-
//
|
26
|
-
//## Settings for some of the most global styles.
|
27
|
-
|
28
|
-
//** Background color for `<body>`.
|
29
|
-
$body-bg: #fff;
|
30
|
-
//** Global text color on `<body>`.
|
31
|
-
$text-color: $gray;
|
32
|
-
|
33
|
-
//** Global textual link color.
|
34
|
-
$link-color: $brand-primary;
|
35
|
-
//** Link hover color set via `darken()` function.
|
36
|
-
$link-hover-color: darken($link-color, 15%);
|
37
|
-
//** Link hover decoration.
|
38
|
-
$link-hover-decoration: underline;
|
39
|
-
|
40
|
-
|
41
|
-
//== Typography
|
42
|
-
//
|
43
|
-
//## Font, line-height, and color for body text, headings, and more.
|
44
|
-
|
45
|
-
$font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
46
|
-
$font-family-serif: Georgia, "Times New Roman", Times, serif;
|
47
|
-
//** Default monospace fonts for `<code>`, `<kbd>`, and `<pre>`.
|
48
|
-
$font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
|
49
|
-
$font-family-base: $font-family-sans-serif;
|
50
|
-
|
51
|
-
$font-size-base: 14px;
|
52
|
-
$font-size-large: ceil(($font-size-base * 1.25)); // ~18px
|
53
|
-
$font-size-small: ceil(($font-size-base * 0.85)); // ~12px
|
54
|
-
|
55
|
-
$font-size-h1: floor(($font-size-base * 2.6)); // ~36px
|
56
|
-
$font-size-h2: floor(($font-size-base * 2.15)); // ~30px
|
57
|
-
$font-size-h3: ceil(($font-size-base * 1.7)); // ~24px
|
58
|
-
$font-size-h4: ceil(($font-size-base * 1.25)); // ~18px
|
59
|
-
$font-size-h5: $font-size-base;
|
60
|
-
$font-size-h6: ceil(($font-size-base * 0.85)); // ~12px
|
61
|
-
|
62
|
-
//** Unit-less `line-height` for use in components like buttons.
|
63
|
-
$line-height-base: 1.428571429; // 20/14
|
64
|
-
//** Computed "line-height" (`font-size` * `line-height`) for use with `margin`, `padding`, etc.
|
65
|
-
$line-height-computed: floor(($font-size-base * $line-height-base)); // ~20px
|
66
|
-
|
67
|
-
//** By default, this inherits from the `<body>`.
|
68
|
-
$headings-font-family: $font-family-base;
|
69
|
-
$headings-font-weight: 500;
|
70
|
-
$headings-line-height: 1.1;
|
71
|
-
$headings-color: #317EAC;
|
72
|
-
|
73
|
-
|
74
|
-
//== Iconography
|
75
|
-
//
|
76
|
-
//## Specify custom location and filename of the included Glyphicons icon font. Useful for those including Bootstrap via Bower.
|
77
|
-
|
78
|
-
//** Load fonts from this directory.
|
79
|
-
$icon-font-path: "../fonts/";
|
80
|
-
//** File name for all font files.
|
81
|
-
$icon-font-name: "glyphicons-halflings-regular";
|
82
|
-
//** Element ID within SVG icon file.
|
83
|
-
$icon-font-svg-id: "glyphicons_halflingsregular";
|
84
|
-
|
85
|
-
|
86
|
-
//== Components
|
87
|
-
//
|
88
|
-
//## Define common padding and border radius sizes and more. Values based on 14px text and 1.428 line-height (~20px to start).
|
89
|
-
|
90
|
-
$padding-base-vertical: 8px;
|
91
|
-
$padding-base-horizontal: 12px;
|
92
|
-
|
93
|
-
$padding-large-vertical: 14px;
|
94
|
-
$padding-large-horizontal: 16px;
|
95
|
-
|
96
|
-
$padding-small-vertical: 5px;
|
97
|
-
$padding-small-horizontal: 10px;
|
98
|
-
|
99
|
-
$padding-xs-vertical: 1px;
|
100
|
-
$padding-xs-horizontal: 5px;
|
101
|
-
|
102
|
-
$line-height-large: 1.3333333; // extra decimals for Win 8.1 Chrome
|
103
|
-
$line-height-small: 1.5;
|
104
|
-
|
105
|
-
$border-radius-base: 4px;
|
106
|
-
$border-radius-large: 6px;
|
107
|
-
$border-radius-small: 3px;
|
108
|
-
|
109
|
-
//** Global color for active items (e.g., navs or dropdowns).
|
110
|
-
$component-active-color: #fff;
|
111
|
-
//** Global background color for active items (e.g., navs or dropdowns).
|
112
|
-
$component-active-bg: $brand-primary;
|
113
|
-
|
114
|
-
//** Width of the `border` for generating carets that indicator dropdowns.
|
115
|
-
$caret-width-base: 4px;
|
116
|
-
//** Carets increase slightly in size for larger components.
|
117
|
-
$caret-width-large: 5px;
|
118
|
-
|
119
|
-
|
120
|
-
//== Tables
|
121
|
-
//
|
122
|
-
//## Customizes the `.table` component with basic values, each used across all table variations.
|
123
|
-
|
124
|
-
//** Padding for `<th>`s and `<td>`s.
|
125
|
-
$table-cell-padding: 8px;
|
126
|
-
//** Padding for cells in `.table-condensed`.
|
127
|
-
$table-condensed-cell-padding: 5px;
|
128
|
-
|
129
|
-
//** Default background color used for all tables.
|
130
|
-
$table-bg: transparent;
|
131
|
-
//** Background color used for `.table-striped`.
|
132
|
-
$table-bg-accent: #f9f9f9;
|
133
|
-
//** Background color used for `.table-hover`.
|
134
|
-
$table-bg-hover: #f5f5f5;
|
135
|
-
$table-bg-active: $table-bg-hover;
|
136
|
-
|
137
|
-
//** Border color for table and cell borders.
|
138
|
-
$table-border-color: #ddd;
|
139
|
-
|
140
|
-
|
141
|
-
//== Buttons
|
142
|
-
//
|
143
|
-
//## For each of Bootstrap's buttons, define text, background and border color.
|
144
|
-
|
145
|
-
$btn-font-weight: normal;
|
146
|
-
|
147
|
-
$btn-default-color: $text-color;
|
148
|
-
$btn-default-bg: #fff;
|
149
|
-
$btn-default-border: rgba(0, 0, 0, 0.1);
|
150
|
-
|
151
|
-
$btn-primary-color: #fff;
|
152
|
-
$btn-primary-bg: $brand-primary;
|
153
|
-
$btn-primary-border: $btn-primary-bg;
|
154
|
-
|
155
|
-
$btn-success-color: #fff;
|
156
|
-
$btn-success-bg: $brand-success;
|
157
|
-
$btn-success-border: $btn-success-bg;
|
158
|
-
|
159
|
-
$btn-info-color: #fff;
|
160
|
-
$btn-info-bg: $brand-info;
|
161
|
-
$btn-info-border: $btn-info-bg;
|
162
|
-
|
163
|
-
$btn-warning-color: #fff;
|
164
|
-
$btn-warning-bg: $brand-warning;
|
165
|
-
$btn-warning-border: $btn-warning-bg;
|
166
|
-
|
167
|
-
$btn-danger-color: #fff;
|
168
|
-
$btn-danger-bg: $brand-danger;
|
169
|
-
$btn-danger-border: $btn-danger-bg;
|
170
|
-
|
171
|
-
$btn-link-disabled-color: $gray-light;
|
172
|
-
|
173
|
-
|
174
|
-
//== Forms
|
175
|
-
//
|
176
|
-
//##
|
177
|
-
|
178
|
-
//** `<input>` background color
|
179
|
-
$input-bg: #fff;
|
180
|
-
//** `<input disabled>` background color
|
181
|
-
$input-bg-disabled: $gray-lighter;
|
182
|
-
|
183
|
-
//** Text color for `<input>`s
|
184
|
-
$input-color: $text-color;
|
185
|
-
//** `<input>` border color
|
186
|
-
$input-border: #ccc;
|
187
|
-
|
188
|
-
// TODO: Rename `$input-border-radius` to `$input-border-radius-base` in v4
|
189
|
-
//** Default `.form-control` border radius
|
190
|
-
// This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
|
191
|
-
$input-border-radius: $border-radius-base;
|
192
|
-
//** Large `.form-control` border radius
|
193
|
-
$input-border-radius-large: $border-radius-large;
|
194
|
-
//** Small `.form-control` border radius
|
195
|
-
$input-border-radius-small: $border-radius-small;
|
196
|
-
|
197
|
-
//** Border color for inputs on focus
|
198
|
-
$input-border-focus: #66afe9;
|
199
|
-
|
200
|
-
//** Placeholder text color
|
201
|
-
$input-color-placeholder: $gray-light;
|
202
|
-
|
203
|
-
//** Default `.form-control` height
|
204
|
-
$input-height-base: ($line-height-computed + ($padding-base-vertical * 2) + 2);
|
205
|
-
//** Large `.form-control` height
|
206
|
-
$input-height-large: (ceil($font-size-large * $line-height-large) + ($padding-large-vertical * 2) + 2);
|
207
|
-
//** Small `.form-control` height
|
208
|
-
$input-height-small: (floor($font-size-small * $line-height-small) + ($padding-small-vertical * 2) + 2);
|
209
|
-
|
210
|
-
//** `.form-group` margin
|
211
|
-
$form-group-margin-bottom: 15px;
|
212
|
-
|
213
|
-
$legend-color: $text-color;
|
214
|
-
$legend-border-color: #e5e5e5;
|
215
|
-
|
216
|
-
//** Background color for textual input addons
|
217
|
-
$input-group-addon-bg: $gray-lighter;
|
218
|
-
//** Border color for textual input addons
|
219
|
-
$input-group-addon-border-color: $input-border;
|
220
|
-
|
221
|
-
//** Disabled cursor for form controls and buttons.
|
222
|
-
$cursor-disabled: not-allowed;
|
223
|
-
|
224
|
-
|
225
|
-
//== Dropdowns
|
226
|
-
//
|
227
|
-
//## Dropdown menu container and contents.
|
228
|
-
|
229
|
-
//** Background for the dropdown menu.
|
230
|
-
$dropdown-bg: #fff;
|
231
|
-
//** Dropdown menu `border-color`.
|
232
|
-
$dropdown-border: rgba(0,0,0,.15);
|
233
|
-
//** Dropdown menu `border-color` **for IE8**.
|
234
|
-
$dropdown-fallback-border: #ccc;
|
235
|
-
//** Divider color for between dropdown items.
|
236
|
-
$dropdown-divider-bg: #e5e5e5;
|
237
|
-
|
238
|
-
//** Dropdown link text color.
|
239
|
-
$dropdown-link-color: $gray-dark;
|
240
|
-
//** Hover color for dropdown links.
|
241
|
-
$dropdown-link-hover-color: #fff;
|
242
|
-
//** Hover background for dropdown links.
|
243
|
-
$dropdown-link-hover-bg: $component-active-bg;
|
244
|
-
|
245
|
-
//** Active dropdown menu item text color.
|
246
|
-
$dropdown-link-active-color: #fff;
|
247
|
-
//** Active dropdown menu item background color.
|
248
|
-
$dropdown-link-active-bg: $component-active-bg;
|
249
|
-
|
250
|
-
//** Disabled dropdown menu item background color.
|
251
|
-
$dropdown-link-disabled-color: $gray-light;
|
252
|
-
|
253
|
-
//** Text color for headers within dropdown menus.
|
254
|
-
$dropdown-header-color: $gray-light;
|
255
|
-
|
256
|
-
//** Deprecated `$dropdown-caret-color` as of v3.1.0
|
257
|
-
$dropdown-caret-color: #000;
|
258
|
-
|
259
|
-
|
260
|
-
//-- Z-index master list
|
261
|
-
//
|
262
|
-
// Warning: Avoid customizing these values. They're used for a bird's eye view
|
263
|
-
// of components dependent on the z-axis and are designed to all work together.
|
264
|
-
//
|
265
|
-
// Note: These variables are not generated into the Customizer.
|
266
|
-
|
267
|
-
$zindex-navbar: 1000;
|
268
|
-
$zindex-dropdown: 1000;
|
269
|
-
$zindex-popover: 1060;
|
270
|
-
$zindex-tooltip: 1070;
|
271
|
-
$zindex-navbar-fixed: 1030;
|
272
|
-
$zindex-modal-background: 1040;
|
273
|
-
$zindex-modal: 1050;
|
274
|
-
|
275
|
-
|
276
|
-
//== Media queries breakpoints
|
277
|
-
//
|
278
|
-
//## Define the breakpoints at which your layout will change, adapting to different screen sizes.
|
279
|
-
|
280
|
-
// Extra small screen / phone
|
281
|
-
//** Deprecated `$screen-xs` as of v3.0.1
|
282
|
-
$screen-xs: 480px;
|
283
|
-
//** Deprecated `$screen-xs-min` as of v3.2.0
|
284
|
-
$screen-xs-min: $screen-xs;
|
285
|
-
//** Deprecated `$screen-phone` as of v3.0.1
|
286
|
-
$screen-phone: $screen-xs-min;
|
287
|
-
|
288
|
-
// Small screen / tablet
|
289
|
-
//** Deprecated `$screen-sm` as of v3.0.1
|
290
|
-
$screen-sm: 768px;
|
291
|
-
$screen-sm-min: $screen-sm;
|
292
|
-
//** Deprecated `$screen-tablet` as of v3.0.1
|
293
|
-
$screen-tablet: $screen-sm-min;
|
294
|
-
|
295
|
-
// Medium screen / desktop
|
296
|
-
//** Deprecated `$screen-md` as of v3.0.1
|
297
|
-
$screen-md: 992px;
|
298
|
-
$screen-md-min: $screen-md;
|
299
|
-
//** Deprecated `$screen-desktop` as of v3.0.1
|
300
|
-
$screen-desktop: $screen-md-min;
|
301
|
-
|
302
|
-
// Large screen / wide desktop
|
303
|
-
//** Deprecated `$screen-lg` as of v3.0.1
|
304
|
-
$screen-lg: 1200px;
|
305
|
-
$screen-lg-min: $screen-lg;
|
306
|
-
//** Deprecated `$screen-lg-desktop` as of v3.0.1
|
307
|
-
$screen-lg-desktop: $screen-lg-min;
|
308
|
-
|
309
|
-
// So media queries don't overlap when required, provide a maximum
|
310
|
-
$screen-xs-max: ($screen-sm-min - 1);
|
311
|
-
$screen-sm-max: ($screen-md-min - 1);
|
312
|
-
$screen-md-max: ($screen-lg-min - 1);
|
313
|
-
|
314
|
-
|
315
|
-
//== Grid system
|
316
|
-
//
|
317
|
-
//## Define your custom responsive grid.
|
318
|
-
|
319
|
-
//** Number of columns in the grid.
|
320
|
-
$grid-columns: 12;
|
321
|
-
//** Padding between columns. Gets divided in half for the left and right.
|
322
|
-
$grid-gutter-width: 30px;
|
323
|
-
// Navbar collapse
|
324
|
-
//** Point at which the navbar becomes uncollapsed.
|
325
|
-
$grid-float-breakpoint: $screen-sm-min;
|
326
|
-
//** Point at which the navbar begins collapsing.
|
327
|
-
$grid-float-breakpoint-max: ($grid-float-breakpoint - 1);
|
328
|
-
|
329
|
-
|
330
|
-
//== Container sizes
|
331
|
-
//
|
332
|
-
//## Define the maximum width of `.container` for different screen sizes.
|
333
|
-
|
334
|
-
// Small screen / tablet
|
335
|
-
$container-tablet: (720px + $grid-gutter-width);
|
336
|
-
//** For `$screen-sm-min` and up.
|
337
|
-
$container-sm: $container-tablet;
|
338
|
-
|
339
|
-
// Medium screen / desktop
|
340
|
-
$container-desktop: (940px + $grid-gutter-width);
|
341
|
-
//** For `$screen-md-min` and up.
|
342
|
-
$container-md: $container-desktop;
|
343
|
-
|
344
|
-
// Large screen / wide desktop
|
345
|
-
$container-large-desktop: (1140px + $grid-gutter-width);
|
346
|
-
//** For `$screen-lg-min` and up.
|
347
|
-
$container-lg: $container-large-desktop;
|
348
|
-
|
349
|
-
|
350
|
-
//== Navbar
|
351
|
-
//
|
352
|
-
//##
|
353
|
-
|
354
|
-
// Basics of a navbar
|
355
|
-
$navbar-height: 50px;
|
356
|
-
$navbar-margin-bottom: $line-height-computed;
|
357
|
-
$navbar-border-radius: $border-radius-base;
|
358
|
-
$navbar-padding-horizontal: floor(($grid-gutter-width / 2));
|
359
|
-
$navbar-padding-vertical: (($navbar-height - $line-height-computed) / 2);
|
360
|
-
$navbar-collapse-max-height: 340px;
|
361
|
-
|
362
|
-
$navbar-default-color: #ddd;
|
363
|
-
$navbar-default-bg: $brand-primary;
|
364
|
-
$navbar-default-border: darken($navbar-default-bg, 6.5%);
|
365
|
-
|
366
|
-
// Navbar links
|
367
|
-
$navbar-default-link-color: #fff;
|
368
|
-
$navbar-default-link-hover-color: #fff;
|
369
|
-
$navbar-default-link-hover-bg: darken($navbar-default-bg, 10%);
|
370
|
-
$navbar-default-link-active-color: #fff;
|
371
|
-
$navbar-default-link-active-bg: darken($navbar-default-bg, 10%);
|
372
|
-
$navbar-default-link-disabled-color: #ddd;
|
373
|
-
$navbar-default-link-disabled-bg: transparent;
|
374
|
-
|
375
|
-
// Navbar brand label
|
376
|
-
$navbar-default-brand-color: $navbar-default-link-color;
|
377
|
-
$navbar-default-brand-hover-color: #fff;
|
378
|
-
$navbar-default-brand-hover-bg: none;
|
379
|
-
|
380
|
-
// Navbar toggle
|
381
|
-
$navbar-default-toggle-hover-bg: darken($navbar-default-bg, 10%);
|
382
|
-
$navbar-default-toggle-icon-bar-bg: #fff;
|
383
|
-
$navbar-default-toggle-border-color: darken($navbar-default-bg, 10%);
|
384
|
-
|
385
|
-
|
386
|
-
// Inverted navbar
|
387
|
-
// Reset inverted navbar basics
|
388
|
-
$navbar-inverse-color: #fff;
|
389
|
-
$navbar-inverse-bg: $brand-info;
|
390
|
-
$navbar-inverse-border: darken($navbar-inverse-bg, 5%);
|
391
|
-
|
392
|
-
// Inverted navbar links
|
393
|
-
$navbar-inverse-link-color: #fff;
|
394
|
-
$navbar-inverse-link-hover-color: #fff;
|
395
|
-
$navbar-inverse-link-hover-bg: darken($navbar-inverse-bg, 5%);
|
396
|
-
$navbar-inverse-link-active-color: #fff;
|
397
|
-
$navbar-inverse-link-active-bg: darken($navbar-inverse-bg, 5%);
|
398
|
-
$navbar-inverse-link-disabled-color: #ccc;
|
399
|
-
$navbar-inverse-link-disabled-bg: transparent;
|
400
|
-
|
401
|
-
// Inverted navbar brand label
|
402
|
-
$navbar-inverse-brand-color: $navbar-inverse-link-color;
|
403
|
-
$navbar-inverse-brand-hover-color: #fff;
|
404
|
-
$navbar-inverse-brand-hover-bg: none;
|
405
|
-
|
406
|
-
// Inverted navbar toggle
|
407
|
-
$navbar-inverse-toggle-hover-bg: darken($navbar-inverse-bg, 5%);
|
408
|
-
$navbar-inverse-toggle-icon-bar-bg: #fff;
|
409
|
-
$navbar-inverse-toggle-border-color: darken($navbar-inverse-bg, 5%);
|
410
|
-
|
411
|
-
|
412
|
-
//== Navs
|
413
|
-
//
|
414
|
-
//##
|
415
|
-
|
416
|
-
//=== Shared nav styles
|
417
|
-
$nav-link-padding: 10px 15px;
|
418
|
-
$nav-link-hover-bg: $gray-lighter;
|
419
|
-
|
420
|
-
$nav-disabled-link-color: $gray-light;
|
421
|
-
$nav-disabled-link-hover-color: $gray-light;
|
422
|
-
|
423
|
-
//== Tabs
|
424
|
-
$nav-tabs-border-color: #ddd;
|
425
|
-
|
426
|
-
$nav-tabs-link-hover-border-color: $gray-lighter;
|
427
|
-
|
428
|
-
$nav-tabs-active-link-hover-bg: $body-bg;
|
429
|
-
$nav-tabs-active-link-hover-color: $gray;
|
430
|
-
$nav-tabs-active-link-hover-border-color: #ddd;
|
431
|
-
|
432
|
-
$nav-tabs-justified-link-border-color: #ddd;
|
433
|
-
$nav-tabs-justified-active-link-border-color: $body-bg;
|
434
|
-
|
435
|
-
//== Pills
|
436
|
-
$nav-pills-border-radius: $border-radius-base;
|
437
|
-
$nav-pills-active-link-hover-bg: $component-active-bg;
|
438
|
-
$nav-pills-active-link-hover-color: $component-active-color;
|
439
|
-
|
440
|
-
|
441
|
-
//== Pagination
|
442
|
-
//
|
443
|
-
//##
|
444
|
-
|
445
|
-
$pagination-color: $link-color;
|
446
|
-
$pagination-bg: #fff;
|
447
|
-
$pagination-border: #ddd;
|
448
|
-
|
449
|
-
$pagination-hover-color: $link-hover-color;
|
450
|
-
$pagination-hover-bg: $gray-lighter;
|
451
|
-
$pagination-hover-border: #ddd;
|
452
|
-
|
453
|
-
$pagination-active-color: $gray-light;
|
454
|
-
$pagination-active-bg: #f5f5f5;
|
455
|
-
$pagination-active-border: $pagination-hover-border;
|
456
|
-
|
457
|
-
$pagination-disabled-color: $gray-light;
|
458
|
-
$pagination-disabled-bg: #fff;
|
459
|
-
$pagination-disabled-border: #ddd;
|
460
|
-
|
461
|
-
|
462
|
-
//== Pager
|
463
|
-
//
|
464
|
-
//##
|
465
|
-
|
466
|
-
$pager-bg: $pagination-bg;
|
467
|
-
$pager-border: $pagination-border;
|
468
|
-
$pager-border-radius: 15px;
|
469
|
-
|
470
|
-
$pager-hover-bg: $pagination-hover-bg;
|
471
|
-
|
472
|
-
$pager-active-bg: $pagination-active-bg;
|
473
|
-
$pager-active-color: $pagination-active-color;
|
474
|
-
|
475
|
-
$pager-disabled-color: $gray-light;
|
476
|
-
|
477
|
-
|
478
|
-
//== Jumbotron
|
479
|
-
//
|
480
|
-
//##
|
481
|
-
|
482
|
-
$jumbotron-padding: 30px;
|
483
|
-
$jumbotron-color: inherit;
|
484
|
-
$jumbotron-bg: $gray-lighter;
|
485
|
-
$jumbotron-heading-color: inherit;
|
486
|
-
$jumbotron-font-size: ceil(($font-size-base * 1.5));
|
487
|
-
|
488
|
-
|
489
|
-
//== Form states and alerts
|
490
|
-
//
|
491
|
-
//## Define colors for form feedback states and, by default, alerts.
|
492
|
-
|
493
|
-
$state-success-text: #468847;
|
494
|
-
$state-success-bg: #dff0d8;
|
495
|
-
$state-success-border: darken(adjust-hue($state-success-bg, -10), 5%);
|
496
|
-
|
497
|
-
$state-info-text: #3a87ad;
|
498
|
-
$state-info-bg: #d9edf7;
|
499
|
-
$state-info-border: darken(adjust-hue($state-info-bg, -10), 7%);
|
500
|
-
|
501
|
-
$state-warning-text: #c09853;
|
502
|
-
$state-warning-bg: #fcf8e3;
|
503
|
-
$state-warning-border: darken(adjust-hue($state-warning-bg, -10), 3%);
|
504
|
-
|
505
|
-
$state-danger-text: #b94a48;
|
506
|
-
$state-danger-bg: #f2dede;
|
507
|
-
$state-danger-border: darken(adjust-hue($state-danger-bg, -10), 3%);
|
508
|
-
|
509
|
-
|
510
|
-
//== Tooltips
|
511
|
-
//
|
512
|
-
//##
|
513
|
-
|
514
|
-
//** Tooltip max width
|
515
|
-
$tooltip-max-width: 200px;
|
516
|
-
//** Tooltip text color
|
517
|
-
$tooltip-color: #fff;
|
518
|
-
//** Tooltip background color
|
519
|
-
$tooltip-bg: #000;
|
520
|
-
$tooltip-opacity: .9;
|
521
|
-
|
522
|
-
//** Tooltip arrow width
|
523
|
-
$tooltip-arrow-width: 5px;
|
524
|
-
//** Tooltip arrow color
|
525
|
-
$tooltip-arrow-color: $tooltip-bg;
|
526
|
-
|
527
|
-
|
528
|
-
//== Popovers
|
529
|
-
//
|
530
|
-
//##
|
531
|
-
|
532
|
-
//** Popover body background color
|
533
|
-
$popover-bg: #fff;
|
534
|
-
//** Popover maximum width
|
535
|
-
$popover-max-width: 276px;
|
536
|
-
//** Popover border color
|
537
|
-
$popover-border-color: rgba(0,0,0,.2);
|
538
|
-
//** Popover fallback border color
|
539
|
-
$popover-fallback-border-color: #ccc;
|
540
|
-
|
541
|
-
//** Popover title background color
|
542
|
-
$popover-title-bg: darken($popover-bg, 3%);
|
543
|
-
|
544
|
-
//** Popover arrow width
|
545
|
-
$popover-arrow-width: 10px;
|
546
|
-
//** Popover arrow color
|
547
|
-
$popover-arrow-color: $popover-bg;
|
548
|
-
|
549
|
-
//** Popover outer arrow width
|
550
|
-
$popover-arrow-outer-width: ($popover-arrow-width + 1);
|
551
|
-
//** Popover outer arrow color
|
552
|
-
$popover-arrow-outer-color: fadein($popover-border-color, 5%);
|
553
|
-
//** Popover outer arrow fallback color
|
554
|
-
$popover-arrow-outer-fallback-color: darken($popover-fallback-border-color, 20%);
|
555
|
-
|
556
|
-
|
557
|
-
//== Labels
|
558
|
-
//
|
559
|
-
//##
|
560
|
-
|
561
|
-
//** Default label background color
|
562
|
-
$label-default-bg: $gray-light;
|
563
|
-
//** Primary label background color
|
564
|
-
$label-primary-bg: $brand-primary;
|
565
|
-
//** Success label background color
|
566
|
-
$label-success-bg: $brand-success;
|
567
|
-
//** Info label background color
|
568
|
-
$label-info-bg: $brand-info;
|
569
|
-
//** Warning label background color
|
570
|
-
$label-warning-bg: $brand-warning;
|
571
|
-
//** Danger label background color
|
572
|
-
$label-danger-bg: $brand-danger;
|
573
|
-
|
574
|
-
//** Default label text color
|
575
|
-
$label-color: #fff;
|
576
|
-
//** Default text color of a linked label
|
577
|
-
$label-link-hover-color: #fff;
|
578
|
-
|
579
|
-
|
580
|
-
//== Modals
|
581
|
-
//
|
582
|
-
//##
|
583
|
-
|
584
|
-
//** Padding applied to the modal body
|
585
|
-
$modal-inner-padding: 20px;
|
586
|
-
|
587
|
-
//** Padding applied to the modal title
|
588
|
-
$modal-title-padding: 15px;
|
589
|
-
//** Modal title line-height
|
590
|
-
$modal-title-line-height: $line-height-base;
|
591
|
-
|
592
|
-
//** Background color of modal content area
|
593
|
-
$modal-content-bg: #fff;
|
594
|
-
//** Modal content border color
|
595
|
-
$modal-content-border-color: rgba(0,0,0,.2);
|
596
|
-
//** Modal content border color **for IE8**
|
597
|
-
$modal-content-fallback-border-color: #999;
|
598
|
-
|
599
|
-
//** Modal backdrop background color
|
600
|
-
$modal-backdrop-bg: #000;
|
601
|
-
//** Modal backdrop opacity
|
602
|
-
$modal-backdrop-opacity: .5;
|
603
|
-
//** Modal header border color
|
604
|
-
$modal-header-border-color: #e5e5e5;
|
605
|
-
//** Modal footer border color
|
606
|
-
$modal-footer-border-color: $modal-header-border-color;
|
607
|
-
|
608
|
-
$modal-lg: 900px;
|
609
|
-
$modal-md: 600px;
|
610
|
-
$modal-sm: 300px;
|
611
|
-
|
612
|
-
|
613
|
-
//== Alerts
|
614
|
-
//
|
615
|
-
//## Define alert colors, border radius, and padding.
|
616
|
-
|
617
|
-
$alert-padding: 15px;
|
618
|
-
$alert-border-radius: $border-radius-base;
|
619
|
-
$alert-link-font-weight: bold;
|
620
|
-
|
621
|
-
$alert-success-bg: $state-success-bg;
|
622
|
-
$alert-success-text: $state-success-text;
|
623
|
-
$alert-success-border: $state-success-border;
|
624
|
-
|
625
|
-
$alert-info-bg: $state-info-bg;
|
626
|
-
$alert-info-text: $state-info-text;
|
627
|
-
$alert-info-border: $state-info-border;
|
628
|
-
|
629
|
-
$alert-warning-bg: $state-warning-bg;
|
630
|
-
$alert-warning-text: $state-warning-text;
|
631
|
-
$alert-warning-border: $state-warning-border;
|
632
|
-
|
633
|
-
$alert-danger-bg: $state-danger-bg;
|
634
|
-
$alert-danger-text: $state-danger-text;
|
635
|
-
$alert-danger-border: $state-danger-border;
|
636
|
-
|
637
|
-
|
638
|
-
//== Progress bars
|
639
|
-
//
|
640
|
-
//##
|
641
|
-
|
642
|
-
//** Background color of the whole progress component
|
643
|
-
$progress-bg: #f5f5f5;
|
644
|
-
//** Progress bar text color
|
645
|
-
$progress-bar-color: #fff;
|
646
|
-
//** Variable for setting rounded corners on progress bar.
|
647
|
-
$progress-border-radius: $border-radius-base;
|
648
|
-
|
649
|
-
//** Default progress bar color
|
650
|
-
$progress-bar-bg: $brand-primary;
|
651
|
-
//** Success progress bar color
|
652
|
-
$progress-bar-success-bg: $brand-success;
|
653
|
-
//** Warning progress bar color
|
654
|
-
$progress-bar-warning-bg: $brand-warning;
|
655
|
-
//** Danger progress bar color
|
656
|
-
$progress-bar-danger-bg: $brand-danger;
|
657
|
-
//** Info progress bar color
|
658
|
-
$progress-bar-info-bg: $brand-info;
|
659
|
-
|
660
|
-
|
661
|
-
//== List group
|
662
|
-
//
|
663
|
-
//##
|
664
|
-
|
665
|
-
//** Background color on `.list-group-item`
|
666
|
-
$list-group-bg: #fff;
|
667
|
-
//** `.list-group-item` border color
|
668
|
-
$list-group-border: #ddd;
|
669
|
-
//** List group border radius
|
670
|
-
$list-group-border-radius: $border-radius-base;
|
671
|
-
|
672
|
-
//** Background color of single list items on hover
|
673
|
-
$list-group-hover-bg: #f5f5f5;
|
674
|
-
//** Text color of active list items
|
675
|
-
$list-group-active-color: $component-active-color;
|
676
|
-
//** Background color of active list items
|
677
|
-
$list-group-active-bg: $component-active-bg;
|
678
|
-
//** Border color of active list elements
|
679
|
-
$list-group-active-border: $list-group-active-bg;
|
680
|
-
//** Text color for content within active list items
|
681
|
-
$list-group-active-text-color: lighten($list-group-active-bg, 40%);
|
682
|
-
|
683
|
-
//** Text color of disabled list items
|
684
|
-
$list-group-disabled-color: $gray-light;
|
685
|
-
//** Background color of disabled list items
|
686
|
-
$list-group-disabled-bg: $gray-lighter;
|
687
|
-
//** Text color for content within disabled list items
|
688
|
-
$list-group-disabled-text-color: $list-group-disabled-color;
|
689
|
-
|
690
|
-
$list-group-link-color: #555;
|
691
|
-
$list-group-link-hover-color: $list-group-link-color;
|
692
|
-
$list-group-link-heading-color: #333;
|
693
|
-
|
694
|
-
|
695
|
-
//== Panels
|
696
|
-
//
|
697
|
-
//##
|
698
|
-
|
699
|
-
$panel-bg: #fff;
|
700
|
-
$panel-body-padding: 15px;
|
701
|
-
$panel-heading-padding: 10px 15px;
|
702
|
-
$panel-footer-padding: $panel-heading-padding;
|
703
|
-
$panel-border-radius: $border-radius-base;
|
704
|
-
|
705
|
-
//** Border color for elements within panels
|
706
|
-
$panel-inner-border: #ddd;
|
707
|
-
$panel-footer-bg: #f5f5f5;
|
708
|
-
|
709
|
-
$panel-default-text: $text-color;
|
710
|
-
$panel-default-border: #ddd;
|
711
|
-
$panel-default-heading-bg: #f5f5f5;
|
712
|
-
|
713
|
-
$panel-primary-text: #fff;
|
714
|
-
$panel-primary-border: $panel-default-border;
|
715
|
-
$panel-primary-heading-bg: $brand-primary;
|
716
|
-
|
717
|
-
$panel-success-text: $state-success-text;
|
718
|
-
$panel-success-border: $panel-default-border;
|
719
|
-
$panel-success-heading-bg: $brand-success;
|
720
|
-
|
721
|
-
$panel-info-text: $state-info-text;
|
722
|
-
$panel-info-border: $panel-default-border;
|
723
|
-
$panel-info-heading-bg: $brand-info;
|
724
|
-
|
725
|
-
$panel-warning-text: $state-warning-text;
|
726
|
-
$panel-warning-border: $panel-default-border;
|
727
|
-
$panel-warning-heading-bg: $brand-warning;
|
728
|
-
|
729
|
-
$panel-danger-text: $state-danger-text;
|
730
|
-
$panel-danger-border: $panel-default-border;
|
731
|
-
$panel-danger-heading-bg: $brand-danger;
|
732
|
-
|
733
|
-
|
734
|
-
//== Thumbnails
|
735
|
-
//
|
736
|
-
//##
|
737
|
-
|
738
|
-
//** Padding around the thumbnail image
|
739
|
-
$thumbnail-padding: 4px;
|
740
|
-
//** Thumbnail background color
|
741
|
-
$thumbnail-bg: $body-bg;
|
742
|
-
//** Thumbnail border color
|
743
|
-
$thumbnail-border: #ddd;
|
744
|
-
//** Thumbnail border radius
|
745
|
-
$thumbnail-border-radius: $border-radius-base;
|
746
|
-
|
747
|
-
//** Custom text color for thumbnail captions
|
748
|
-
$thumbnail-caption-color: $text-color;
|
749
|
-
//** Padding around the thumbnail caption
|
750
|
-
$thumbnail-caption-padding: 9px;
|
751
|
-
|
752
|
-
|
753
|
-
//== Wells
|
754
|
-
//
|
755
|
-
//##
|
756
|
-
|
757
|
-
$well-bg: #f5f5f5;
|
758
|
-
$well-border: darken($well-bg, 7%);
|
759
|
-
|
760
|
-
|
761
|
-
//== Badges
|
762
|
-
//
|
763
|
-
//##
|
764
|
-
|
765
|
-
$badge-color: #fff;
|
766
|
-
//** Linked badge text color on hover
|
767
|
-
$badge-link-hover-color: #fff;
|
768
|
-
$badge-bg: $brand-primary;
|
769
|
-
|
770
|
-
//** Badge text color in active nav link
|
771
|
-
$badge-active-color: $link-color;
|
772
|
-
//** Badge background color in active nav link
|
773
|
-
$badge-active-bg: #fff;
|
774
|
-
|
775
|
-
$badge-font-weight: bold;
|
776
|
-
$badge-line-height: 1;
|
777
|
-
$badge-border-radius: 10px;
|
778
|
-
|
779
|
-
|
780
|
-
//== Breadcrumbs
|
781
|
-
//
|
782
|
-
//##
|
783
|
-
|
784
|
-
$breadcrumb-padding-vertical: 8px;
|
785
|
-
$breadcrumb-padding-horizontal: 15px;
|
786
|
-
//** Breadcrumb background color
|
787
|
-
$breadcrumb-bg: #f5f5f5;
|
788
|
-
//** Breadcrumb text color
|
789
|
-
$breadcrumb-color: #ccc;
|
790
|
-
//** Text color of current page in the breadcrumb
|
791
|
-
$breadcrumb-active-color: $gray-light;
|
792
|
-
//** Textual separator for between breadcrumb elements
|
793
|
-
$breadcrumb-separator: "/";
|
794
|
-
|
795
|
-
|
796
|
-
//== Carousel
|
797
|
-
//
|
798
|
-
//##
|
799
|
-
|
800
|
-
$carousel-text-shadow: 0 1px 2px rgba(0,0,0,.6);
|
801
|
-
|
802
|
-
$carousel-control-color: #fff;
|
803
|
-
$carousel-control-width: 15%;
|
804
|
-
$carousel-control-opacity: .5;
|
805
|
-
$carousel-control-font-size: 20px;
|
806
|
-
|
807
|
-
$carousel-indicator-active-bg: #fff;
|
808
|
-
$carousel-indicator-border-color: #fff;
|
809
|
-
|
810
|
-
$carousel-caption-color: #fff;
|
811
|
-
|
812
|
-
|
813
|
-
//== Close
|
814
|
-
//
|
815
|
-
//##
|
816
|
-
|
817
|
-
$close-font-weight: bold;
|
818
|
-
$close-color: #000;
|
819
|
-
$close-text-shadow: 0 1px 0 #fff;
|
820
|
-
|
821
|
-
|
822
|
-
//== Code
|
823
|
-
//
|
824
|
-
//##
|
825
|
-
|
826
|
-
$code-color: #c7254e;
|
827
|
-
$code-bg: #f9f2f4;
|
828
|
-
|
829
|
-
$kbd-color: #fff;
|
830
|
-
$kbd-bg: #333;
|
831
|
-
|
832
|
-
$pre-bg: #f5f5f5;
|
833
|
-
$pre-color: $gray-dark;
|
834
|
-
$pre-border-color: #ccc;
|
835
|
-
$pre-scrollable-max-height: 340px;
|
836
|
-
|
837
|
-
|
838
|
-
//== Type
|
839
|
-
//
|
840
|
-
//##
|
841
|
-
|
842
|
-
//** Horizontal offset for forms and lists.
|
843
|
-
$component-offset-horizontal: 180px;
|
844
|
-
//** Text muted color
|
845
|
-
$text-muted: $gray-light;
|
846
|
-
//** Abbreviations and acronyms border color
|
847
|
-
$abbr-border-color: $gray-light;
|
848
|
-
//** Headings small color
|
849
|
-
$headings-small-color: $gray-light;
|
850
|
-
//** Blockquote small color
|
851
|
-
$blockquote-small-color: $gray-light;
|
852
|
-
//** Blockquote font size
|
853
|
-
$blockquote-font-size: ($font-size-base * 1.25);
|
854
|
-
//** Blockquote border color
|
855
|
-
$blockquote-border-color: $gray-lighter;
|
856
|
-
//** Page header border color
|
857
|
-
$page-header-border-color: $gray-lighter;
|
858
|
-
//** Width of horizontal description list titles
|
859
|
-
$dl-horizontal-offset: $component-offset-horizontal;
|
860
|
-
//** Horizontal line color.
|
861
|
-
$hr-border: $gray-lighter;
|