rmails 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/Gemfile +24 -0
- data/Gemfile.lock +167 -0
- data/LICENSE.txt +20 -0
- data/README.markdown +9 -0
- data/Rakefile +31 -0
- data/Rakefile1 +9 -0
- data/Vagrantfile +51 -0
- data/app/assets/images/arrow_bottom.gif +0 -0
- data/app/assets/images/arrow_right.gif +0 -0
- data/app/assets/images/at-sign.png +0 -0
- data/app/assets/images/checkerboard.gif +0 -0
- data/app/assets/images/glyphicons-halflings-white.png +0 -0
- data/app/assets/images/glyphicons-halflings.png +0 -0
- data/app/assets/images/icon_draft.gif +0 -0
- data/app/assets/images/icon_layout.gif +0 -0
- data/app/assets/images/icon_move.gif +0 -0
- data/app/assets/images/icon_regular.gif +0 -0
- data/app/assets/images/icon_snippet.gif +0 -0
- data/app/assets/images/nav_arrow.png +0 -0
- data/app/assets/images/x.png +0 -0
- data/app/assets/javascripts/application.coffee.erb +27 -0
- data/app/assets/javascripts/canjs/can.construct.proxy.js +60 -0
- data/app/assets/javascripts/canjs/can.construct.super.js +44 -0
- data/app/assets/javascripts/canjs/can.control.plugin.js +245 -0
- data/app/assets/javascripts/canjs/can.control.view.js +88 -0
- data/app/assets/javascripts/canjs/can.dojo.js +3669 -0
- data/app/assets/javascripts/canjs/can.dojo.min.js +66 -0
- data/app/assets/javascripts/canjs/can.fixture.js +1020 -0
- data/app/assets/javascripts/canjs/can.jquery.js +2995 -0
- data/app/assets/javascripts/canjs/can.jquery.min.js +52 -0
- data/app/assets/javascripts/canjs/can.mootools.js +3462 -0
- data/app/assets/javascripts/canjs/can.mootools.min.js +63 -0
- data/app/assets/javascripts/canjs/can.observe.attributes.js +293 -0
- data/app/assets/javascripts/canjs/can.observe.backup.js +368 -0
- data/app/assets/javascripts/canjs/can.observe.delegate.js +359 -0
- data/app/assets/javascripts/canjs/can.observe.setter.js +58 -0
- data/app/assets/javascripts/canjs/can.observe.validations.js +374 -0
- data/app/assets/javascripts/canjs/can.view.modifiers.js +292 -0
- data/app/assets/javascripts/canjs/can.yui.js +3530 -0
- data/app/assets/javascripts/canjs/can.yui.min.js +65 -0
- data/app/assets/javascripts/canjs/can.zepto.js +3426 -0
- data/app/assets/javascripts/canjs/can.zepto.min.js +62 -0
- data/app/assets/javascripts/controls/admins.coffee.erb +105 -0
- data/app/assets/javascripts/controls/aliases.coffee.erb +91 -0
- data/app/assets/javascripts/controls/domains.coffee.erb +115 -0
- data/app/assets/javascripts/controls/settings.coffee.erb +47 -0
- data/app/assets/javascripts/controls/users.coffee.erb +94 -0
- data/app/assets/javascripts/lib/facebox.js +311 -0
- data/app/assets/javascripts/lib/html5.js +2 -0
- data/app/assets/javascripts/lib/jquery.js +9301 -0
- data/app/assets/javascripts/lib/jquery_formparams.js +108 -0
- data/app/assets/javascripts/lib/jquery_input_hint.js +20 -0
- data/app/assets/javascripts/lib/jquery_paginate.js +120 -0
- data/app/assets/javascripts/lib/jquery_ui_custom.js +6 -0
- data/app/assets/javascripts/lib/json2.js +487 -0
- data/app/assets/javascripts/lib/utils.coffee.erb +48 -0
- data/app/assets/javascripts/models/admin.coffee.erb +42 -0
- data/app/assets/javascripts/models/alias.coffee.erb +28 -0
- data/app/assets/javascripts/models/domain.coffee.erb +39 -0
- data/app/assets/javascripts/models/property.coffee.erb +18 -0
- data/app/assets/javascripts/models/user.coffee.erb +29 -0
- data/app/assets/stylesheets/application.sass +156 -0
- data/app/assets/stylesheets/base.css.sass +243 -0
- data/app/assets/stylesheets/facebox.css +80 -0
- data/app/assets/stylesheets/lib/bootstrap.css +9 -0
- data/app/assets/stylesheets/twitter/bootstrap-responsive.scss +1 -0
- data/app/assets/stylesheets/twitter/bootstrap.scss +63 -0
- data/app/assets/stylesheets/twitter/bootstrap/_accordion.scss +34 -0
- data/app/assets/stylesheets/twitter/bootstrap/_alerts.scss +79 -0
- data/app/assets/stylesheets/twitter/bootstrap/_breadcrumbs.scss +24 -0
- data/app/assets/stylesheets/twitter/bootstrap/_button-groups.scss +229 -0
- data/app/assets/stylesheets/twitter/bootstrap/_buttons.scss +228 -0
- data/app/assets/stylesheets/twitter/bootstrap/_carousel.scss +158 -0
- data/app/assets/stylesheets/twitter/bootstrap/_close.scss +32 -0
- data/app/assets/stylesheets/twitter/bootstrap/_code.scss +61 -0
- data/app/assets/stylesheets/twitter/bootstrap/_component-animations.scss +22 -0
- data/app/assets/stylesheets/twitter/bootstrap/_dropdowns.scss +237 -0
- data/app/assets/stylesheets/twitter/bootstrap/_forms.scss +689 -0
- data/app/assets/stylesheets/twitter/bootstrap/_grid.scss +21 -0
- data/app/assets/stylesheets/twitter/bootstrap/_hero-unit.scss +25 -0
- data/app/assets/stylesheets/twitter/bootstrap/_labels-badges.scss +83 -0
- data/app/assets/stylesheets/twitter/bootstrap/_layouts.scss +16 -0
- data/app/assets/stylesheets/twitter/bootstrap/_media.scss +55 -0
- data/app/assets/stylesheets/twitter/bootstrap/_mixins.scss +690 -0
- data/app/assets/stylesheets/twitter/bootstrap/_modals.scss +95 -0
- data/app/assets/stylesheets/twitter/bootstrap/_navbar.scss +497 -0
- data/app/assets/stylesheets/twitter/bootstrap/_navs.scss +409 -0
- data/app/assets/stylesheets/twitter/bootstrap/_pager.scss +43 -0
- data/app/assets/stylesheets/twitter/bootstrap/_pagination.scss +123 -0
- data/app/assets/stylesheets/twitter/bootstrap/_popovers.scss +133 -0
- data/app/assets/stylesheets/twitter/bootstrap/_progress-bars.scss +122 -0
- data/app/assets/stylesheets/twitter/bootstrap/_reset.scss +216 -0
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-1200px-min.scss +28 -0
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-767px-max.scss +193 -0
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-768px-979px.scss +19 -0
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-navbar.scss +189 -0
- data/app/assets/stylesheets/twitter/bootstrap/_responsive-utilities.scss +74 -0
- data/app/assets/stylesheets/twitter/bootstrap/_scaffolding.scss +53 -0
- data/app/assets/stylesheets/twitter/bootstrap/_sprites.scss +197 -0
- data/app/assets/stylesheets/twitter/bootstrap/_tables.scss +235 -0
- data/app/assets/stylesheets/twitter/bootstrap/_thumbnails.scss +53 -0
- data/app/assets/stylesheets/twitter/bootstrap/_tooltip.scss +70 -0
- data/app/assets/stylesheets/twitter/bootstrap/_type.scss +247 -0
- data/app/assets/stylesheets/twitter/bootstrap/_utilities.scss +45 -0
- data/app/assets/stylesheets/twitter/bootstrap/_variables.scss +301 -0
- data/app/assets/stylesheets/twitter/bootstrap/_wells.scss +29 -0
- data/app/assets/stylesheets/twitter/bootstrap/responsive.scss +48 -0
- data/app/controllers/admin_users_controller.rb +62 -0
- data/app/controllers/aliases_controller.rb +35 -0
- data/app/controllers/application_controller.rb +20 -0
- data/app/controllers/domains_controller.rb +48 -0
- data/app/controllers/server_controller.rb +28 -0
- data/app/controllers/users_controller.rb +35 -0
- data/app/helpers/admin_users_helper.rb +11 -0
- data/app/helpers/application_helper.rb +2 -0
- data/app/helpers/domains_helper.rb +25 -0
- data/app/helpers/server_helper.rb +30 -0
- data/app/mailers/.gitkeep +0 -0
- data/app/models/.gitkeep +0 -0
- data/app/models/admin_user.rb +54 -0
- data/app/models/certificate_manager.rb +46 -0
- data/app/models/property.rb +103 -0
- data/app/models/property/awstats.rb +15 -0
- data/app/models/property/dovecot.rb +61 -0
- data/app/models/property/dspam.rb +45 -0
- data/app/models/property/nginx.rb +47 -0
- data/app/models/property/postfix.rb +64 -0
- data/app/models/property_value_validator.rb +41 -0
- data/app/models/system_manager.rb +88 -0
- data/app/models/virtual_alias.rb +13 -0
- data/app/models/virtual_domain.rb +15 -0
- data/app/models/virtual_user.rb +51 -0
- data/app/views/admin_users/_form.html.haml +21 -0
- data/app/views/admin_users/first.html.haml +12 -0
- data/app/views/admin_users/index.html.haml +61 -0
- data/app/views/aliases/_form.html.haml +11 -0
- data/app/views/aliases/_list.html.haml +0 -0
- data/app/views/devise/confirmations/new.html.haml +9 -0
- data/app/views/devise/mailer/confirmation_instructions.html.haml +4 -0
- data/app/views/devise/mailer/reset_password_instructions.html.haml +6 -0
- data/app/views/devise/mailer/unlock_instructions.html.haml +5 -0
- data/app/views/devise/passwords/edit.html.haml +14 -0
- data/app/views/devise/passwords/new.html.haml +12 -0
- data/app/views/devise/registrations/edit.html.haml +18 -0
- data/app/views/devise/registrations/new.html.haml +10 -0
- data/app/views/devise/sessions/new.html.haml +16 -0
- data/app/views/devise/shared/_links.haml +17 -0
- data/app/views/devise/unlocks/new.html.haml +11 -0
- data/app/views/domains/_fields.html.haml +0 -0
- data/app/views/domains/_form.html.haml +7 -0
- data/app/views/domains/index.html.haml +133 -0
- data/app/views/domains/show.html.haml +1 -0
- data/app/views/layouts/_nav.html.haml +3 -0
- data/app/views/layouts/application.html.haml +29 -0
- data/app/views/server/_certificates.html.haml +10 -0
- data/app/views/server/_dovecot.html.haml +27 -0
- data/app/views/server/_dspam.html.haml +9 -0
- data/app/views/server/_postfix_info.html.haml +5 -0
- data/app/views/server/_postfix_test.html.haml +5 -0
- data/app/views/server/_status.html.haml +11 -0
- data/app/views/server/index.html.haml +36 -0
- data/app/views/users/_form.html.haml +11 -0
- data/app/views/users/_list.html.haml +0 -0
- data/bin/rmails +43 -0
- data/config.ru +4 -0
- data/config/application.rb +62 -0
- data/config/boot.rb +6 -0
- data/config/environment.rb +5 -0
- data/config/environments/development.rb +37 -0
- data/config/environments/production.rb +67 -0
- data/config/environments/test.rb +37 -0
- data/config/initializers/backtrace_silencers.rb +7 -0
- data/config/initializers/devise.rb +240 -0
- data/config/initializers/devise_encryptable.rb +37 -0
- data/config/initializers/devise_models.rb +86 -0
- data/config/initializers/inflections.rb +15 -0
- data/config/initializers/mime_types.rb +5 -0
- data/config/initializers/secret_token.rb +7 -0
- data/config/initializers/session_store.rb +8 -0
- data/config/initializers/simple_form.rb +142 -0
- data/config/initializers/simple_form_bootstrap.rb +45 -0
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/locales/cz.yml +45 -0
- data/config/locales/devise.cz.yml +47 -0
- data/config/locales/devise.en.yml +60 -0
- data/config/locales/en.yml +5 -0
- data/config/locales/server/cz.yml +14 -0
- data/config/locales/server/en.yml +7 -0
- data/config/locales/server/help/dovecot/cz.yml +21 -0
- data/config/locales/server/help/dovecot/en.yml +18 -0
- data/config/locales/server/help/dspam/cz.yml +10 -0
- data/config/locales/server/help/dspam/en.yml +4 -0
- data/config/locales/server/key/dovecot/cz.yml +23 -0
- data/config/locales/server/key/dovecot/en.yml +20 -0
- data/config/locales/server/key/dspam/cz.yml +10 -0
- data/config/locales/server/key/dspam/en.yml +4 -0
- data/config/locales/simple_form.en.yml +26 -0
- data/config/locales/views/admin_users/cz.yml +25 -0
- data/config/locales/views/admin_users/en.yml +5 -0
- data/config/locales/views/aliases/cz.yml +17 -0
- data/config/locales/views/aliases/en.yml +1 -0
- data/config/locales/views/devise/cz.yml +26 -0
- data/config/locales/views/devise/en.yml +13 -0
- data/config/locales/views/domains/cz.yml +15 -0
- data/config/locales/views/domains/en.yml +15 -0
- data/config/locales/views/server/cz.yml +19 -0
- data/config/locales/views/server/en.yml +3 -0
- data/config/locales/views/users/cz.yml +18 -0
- data/config/locales/views/users/en.yml +1 -0
- data/config/routes.rb +80 -0
- data/db/migrate/20121112201233_virtual_domain.rb +11 -0
- data/db/migrate/20121112201247_virtual_alias.rb +10 -0
- data/db/migrate/20121112201341_virtual_user.rb +34 -0
- data/db/migrate/20121112201359_create_admin_user.rb +30 -0
- data/db/migrate/20121112201411_server_configuration.rb +13 -0
- data/db/migrate/20130304083938_join_domains_users.rb +12 -0
- data/db/migrate/20130311214040_create_versions.rb +18 -0
- data/db/seeds.rb +45 -0
- data/lib/devise-encryptable.rb +1 -0
- data/lib/rmails.rb +5 -0
- data/lib/rmails/installer.rb +37 -0
- data/lib/rmails/version.rb +3 -0
- data/lib/tasks/.gitkeep +0 -0
- data/lib/templates/haml/scaffold/_form.html.haml +10 -0
- data/locals +0 -0
- data/log/.gitkeep +0 -0
- data/public/404.html +26 -0
- data/public/422.html +26 -0
- data/public/500.html +25 -0
- data/public/favicon.ico +0 -0
- data/public/fonts/London.eot +0 -0
- data/public/fonts/London.otf +0 -0
- data/public/fonts/London.woff +0 -0
- data/public/fonts/LondonBold.otf +0 -0
- data/public/robots.txt +5 -0
- data/rmails.gemspec +35 -0
- data/script/prepflog.pl +576 -0
- data/script/rails +6 -0
- data/system/config/automateit_env.rb +16 -0
- data/system/config/fields.yml +48 -0
- data/system/config/tags.yml +39 -0
- data/system/dist/README_AutomateIt_dist.txt +20 -0
- data/system/dist/amavis/spamassassin.cf.erb +85 -0
- data/system/dist/amavis/user.erb +33 -0
- data/system/dist/awstats/awstats.mail.conf.erb +41 -0
- data/system/dist/awstats/prepflog.pl +576 -0
- data/system/dist/dovecot/dovecot-sql.conf.ext.erb +14 -0
- data/system/dist/dovecot/dovecot.conf.erb +297 -0
- data/system/dist/dovecot/old_dovecot.conf.erb +63 -0
- data/system/dist/dspam/conf.erb +96 -0
- data/system/dist/dspam/pgsql.conf +33 -0
- data/system/dist/nginx/awstats.erb +17 -0
- data/system/dist/nginx/rmails.erb +40 -0
- data/system/dist/postfix/email2email.cf.erb +5 -0
- data/system/dist/postfix/main.cf.erb +118 -0
- data/system/dist/postfix/master.cf.erb +74 -0
- data/system/dist/postfix/sasl.conf.erb +3 -0
- data/system/dist/postfix/sender_login_maps.cf.erb +5 -0
- data/system/dist/postfix/virtual_alias_maps.cf.erb +5 -0
- data/system/dist/postfix/virtual_mailbox_domains.cf.erb +5 -0
- data/system/dist/postfix/virtual_mailbox_maps.cf.erb +5 -0
- data/system/dist/postgresql/postgresql.conf.erb +54 -0
- data/system/dist/rmails/Gemfile.1 +8 -0
- data/system/dist/rmails/Gemfile.2 +24 -0
- data/system/dist/rmails/database.yml.erb +15 -0
- data/system/dist/sudoers +37 -0
- data/system/lib/README_AutomateIt_lib.txt +22 -0
- data/system/lib/dkim_key.rb +9 -0
- data/system/lib/smtpd_key.rb +39 -0
- data/system/lib/ssl.rb +23 -0
- data/system/recipes/01_prepare_server.rb +84 -0
- data/system/recipes/02_setup_database.rb +65 -0
- data/system/recipes/03_setup_postfix.rb +124 -0
- data/system/recipes/04_setup_dovecot.rb +78 -0
- data/system/recipes/05_setup_nginx.rb +29 -0
- data/system/recipes/06_setup_dspam.rb +24 -0
- data/system/recipes/07_setup_amavis.rb +16 -0
- data/system/recipes/08_setup_spamassassin.rb +22 -0
- data/system/recipes/09_setup_awstats.rb +49 -0
- data/system/recipes/XX_start_services.rb +5 -0
- data/test/fixtures/.gitkeep +0 -0
- data/test/functional/.gitkeep +0 -0
- data/test/functional/aliases_controller_test.rb +7 -0
- data/test/functional/domains_controller_test.rb +7 -0
- data/test/functional/users_controller_test.rb +7 -0
- data/test/integration/.gitkeep +0 -0
- data/test/performance/browsing_test.rb +12 -0
- data/test/test_helper.rb +13 -0
- data/test/unit/.gitkeep +0 -0
- data/test/unit/helpers/aliases_helper_test.rb +4 -0
- data/test/unit/helpers/domains_helper_test.rb +4 -0
- data/test/unit/helpers/users_helper_test.rb +4 -0
- data/vendor/assets/javascripts/.gitkeep +0 -0
- data/vendor/assets/javascripts/canjs/can.construct.proxy.js +60 -0
- data/vendor/assets/javascripts/canjs/can.construct.super.js +44 -0
- data/vendor/assets/javascripts/canjs/can.control.plugin.js +245 -0
- data/vendor/assets/javascripts/canjs/can.control.view.js +88 -0
- data/vendor/assets/javascripts/canjs/can.dojo.js +3669 -0
- data/vendor/assets/javascripts/canjs/can.dojo.min.js +66 -0
- data/vendor/assets/javascripts/canjs/can.fixture.js +1020 -0
- data/vendor/assets/javascripts/canjs/can.jquery.js +2995 -0
- data/vendor/assets/javascripts/canjs/can.jquery.min.js +52 -0
- data/vendor/assets/javascripts/canjs/can.mootools.js +3462 -0
- data/vendor/assets/javascripts/canjs/can.mootools.min.js +63 -0
- data/vendor/assets/javascripts/canjs/can.observe.attributes.js +293 -0
- data/vendor/assets/javascripts/canjs/can.observe.backup.js +368 -0
- data/vendor/assets/javascripts/canjs/can.observe.delegate.js +359 -0
- data/vendor/assets/javascripts/canjs/can.observe.setter.js +58 -0
- data/vendor/assets/javascripts/canjs/can.observe.validations.js +374 -0
- data/vendor/assets/javascripts/canjs/can.view.modifiers.js +292 -0
- data/vendor/assets/javascripts/canjs/can.yui.js +3530 -0
- data/vendor/assets/javascripts/canjs/can.yui.min.js +65 -0
- data/vendor/assets/javascripts/canjs/can.zepto.js +3426 -0
- data/vendor/assets/javascripts/canjs/can.zepto.min.js +62 -0
- data/vendor/assets/javascripts/twitter/bootstrap-affix.js +104 -0
- data/vendor/assets/javascripts/twitter/bootstrap-alert.js +90 -0
- data/vendor/assets/javascripts/twitter/bootstrap-button.js +96 -0
- data/vendor/assets/javascripts/twitter/bootstrap-carousel.js +176 -0
- data/vendor/assets/javascripts/twitter/bootstrap-collapse.js +158 -0
- data/vendor/assets/javascripts/twitter/bootstrap-dropdown.js +150 -0
- data/vendor/assets/javascripts/twitter/bootstrap-modal.js +239 -0
- data/vendor/assets/javascripts/twitter/bootstrap-popover.js +103 -0
- data/vendor/assets/javascripts/twitter/bootstrap-scrollspy.js +151 -0
- data/vendor/assets/javascripts/twitter/bootstrap-tab.js +135 -0
- data/vendor/assets/javascripts/twitter/bootstrap-tooltip.js +275 -0
- data/vendor/assets/javascripts/twitter/bootstrap-transition.js +60 -0
- data/vendor/assets/javascripts/twitter/bootstrap-typeahead.js +300 -0
- data/vendor/assets/javascripts/twitter/my/bootstrap-typeahead.js +311 -0
- data/vendor/assets/stylesheets/.gitkeep +0 -0
- metadata +470 -0
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Pagination (multiple pages)
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
// Space out pagination from surrounding content
|
|
6
|
+
.pagination {
|
|
7
|
+
margin: $baseLineHeight 0;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.pagination ul {
|
|
11
|
+
// Allow for text-based alignment
|
|
12
|
+
display: inline-block;
|
|
13
|
+
@include ie7-inline-block();
|
|
14
|
+
// Reset default ul styles
|
|
15
|
+
margin-left: 0;
|
|
16
|
+
margin-bottom: 0;
|
|
17
|
+
// Visuals
|
|
18
|
+
@include border-radius($baseBorderRadius);
|
|
19
|
+
@include box-shadow(0 1px 2px rgba(0,0,0,.05));
|
|
20
|
+
}
|
|
21
|
+
.pagination ul > li {
|
|
22
|
+
display: inline; // Remove list-style and block-level defaults
|
|
23
|
+
}
|
|
24
|
+
.pagination ul > li > a,
|
|
25
|
+
.pagination ul > li > span {
|
|
26
|
+
float: left; // Collapse white-space
|
|
27
|
+
padding: 4px 12px;
|
|
28
|
+
line-height: $baseLineHeight;
|
|
29
|
+
text-decoration: none;
|
|
30
|
+
background-color: $paginationBackground;
|
|
31
|
+
border: 1px solid $paginationBorder;
|
|
32
|
+
border-left-width: 0;
|
|
33
|
+
}
|
|
34
|
+
.pagination ul > li > a:hover,
|
|
35
|
+
.pagination ul > li > a:focus,
|
|
36
|
+
.pagination ul > .active > a,
|
|
37
|
+
.pagination ul > .active > span {
|
|
38
|
+
background-color: $paginationActiveBackground;
|
|
39
|
+
}
|
|
40
|
+
.pagination ul > .active > a,
|
|
41
|
+
.pagination ul > .active > span {
|
|
42
|
+
color: $grayLight;
|
|
43
|
+
cursor: default;
|
|
44
|
+
}
|
|
45
|
+
.pagination ul > .disabled > span,
|
|
46
|
+
.pagination ul > .disabled > a,
|
|
47
|
+
.pagination ul > .disabled > a:hover,
|
|
48
|
+
.pagination ul > .disabled > a:focus {
|
|
49
|
+
color: $grayLight;
|
|
50
|
+
background-color: transparent;
|
|
51
|
+
cursor: default;
|
|
52
|
+
}
|
|
53
|
+
.pagination ul > li:first-child > a,
|
|
54
|
+
.pagination ul > li:first-child > span {
|
|
55
|
+
border-left-width: 1px;
|
|
56
|
+
@include border-left-radius($baseBorderRadius);
|
|
57
|
+
}
|
|
58
|
+
.pagination ul > li:last-child > a,
|
|
59
|
+
.pagination ul > li:last-child > span {
|
|
60
|
+
@include border-right-radius($baseBorderRadius);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
// Alignment
|
|
65
|
+
// --------------------------------------------------
|
|
66
|
+
|
|
67
|
+
.pagination-centered {
|
|
68
|
+
text-align: center;
|
|
69
|
+
}
|
|
70
|
+
.pagination-right {
|
|
71
|
+
text-align: right;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
// Sizing
|
|
76
|
+
// --------------------------------------------------
|
|
77
|
+
|
|
78
|
+
// Large
|
|
79
|
+
.pagination-large {
|
|
80
|
+
ul > li > a,
|
|
81
|
+
ul > li > span {
|
|
82
|
+
padding: $paddingLarge;
|
|
83
|
+
font-size: $fontSizeLarge;
|
|
84
|
+
}
|
|
85
|
+
ul > li:first-child > a,
|
|
86
|
+
ul > li:first-child > span {
|
|
87
|
+
@include border-left-radius($borderRadiusLarge);
|
|
88
|
+
}
|
|
89
|
+
ul > li:last-child > a,
|
|
90
|
+
ul > li:last-child > span {
|
|
91
|
+
@include border-right-radius($borderRadiusLarge);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// Small and mini
|
|
96
|
+
.pagination-mini,
|
|
97
|
+
.pagination-small {
|
|
98
|
+
ul > li:first-child > a,
|
|
99
|
+
ul > li:first-child > span {
|
|
100
|
+
@include border-left-radius($borderRadiusSmall);
|
|
101
|
+
}
|
|
102
|
+
ul > li:last-child > a,
|
|
103
|
+
ul > li:last-child > span {
|
|
104
|
+
@include border-right-radius($borderRadiusSmall);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// Small
|
|
109
|
+
.pagination-small {
|
|
110
|
+
ul > li > a,
|
|
111
|
+
ul > li > span {
|
|
112
|
+
padding: $paddingSmall;
|
|
113
|
+
font-size: $fontSizeSmall;
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
// Mini
|
|
117
|
+
.pagination-mini {
|
|
118
|
+
ul > li > a,
|
|
119
|
+
ul > li > span {
|
|
120
|
+
padding: $paddingMini;
|
|
121
|
+
font-size: $fontSizeMini;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Popovers
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
.popover {
|
|
7
|
+
position: absolute;
|
|
8
|
+
top: 0;
|
|
9
|
+
left: 0;
|
|
10
|
+
z-index: $zindexPopover;
|
|
11
|
+
display: none;
|
|
12
|
+
max-width: 276px;
|
|
13
|
+
padding: 1px;
|
|
14
|
+
text-align: left; // Reset given new insertion method
|
|
15
|
+
background-color: $popoverBackground;
|
|
16
|
+
-webkit-background-clip: padding-box;
|
|
17
|
+
-moz-background-clip: padding;
|
|
18
|
+
background-clip: padding-box;
|
|
19
|
+
border: 1px solid #ccc;
|
|
20
|
+
border: 1px solid rgba(0,0,0,.2);
|
|
21
|
+
@include border-radius(6px);
|
|
22
|
+
@include box-shadow(0 5px 10px rgba(0,0,0,.2));
|
|
23
|
+
|
|
24
|
+
// Overrides for proper insertion
|
|
25
|
+
white-space: normal;
|
|
26
|
+
|
|
27
|
+
// Offset the popover to account for the popover arrow
|
|
28
|
+
&.top { margin-top: -10px; }
|
|
29
|
+
&.right { margin-left: 10px; }
|
|
30
|
+
&.bottom { margin-top: 10px; }
|
|
31
|
+
&.left { margin-left: -10px; }
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.popover-title {
|
|
35
|
+
margin: 0; // reset heading margin
|
|
36
|
+
padding: 8px 14px;
|
|
37
|
+
font-size: 14px;
|
|
38
|
+
font-weight: normal;
|
|
39
|
+
line-height: 18px;
|
|
40
|
+
background-color: $popoverTitleBackground;
|
|
41
|
+
border-bottom: 1px solid darken($popoverTitleBackground, 5%);
|
|
42
|
+
@include border-radius(5px 5px 0 0);
|
|
43
|
+
|
|
44
|
+
&:empty {
|
|
45
|
+
display: none;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.popover-content {
|
|
50
|
+
padding: 9px 14px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// Arrows
|
|
54
|
+
//
|
|
55
|
+
// .arrow is outer, .arrow:after is inner
|
|
56
|
+
|
|
57
|
+
.popover .arrow,
|
|
58
|
+
.popover .arrow:after {
|
|
59
|
+
position: absolute;
|
|
60
|
+
display: block;
|
|
61
|
+
width: 0;
|
|
62
|
+
height: 0;
|
|
63
|
+
border-color: transparent;
|
|
64
|
+
border-style: solid;
|
|
65
|
+
}
|
|
66
|
+
.popover .arrow {
|
|
67
|
+
border-width: $popoverArrowOuterWidth;
|
|
68
|
+
}
|
|
69
|
+
.popover .arrow:after {
|
|
70
|
+
border-width: $popoverArrowWidth;
|
|
71
|
+
content: "";
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.popover {
|
|
75
|
+
&.top .arrow {
|
|
76
|
+
left: 50%;
|
|
77
|
+
margin-left: -$popoverArrowOuterWidth;
|
|
78
|
+
border-bottom-width: 0;
|
|
79
|
+
border-top-color: #999; // IE8 fallback
|
|
80
|
+
border-top-color: $popoverArrowOuterColor;
|
|
81
|
+
bottom: -$popoverArrowOuterWidth;
|
|
82
|
+
&:after {
|
|
83
|
+
bottom: 1px;
|
|
84
|
+
margin-left: -$popoverArrowWidth;
|
|
85
|
+
border-bottom-width: 0;
|
|
86
|
+
border-top-color: $popoverArrowColor;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
&.right .arrow {
|
|
90
|
+
top: 50%;
|
|
91
|
+
left: -$popoverArrowOuterWidth;
|
|
92
|
+
margin-top: -$popoverArrowOuterWidth;
|
|
93
|
+
border-left-width: 0;
|
|
94
|
+
border-right-color: #999; // IE8 fallback
|
|
95
|
+
border-right-color: $popoverArrowOuterColor;
|
|
96
|
+
&:after {
|
|
97
|
+
left: 1px;
|
|
98
|
+
bottom: -$popoverArrowWidth;
|
|
99
|
+
border-left-width: 0;
|
|
100
|
+
border-right-color: $popoverArrowColor;
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
&.bottom .arrow {
|
|
104
|
+
left: 50%;
|
|
105
|
+
margin-left: -$popoverArrowOuterWidth;
|
|
106
|
+
border-top-width: 0;
|
|
107
|
+
border-bottom-color: #999; // IE8 fallback
|
|
108
|
+
border-bottom-color: $popoverArrowOuterColor;
|
|
109
|
+
top: -$popoverArrowOuterWidth;
|
|
110
|
+
&:after {
|
|
111
|
+
top: 1px;
|
|
112
|
+
margin-left: -$popoverArrowWidth;
|
|
113
|
+
border-top-width: 0;
|
|
114
|
+
border-bottom-color: $popoverArrowColor;
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
&.left .arrow {
|
|
119
|
+
top: 50%;
|
|
120
|
+
right: -$popoverArrowOuterWidth;
|
|
121
|
+
margin-top: -$popoverArrowOuterWidth;
|
|
122
|
+
border-right-width: 0;
|
|
123
|
+
border-left-color: #999; // IE8 fallback
|
|
124
|
+
border-left-color: $popoverArrowOuterColor;
|
|
125
|
+
&:after {
|
|
126
|
+
right: 1px;
|
|
127
|
+
border-right-width: 0;
|
|
128
|
+
border-left-color: $popoverArrowColor;
|
|
129
|
+
bottom: -$popoverArrowWidth;
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Progress bars
|
|
3
|
+
// --------------------------------------------------
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
// ANIMATIONS
|
|
7
|
+
// ----------
|
|
8
|
+
|
|
9
|
+
// Webkit
|
|
10
|
+
@-webkit-keyframes progress-bar-stripes {
|
|
11
|
+
from { background-position: 40px 0; }
|
|
12
|
+
to { background-position: 0 0; }
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
// Firefox
|
|
16
|
+
@-moz-keyframes progress-bar-stripes {
|
|
17
|
+
from { background-position: 40px 0; }
|
|
18
|
+
to { background-position: 0 0; }
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
// IE9
|
|
22
|
+
@-ms-keyframes progress-bar-stripes {
|
|
23
|
+
from { background-position: 40px 0; }
|
|
24
|
+
to { background-position: 0 0; }
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
// Opera
|
|
28
|
+
@-o-keyframes progress-bar-stripes {
|
|
29
|
+
from { background-position: 0 0; }
|
|
30
|
+
to { background-position: 40px 0; }
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
// Spec
|
|
34
|
+
@keyframes progress-bar-stripes {
|
|
35
|
+
from { background-position: 40px 0; }
|
|
36
|
+
to { background-position: 0 0; }
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
// THE BARS
|
|
42
|
+
// --------
|
|
43
|
+
|
|
44
|
+
// Outer container
|
|
45
|
+
.progress {
|
|
46
|
+
overflow: hidden;
|
|
47
|
+
height: $baseLineHeight;
|
|
48
|
+
margin-bottom: $baseLineHeight;
|
|
49
|
+
@include gradient-vertical(#f5f5f5, #f9f9f9);
|
|
50
|
+
@include box-shadow(inset 0 1px 2px rgba(0,0,0,.1));
|
|
51
|
+
@include border-radius($baseBorderRadius);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
// Bar of progress
|
|
55
|
+
.progress .bar {
|
|
56
|
+
width: 0%;
|
|
57
|
+
height: 100%;
|
|
58
|
+
color: $white;
|
|
59
|
+
float: left;
|
|
60
|
+
font-size: 12px;
|
|
61
|
+
text-align: center;
|
|
62
|
+
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
|
|
63
|
+
@include gradient-vertical(#149bdf, #0480be);
|
|
64
|
+
@include box-shadow(inset 0 -1px 0 rgba(0,0,0,.15));
|
|
65
|
+
@include box-sizing(border-box);
|
|
66
|
+
@include transition(width .6s ease);
|
|
67
|
+
}
|
|
68
|
+
.progress .bar + .bar {
|
|
69
|
+
@include box-shadow(inset 1px 0 0 rgba(0,0,0,.15), inset 0 -1px 0 rgba(0,0,0,.15));
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// Striped bars
|
|
73
|
+
.progress-striped .bar {
|
|
74
|
+
@include gradient-striped(#149bdf);
|
|
75
|
+
@include background-size(40px 40px);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
// Call animation for the active one
|
|
79
|
+
.progress.active .bar {
|
|
80
|
+
-webkit-animation: progress-bar-stripes 2s linear infinite;
|
|
81
|
+
-moz-animation: progress-bar-stripes 2s linear infinite;
|
|
82
|
+
-ms-animation: progress-bar-stripes 2s linear infinite;
|
|
83
|
+
-o-animation: progress-bar-stripes 2s linear infinite;
|
|
84
|
+
animation: progress-bar-stripes 2s linear infinite;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
// COLORS
|
|
90
|
+
// ------
|
|
91
|
+
|
|
92
|
+
// Danger (red)
|
|
93
|
+
.progress-danger .bar, .progress .bar-danger {
|
|
94
|
+
@include gradient-vertical(#ee5f5b, #c43c35);
|
|
95
|
+
}
|
|
96
|
+
.progress-danger.progress-striped .bar, .progress-striped .bar-danger {
|
|
97
|
+
@include gradient-striped(#ee5f5b);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
// Success (green)
|
|
101
|
+
.progress-success .bar, .progress .bar-success {
|
|
102
|
+
@include gradient-vertical(#62c462, #57a957);
|
|
103
|
+
}
|
|
104
|
+
.progress-success.progress-striped .bar, .progress-striped .bar-success {
|
|
105
|
+
@include gradient-striped(#62c462);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// Info (teal)
|
|
109
|
+
.progress-info .bar, .progress .bar-info {
|
|
110
|
+
@include gradient-vertical(#5bc0de, #339bb9);
|
|
111
|
+
}
|
|
112
|
+
.progress-info.progress-striped .bar, .progress-striped .bar-info {
|
|
113
|
+
@include gradient-striped(#5bc0de);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Warning (orange)
|
|
117
|
+
.progress-warning .bar, .progress .bar-warning {
|
|
118
|
+
@include gradient-vertical(lighten($orange, 15%), $orange);
|
|
119
|
+
}
|
|
120
|
+
.progress-warning.progress-striped .bar, .progress-striped .bar-warning {
|
|
121
|
+
@include gradient-striped(lighten($orange, 15%));
|
|
122
|
+
}
|
|
@@ -0,0 +1,216 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Reset CSS
|
|
3
|
+
// Adapted from http://github.com/necolas/normalize.css
|
|
4
|
+
// --------------------------------------------------
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
// Display in IE6-9 and FF3
|
|
8
|
+
// -------------------------
|
|
9
|
+
|
|
10
|
+
article,
|
|
11
|
+
aside,
|
|
12
|
+
details,
|
|
13
|
+
figcaption,
|
|
14
|
+
figure,
|
|
15
|
+
footer,
|
|
16
|
+
header,
|
|
17
|
+
hgroup,
|
|
18
|
+
nav,
|
|
19
|
+
section {
|
|
20
|
+
display: block;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
// Display block in IE6-9 and FF3
|
|
24
|
+
// -------------------------
|
|
25
|
+
|
|
26
|
+
audio,
|
|
27
|
+
canvas,
|
|
28
|
+
video {
|
|
29
|
+
display: inline-block;
|
|
30
|
+
*display: inline;
|
|
31
|
+
*zoom: 1;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// Prevents modern browsers from displaying 'audio' without controls
|
|
35
|
+
// -------------------------
|
|
36
|
+
|
|
37
|
+
audio:not([controls]) {
|
|
38
|
+
display: none;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// Base settings
|
|
42
|
+
// -------------------------
|
|
43
|
+
|
|
44
|
+
html {
|
|
45
|
+
font-size: 100%;
|
|
46
|
+
-webkit-text-size-adjust: 100%;
|
|
47
|
+
-ms-text-size-adjust: 100%;
|
|
48
|
+
}
|
|
49
|
+
// Focus states
|
|
50
|
+
a:focus {
|
|
51
|
+
@include tab-focus();
|
|
52
|
+
}
|
|
53
|
+
// Hover & Active
|
|
54
|
+
a:hover,
|
|
55
|
+
a:active {
|
|
56
|
+
outline: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// Prevents sub and sup affecting line-height in all browsers
|
|
60
|
+
// -------------------------
|
|
61
|
+
|
|
62
|
+
sub,
|
|
63
|
+
sup {
|
|
64
|
+
position: relative;
|
|
65
|
+
font-size: 75%;
|
|
66
|
+
line-height: 0;
|
|
67
|
+
vertical-align: baseline;
|
|
68
|
+
}
|
|
69
|
+
sup {
|
|
70
|
+
top: -0.5em;
|
|
71
|
+
}
|
|
72
|
+
sub {
|
|
73
|
+
bottom: -0.25em;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
// Img border in a's and image quality
|
|
77
|
+
// -------------------------
|
|
78
|
+
|
|
79
|
+
img {
|
|
80
|
+
/* Responsive images (ensure images don't scale beyond their parents) */
|
|
81
|
+
max-width: 100%; /* Part 1: Set a maxium relative to the parent */
|
|
82
|
+
width: auto\9; /* IE7-8 need help adjusting responsive images */
|
|
83
|
+
height: auto; /* Part 2: Scale the height according to the width, otherwise you get stretching */
|
|
84
|
+
|
|
85
|
+
vertical-align: middle;
|
|
86
|
+
border: 0;
|
|
87
|
+
-ms-interpolation-mode: bicubic;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// Prevent max-width from affecting Google Maps
|
|
91
|
+
#map_canvas img,
|
|
92
|
+
.google-maps img {
|
|
93
|
+
max-width: none;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// Forms
|
|
97
|
+
// -------------------------
|
|
98
|
+
|
|
99
|
+
// Font size in all browsers, margin changes, misc consistency
|
|
100
|
+
button,
|
|
101
|
+
input,
|
|
102
|
+
select,
|
|
103
|
+
textarea {
|
|
104
|
+
margin: 0;
|
|
105
|
+
font-size: 100%;
|
|
106
|
+
vertical-align: middle;
|
|
107
|
+
}
|
|
108
|
+
button,
|
|
109
|
+
input {
|
|
110
|
+
*overflow: visible; // Inner spacing ie IE6/7
|
|
111
|
+
line-height: normal; // FF3/4 have !important on line-height in UA stylesheet
|
|
112
|
+
}
|
|
113
|
+
button::-moz-focus-inner,
|
|
114
|
+
input::-moz-focus-inner { // Inner padding and border oddities in FF3/4
|
|
115
|
+
padding: 0;
|
|
116
|
+
border: 0;
|
|
117
|
+
}
|
|
118
|
+
button,
|
|
119
|
+
html input[type="button"], // Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.
|
|
120
|
+
input[type="reset"],
|
|
121
|
+
input[type="submit"] {
|
|
122
|
+
-webkit-appearance: button; // Corrects inability to style clickable `input` types in iOS.
|
|
123
|
+
cursor: pointer; // Improves usability and consistency of cursor style between image-type `input` and others.
|
|
124
|
+
}
|
|
125
|
+
label,
|
|
126
|
+
select,
|
|
127
|
+
button,
|
|
128
|
+
input[type="button"],
|
|
129
|
+
input[type="reset"],
|
|
130
|
+
input[type="submit"],
|
|
131
|
+
input[type="radio"],
|
|
132
|
+
input[type="checkbox"] {
|
|
133
|
+
cursor: pointer; // Improves usability and consistency of cursor style between image-type `input` and others.
|
|
134
|
+
}
|
|
135
|
+
input[type="search"] { // Appearance in Safari/Chrome
|
|
136
|
+
@include box-sizing(content-box);
|
|
137
|
+
-webkit-appearance: textfield;
|
|
138
|
+
}
|
|
139
|
+
input[type="search"]::-webkit-search-decoration,
|
|
140
|
+
input[type="search"]::-webkit-search-cancel-button {
|
|
141
|
+
-webkit-appearance: none; // Inner-padding issues in Chrome OSX, Safari 5
|
|
142
|
+
}
|
|
143
|
+
textarea {
|
|
144
|
+
overflow: auto; // Remove vertical scrollbar in IE6-9
|
|
145
|
+
vertical-align: top; // Readability and alignment cross-browser
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
// Printing
|
|
150
|
+
// -------------------------
|
|
151
|
+
// Source: https://github.com/h5bp/html5-boilerplate/blob/master/css/main.css
|
|
152
|
+
|
|
153
|
+
@media print {
|
|
154
|
+
|
|
155
|
+
* {
|
|
156
|
+
text-shadow: none !important;
|
|
157
|
+
color: #000 !important; // Black prints faster: h5bp.com/s
|
|
158
|
+
background: transparent !important;
|
|
159
|
+
box-shadow: none !important;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
a,
|
|
163
|
+
a:visited {
|
|
164
|
+
text-decoration: underline;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
a[href]:after {
|
|
168
|
+
content: " (" attr(href) ")";
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
abbr[title]:after {
|
|
172
|
+
content: " (" attr(title) ")";
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
// Don't show links for images, or javascript/internal links
|
|
176
|
+
.ir a:after,
|
|
177
|
+
a[href^="javascript:"]:after,
|
|
178
|
+
a[href^="#"]:after {
|
|
179
|
+
content: "";
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
pre,
|
|
183
|
+
blockquote {
|
|
184
|
+
border: 1px solid #999;
|
|
185
|
+
page-break-inside: avoid;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
thead {
|
|
189
|
+
display: table-header-group; // h5bp.com/t
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
tr,
|
|
193
|
+
img {
|
|
194
|
+
page-break-inside: avoid;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
img {
|
|
198
|
+
max-width: 100% !important;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
@page {
|
|
202
|
+
margin: 0.5cm;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
p,
|
|
206
|
+
h2,
|
|
207
|
+
h3 {
|
|
208
|
+
orphans: 3;
|
|
209
|
+
widows: 3;
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
h2,
|
|
213
|
+
h3 {
|
|
214
|
+
page-break-after: avoid;
|
|
215
|
+
}
|
|
216
|
+
}
|