virgo 0.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/MIT-LICENSE +20 -0
- data/Rakefile +37 -0
- data/app/assets/javascripts/tinymce/manifest.coffee +1 -0
- data/app/assets/javascripts/tinymce/plugins/image_manager/plugin.coffee +234 -0
- data/app/assets/javascripts/virgo/admin/page_modules/edit_form.coffee +4 -0
- data/app/assets/javascripts/virgo/admin/page_modules/edit_subject_form.coffee +29 -0
- data/app/assets/javascripts/virgo/admin/posts/edit_locking.coffee +35 -0
- data/app/assets/javascripts/virgo/admin/posts/form.coffee +183 -0
- data/app/assets/javascripts/virgo/admin/slides/form.coffee +27 -0
- data/app/assets/javascripts/virgo/admin/slideshows/form.coffee +26 -0
- data/app/assets/javascripts/virgo/admin_only.coffee +1 -0
- data/app/assets/javascripts/virgo/application.coffee +51 -0
- data/app/assets/javascripts/virgo/common.coffee +83 -0
- data/app/assets/javascripts/virgo/common/character_counter.coffee +27 -0
- data/app/assets/javascripts/virgo/components/header.coffee +47 -0
- data/app/assets/javascripts/virgo/components/media_modal.coffee +151 -0
- data/app/assets/javascripts/virgo/components/share_bar.coffee +53 -0
- data/app/assets/javascripts/virgo/components/slideshow.coffee +35 -0
- data/app/assets/javascripts/virgo/lib/jquery-ui-multiselect.js +342 -0
- data/app/assets/javascripts/virgo/lib/jquery.browser.js +184 -0
- data/app/assets/javascripts/virgo/lib/jquery.cookie.js +114 -0
- data/app/assets/javascripts/virgo/lib/jquery.pjax.js +932 -0
- data/app/assets/javascripts/virgo/lib/jquery_ext.coffee +0 -0
- data/app/assets/javascripts/virgo/lib/manifest.coffee +5 -0
- data/app/assets/javascripts/virgo/lib/ouibounce.js +194 -0
- data/app/assets/javascripts/virgo/page_modules.coffee +175 -0
- data/app/assets/javascripts/virgo/posts/show.coffee +32 -0
- data/app/assets/stylesheets/tinymce/skin.sass +2 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/content.min.sass +82 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/fonts/tinymce-small.eot +0 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/fonts/tinymce-small.svg +62 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/fonts/tinymce-small.ttf +0 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/fonts/tinymce-small.woff +0 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/fonts/tinymce.eot +0 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/fonts/tinymce.svg +63 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/fonts/tinymce.ttf +0 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/fonts/tinymce.woff +0 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/img/anchor.gif +0 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/img/loader.gif +0 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/img/object.gif +0 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/img/trans.gif +0 -0
- data/app/assets/stylesheets/tinymce/skins/railspress/skin.min.sass +1703 -0
- data/app/assets/stylesheets/virgo/_common.sass +65 -0
- data/app/assets/stylesheets/virgo/admin.sass +301 -0
- data/app/assets/stylesheets/virgo/admin/columns.sass +3 -0
- data/app/assets/stylesheets/virgo/admin/images.sass +14 -0
- data/app/assets/stylesheets/virgo/admin/media_modal.sass +72 -0
- data/app/assets/stylesheets/virgo/admin/post.sass +102 -0
- data/app/assets/stylesheets/virgo/admin/slideshow.sass +35 -0
- data/app/assets/stylesheets/virgo/admin/users.sass +2 -0
- data/app/assets/stylesheets/virgo/admin_only.sass +1 -0
- data/app/assets/stylesheets/virgo/application.sass +605 -0
- data/app/assets/stylesheets/virgo/columns.sass +51 -0
- data/app/assets/stylesheets/virgo/install.sass +15 -0
- data/app/assets/stylesheets/virgo/lib/bootstrap/bootstrap-imports.sass +9 -0
- data/app/assets/stylesheets/virgo/lib/bootstrap/bootstrap-overrides.sass +51 -0
- data/app/assets/stylesheets/virgo/lib/bootstrap/bootstrap-variables.sass +27 -0
- data/app/assets/stylesheets/virgo/lib/jquery-ui-multiselect.css +30 -0
- data/app/assets/stylesheets/virgo/lib/manifest.sass +3 -0
- data/app/assets/stylesheets/virgo/lib/ouibounce.css +222 -0
- data/app/assets/stylesheets/virgo/lib/select2-imports.sass +8 -0
- data/app/assets/stylesheets/virgo/page_modules.sass +54 -0
- data/app/assets/stylesheets/virgo/pages/authors.sass +30 -0
- data/app/assets/stylesheets/virgo/posts.sass +782 -0
- data/app/assets/stylesheets/virgo/search.sass +36 -0
- data/app/assets/stylesheets/virgo/ui.sass +434 -0
- data/app/assets/stylesheets/virgo/users.sass +9 -0
- data/app/controllers/virgo/admin/base_controller.rb +22 -0
- data/app/controllers/virgo/admin/categories_controller.rb +90 -0
- data/app/controllers/virgo/admin/columns_controller.rb +65 -0
- data/app/controllers/virgo/admin/images_controller.rb +89 -0
- data/app/controllers/virgo/admin/media_modal_controller.rb +101 -0
- data/app/controllers/virgo/admin/newsletters_controller.rb +37 -0
- data/app/controllers/virgo/admin/page_modules_controller.rb +62 -0
- data/app/controllers/virgo/admin/pages_controller.rb +6 -0
- data/app/controllers/virgo/admin/posts_controller.rb +173 -0
- data/app/controllers/virgo/admin/sites_controller.rb +31 -0
- data/app/controllers/virgo/admin/slides_controller.rb +71 -0
- data/app/controllers/virgo/admin/slideshows_controller.rb +66 -0
- data/app/controllers/virgo/admin/tags_controller.rb +98 -0
- data/app/controllers/virgo/admin/users/sessions_controller.rb +21 -0
- data/app/controllers/virgo/admin/users_controller.rb +84 -0
- data/app/controllers/virgo/application_controller.rb +151 -0
- data/app/controllers/virgo/categories_controller.rb +20 -0
- data/app/controllers/virgo/columns_controller.rb +24 -0
- data/app/controllers/virgo/images_controller.rb +9 -0
- data/app/controllers/virgo/install_controller.rb +46 -0
- data/app/controllers/virgo/page_modules_controller.rb +23 -0
- data/app/controllers/virgo/pages_controller.rb +29 -0
- data/app/controllers/virgo/posts_controller.rb +101 -0
- data/app/controllers/virgo/search_controller.rb +35 -0
- data/app/controllers/virgo/subscribers_controller.rb +54 -0
- data/app/controllers/virgo/tags_controller.rb +15 -0
- data/app/controllers/virgo/users/confirmations_controller.rb +18 -0
- data/app/controllers/virgo/users/passwords_controller.rb +31 -0
- data/app/controllers/virgo/users/registrations_controller.rb +41 -0
- data/app/controllers/virgo/users/sessions_controller.rb +32 -0
- data/app/controllers/virgo/users_controller.rb +15 -0
- data/app/helpers/virgo/admin/post_helper.rb +54 -0
- data/app/helpers/virgo/admin_helper.rb +15 -0
- data/app/helpers/virgo/application_helper.rb +124 -0
- data/app/helpers/virgo/hooks_helper.rb +30 -0
- data/app/helpers/virgo/page_modules_helper.rb +4 -0
- data/app/helpers/virgo/post_helper.rb +159 -0
- data/app/helpers/virgo/render_helper.rb +33 -0
- data/app/helpers/virgo/search_helper.rb +49 -0
- data/app/helpers/virgo/shortcode_helper.rb +7 -0
- data/app/helpers/virgo/text_helper.rb +12 -0
- data/app/helpers/virgo/video_helper.rb +34 -0
- data/app/models/concerns/virgo/common/slug_history.rb +36 -0
- data/app/models/concerns/virgo/common/uuid.rb +22 -0
- data/app/models/concerns/virgo/post/recommendations.rb +15 -0
- data/app/models/concerns/virgo/post/search.rb +100 -0
- data/app/models/concerns/virgo/user/search.rb +39 -0
- data/app/models/virgo/ability.rb +59 -0
- data/app/models/virgo/category.rb +44 -0
- data/app/models/virgo/column.rb +25 -0
- data/app/models/virgo/form_model.rb +19 -0
- data/app/models/virgo/image.rb +63 -0
- data/app/models/virgo/page_module.rb +42 -0
- data/app/models/virgo/page_module_post.rb +8 -0
- data/app/models/virgo/post.rb +391 -0
- data/app/models/virgo/post_category.rb +8 -0
- data/app/models/virgo/post_search.rb +7 -0
- data/app/models/virgo/post_tag.rb +10 -0
- data/app/models/virgo/site.rb +36 -0
- data/app/models/virgo/slide.rb +23 -0
- data/app/models/virgo/slideshow.rb +37 -0
- data/app/models/virgo/slug_history.rb +5 -0
- data/app/models/virgo/subscriber.rb +5 -0
- data/app/models/virgo/tag.rb +34 -0
- data/app/models/virgo/user.rb +145 -0
- data/app/uploaders/virgo/application_uploader.rb +11 -0
- data/app/uploaders/virgo/avatar_uploader.rb +21 -0
- data/app/uploaders/virgo/featured_image_uploader.rb +28 -0
- data/app/uploaders/virgo/image_uploader.rb +40 -0
- data/app/uploaders/virgo/slide_uploader.rb +19 -0
- data/app/views/layouts/virgo/admin.haml +16 -0
- data/app/views/layouts/virgo/admin/site_settings.haml +14 -0
- data/app/views/layouts/virgo/application.haml +63 -0
- data/app/views/layouts/virgo/errors.haml +42 -0
- data/app/views/layouts/virgo/main.haml +5 -0
- data/app/views/layouts/virgo/posts.haml +10 -0
- data/app/views/virgo/admin/categories/_form.haml +19 -0
- data/app/views/virgo/admin/categories/edit.haml +7 -0
- data/app/views/virgo/admin/categories/index.haml +38 -0
- data/app/views/virgo/admin/categories/modal_form.haml +11 -0
- data/app/views/virgo/admin/categories/new.haml +7 -0
- data/app/views/virgo/admin/categories/success_modal.haml +14 -0
- data/app/views/virgo/admin/columns/_form.haml +30 -0
- data/app/views/virgo/admin/columns/edit.haml +1 -0
- data/app/views/virgo/admin/columns/index.haml +30 -0
- data/app/views/virgo/admin/columns/new.haml +1 -0
- data/app/views/virgo/admin/images/_form.haml +46 -0
- data/app/views/virgo/admin/images/edit.haml +1 -0
- data/app/views/virgo/admin/images/index.haml +32 -0
- data/app/views/virgo/admin/images/new.haml +1 -0
- data/app/views/virgo/admin/media_modal/_image_settings.haml +17 -0
- data/app/views/virgo/admin/media_modal/_library_panel.haml +26 -0
- data/app/views/virgo/admin/media_modal/_upload_panel.haml +21 -0
- data/app/views/virgo/admin/media_modal/_upload_success.haml +7 -0
- data/app/views/virgo/admin/media_modal/index.haml +19 -0
- data/app/views/virgo/admin/newsletters/changelog.haml +25 -0
- data/app/views/virgo/admin/newsletters/edit.haml +6 -0
- data/app/views/virgo/admin/page_modules/edit.haml +33 -0
- data/app/views/virgo/admin/page_modules/edit_subject.haml +43 -0
- data/app/views/virgo/admin/pages/help.haml +114 -0
- data/app/views/virgo/admin/posts/_author_dropdown.haml +1 -0
- data/app/views/virgo/admin/posts/_categories_form.haml +7 -0
- data/app/views/virgo/admin/posts/_category.haml +22 -0
- data/app/views/virgo/admin/posts/_form.haml +201 -0
- data/app/views/virgo/admin/posts/_revisions.haml +40 -0
- data/app/views/virgo/admin/posts/edit.haml +9 -0
- data/app/views/virgo/admin/posts/index.haml +59 -0
- data/app/views/virgo/admin/posts/new.haml +1 -0
- data/app/views/virgo/admin/posts/revision_detail.haml +28 -0
- data/app/views/virgo/admin/posts/revisions.haml +3 -0
- data/app/views/virgo/admin/sites/edit.haml +12 -0
- data/app/views/virgo/admin/slides/_form.haml +41 -0
- data/app/views/virgo/admin/slides/edit.haml +1 -0
- data/app/views/virgo/admin/slides/new.haml +1 -0
- data/app/views/virgo/admin/slideshows/_form.haml +49 -0
- data/app/views/virgo/admin/slideshows/edit.haml +1 -0
- data/app/views/virgo/admin/slideshows/index.haml +43 -0
- data/app/views/virgo/admin/slideshows/new.haml +1 -0
- data/app/views/virgo/admin/tags/_form.haml +16 -0
- data/app/views/virgo/admin/tags/edit.haml +7 -0
- data/app/views/virgo/admin/tags/index.haml +33 -0
- data/app/views/virgo/admin/tags/modal_form.haml +12 -0
- data/app/views/virgo/admin/tags/new.haml +7 -0
- data/app/views/virgo/admin/tags/success_modal.haml +14 -0
- data/app/views/virgo/admin/users/_form.haml +62 -0
- data/app/views/virgo/admin/users/edit.haml +1 -0
- data/app/views/virgo/admin/users/index.haml +34 -0
- data/app/views/virgo/admin/users/new.haml +1 -0
- data/app/views/virgo/application/sitemap.xml.builder +0 -0
- data/app/views/virgo/authors/_profile_long.haml +13 -0
- data/app/views/virgo/authors/_profile_short.haml +10 -0
- data/app/views/virgo/categories/show.haml +24 -0
- data/app/views/virgo/columns/index.haml +19 -0
- data/app/views/virgo/columns/show.haml +18 -0
- data/app/views/virgo/common/_admin_navbar.haml +100 -0
- data/app/views/virgo/common/_alerts.haml +40 -0
- data/app/views/virgo/common/_analytics.html.erb +1 -0
- data/app/views/virgo/common/_base_errors.haml +8 -0
- data/app/views/virgo/common/_category_heading.haml +26 -0
- data/app/views/virgo/common/_disqus.html.erb +24 -0
- data/app/views/virgo/common/_disqus_comment_count.html.erb +12 -0
- data/app/views/virgo/common/_fb_api.html.erb +30 -0
- data/app/views/virgo/common/_fonts.html.erb +1 -0
- data/app/views/virgo/common/_footer.haml +13 -0
- data/app/views/virgo/common/_footer_javascript.html.erb +0 -0
- data/app/views/virgo/common/_header_analytics.html.erb +9 -0
- data/app/views/virgo/common/_list_signup.haml +20 -0
- data/app/views/virgo/common/_ouibounce_modal.haml +26 -0
- data/app/views/virgo/common/_public_nav.haml +58 -0
- data/app/views/virgo/common/_search_form.haml +8 -0
- data/app/views/virgo/common/_share_bar.haml +45 -0
- data/app/views/virgo/common/_user_vars.haml +2 -0
- data/app/views/virgo/errors/404.haml +10 -0
- data/app/views/virgo/errors/500.haml +10 -0
- data/app/views/virgo/images/_shortcode.haml +4 -0
- data/app/views/virgo/install/index.haml +58 -0
- data/app/views/virgo/install/success.haml +12 -0
- data/app/views/virgo/page_modules/_latest_posts.haml +29 -0
- data/app/views/virgo/page_modules/_popular_posts.haml +51 -0
- data/app/views/virgo/pages/authors.haml +8 -0
- data/app/views/virgo/pages/home.haml +0 -0
- data/app/views/virgo/pages/show.haml +6 -0
- data/app/views/virgo/posts/_author_info.haml +16 -0
- data/app/views/virgo/posts/_post_full.haml +63 -0
- data/app/views/virgo/posts/_post_short.haml +30 -0
- data/app/views/virgo/posts/_post_thumb_box.haml +13 -0
- data/app/views/virgo/posts/_recommendations.haml +12 -0
- data/app/views/virgo/posts/_sidebar_thumb.haml +4 -0
- data/app/views/virgo/posts/index.haml +22 -0
- data/app/views/virgo/posts/latest.haml +16 -0
- data/app/views/virgo/posts/more.haml +10 -0
- data/app/views/virgo/posts/rss.xml.builder +17 -0
- data/app/views/virgo/posts/show.haml +17 -0
- data/app/views/virgo/search/_form.haml +5 -0
- data/app/views/virgo/search/_item.haml +22 -0
- data/app/views/virgo/search/index.haml +11 -0
- data/app/views/virgo/search/new.haml +4 -0
- data/app/views/virgo/shortcode_templates/blockquote.haml +9 -0
- data/app/views/virgo/shortcode_templates/h1.haml +1 -0
- data/app/views/virgo/shortcode_templates/h2.haml +1 -0
- data/app/views/virgo/shortcode_templates/h3.haml +1 -0
- data/app/views/virgo/shortcode_templates/h4.haml +1 -0
- data/app/views/virgo/shortcode_templates/image.haml +17 -0
- data/app/views/virgo/shortcode_templates/pullquote.haml +3 -0
- data/app/views/virgo/shortcode_templates/slideshow.haml +35 -0
- data/app/views/virgo/shortcode_templates/tweet.haml +3 -0
- data/app/views/virgo/shortcode_templates/video.haml +8 -0
- data/app/views/virgo/subscribers/_success_modal.haml +13 -0
- data/app/views/virgo/subscribers/modal.haml +15 -0
- data/app/views/virgo/tags/show.haml +16 -0
- data/app/views/virgo/users/confirmations/new.html.haml +10 -0
- data/app/views/virgo/users/devise_mailer/confirmation_instructions.html.erb +7 -0
- data/app/views/virgo/users/devise_mailer/reset_password_instructions.html.haml +6 -0
- data/app/views/virgo/users/devise_mailer/unlock_instructions.html.haml +5 -0
- data/app/views/virgo/users/passwords/edit.html.haml +14 -0
- data/app/views/virgo/users/passwords/new.html.haml +14 -0
- data/app/views/virgo/users/registrations/edit.html.haml +30 -0
- data/app/views/virgo/users/registrations/new.html.haml +13 -0
- data/app/views/virgo/users/sessions/new.html.haml +12 -0
- data/app/views/virgo/users/shared/_links.haml +26 -0
- data/app/views/virgo/users/show.haml +11 -0
- data/app/views/virgo/users/unlocks/new.html.haml +9 -0
- data/config/initializers/action_mailer.rb +7 -0
- data/config/initializers/active_record.rb +72 -0
- data/config/initializers/active_record_symbolize.rb +18 -0
- data/config/initializers/assets.rb +17 -0
- data/config/initializers/backtrace_silencers.rb +7 -0
- data/config/initializers/carrierwave.rb +36 -0
- data/config/initializers/cookies_serializer.rb +3 -0
- data/config/initializers/devise.rb +257 -0
- data/config/initializers/filter_parameter_logging.rb +4 -0
- data/config/initializers/hash.rb +5 -0
- data/config/initializers/inflections.rb +16 -0
- data/config/initializers/mime_types.rb +4 -0
- data/config/initializers/nil_class.rb +13 -0
- data/config/initializers/non_digest_assets.rb +3 -0
- data/config/initializers/paper_trail.rb +30 -0
- data/config/initializers/schema_plus.rb +5 -0
- data/config/initializers/session_store.rb +3 -0
- data/config/initializers/shortcode.rb +12 -0
- data/config/initializers/simple_form.rb +170 -0
- data/config/initializers/simple_form_bootstrap.rb +136 -0
- data/config/initializers/string.rb +5 -0
- data/config/initializers/time_formatting.rb +23 -0
- data/config/initializers/wrap_parameters.rb +14 -0
- data/config/locales/devise.en.yml +60 -0
- data/config/routes.rb +96 -0
- data/config/schedule.rb +3 -0
- data/db/migrate/20150729174510_create_virgo_schema.rb +225 -0
- data/lib/generators/virgo/install/install_generator.rb +16 -0
- data/lib/generators/virgo/views/views_generator.rb +22 -0
- data/lib/tasks/virgo_tasks.rake +7 -0
- data/lib/virgo.rb +4 -0
- data/lib/virgo/development_mail_interceptor.rb +6 -0
- data/lib/virgo/email_validator.rb +6 -0
- data/lib/virgo/engine.rb +73 -0
- data/lib/virgo/reduce_validator.rb +6 -0
- data/lib/virgo/upload_helpers.rb +89 -0
- data/lib/virgo/version.rb +3 -0
- data/lib/virgo/view_help.rb +3 -0
- metadata +1051 -0
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
=cs_font
|
|
2
|
+
font-family: 'Verlag A', 'Verlag B', sans-serif
|
|
3
|
+
|
|
4
|
+
=heavy_font
|
|
5
|
+
font-family: 'Open Sans', sans-serif
|
|
6
|
+
text-rendering: optimizeLegibility
|
|
7
|
+
-webkit-font-smoothing: antialiased
|
|
8
|
+
font-weight: 700
|
|
9
|
+
|
|
10
|
+
=extrabold_font
|
|
11
|
+
font-family: 'Open Sans', sans-serif
|
|
12
|
+
text-rendering: optimizeLegibility
|
|
13
|
+
-webkit-font-smoothing: antialiased
|
|
14
|
+
font-weight: 800
|
|
15
|
+
|
|
16
|
+
=light_bold_font
|
|
17
|
+
font-family: 'Open Sans', sans-serif
|
|
18
|
+
text-rendering: optimizeLegibility
|
|
19
|
+
-webkit-font-smoothing: antialiased
|
|
20
|
+
font-weight: 600
|
|
21
|
+
|
|
22
|
+
=sans
|
|
23
|
+
font-family: 'Open Sans', sans-serif
|
|
24
|
+
|
|
25
|
+
=book_font
|
|
26
|
+
font-family: 'Open Sans', sans-serif
|
|
27
|
+
|
|
28
|
+
=img_background
|
|
29
|
+
background-repeat: no-repeat
|
|
30
|
+
background-size: cover
|
|
31
|
+
background-position: center
|
|
32
|
+
|
|
33
|
+
=vcenter
|
|
34
|
+
position: absolute
|
|
35
|
+
top: 50%
|
|
36
|
+
-webkit-transform: translateY(-50%)
|
|
37
|
+
-ms-transform: translateY(-50%)
|
|
38
|
+
transform: translateY(-50%)
|
|
39
|
+
|
|
40
|
+
=vw_shadow
|
|
41
|
+
box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.25)
|
|
42
|
+
|
|
43
|
+
=flat_shadow
|
|
44
|
+
box-shadow: 0 0 5px #888
|
|
45
|
+
|
|
46
|
+
=transition($transition-property, $transition-time, $method)
|
|
47
|
+
-webkit-transition: $transition-property $transition-time $method
|
|
48
|
+
-moz-transition: $transition-property $transition-time $method
|
|
49
|
+
-ms-transition: $transition-property $transition-time $method
|
|
50
|
+
-o-transition: $transition-property $transition-time $method
|
|
51
|
+
transition: $transition-property $transition-time $method
|
|
52
|
+
|
|
53
|
+
$body_text_color: rgba(0, 0, 0, 0.8)
|
|
54
|
+
$light_blue: #477b96
|
|
55
|
+
$md_title_font_size: 30px
|
|
56
|
+
$post_bg: #fff
|
|
57
|
+
$home_bg: #fff
|
|
58
|
+
$hover_color: #126bfb
|
|
59
|
+
$gray_text_color: #868686
|
|
60
|
+
$dark_gray: #4c4e4d
|
|
61
|
+
$text_gray: #888
|
|
62
|
+
$dark_color: #181818
|
|
63
|
+
$light_gray: #c6c6c6
|
|
64
|
+
$sep_gray: #e2e2e2
|
|
65
|
+
$white_alpha: rgba(255, 255, 255, 0.9)
|
|
@@ -0,0 +1,301 @@
|
|
|
1
|
+
@import common
|
|
2
|
+
|
|
3
|
+
body.admin
|
|
4
|
+
.alert-container
|
|
5
|
+
padding: 0 15px
|
|
6
|
+
|
|
7
|
+
.top-margin
|
|
8
|
+
margin-top: 40px
|
|
9
|
+
|
|
10
|
+
.alert-container
|
|
11
|
+
padding: 0 15px
|
|
12
|
+
|
|
13
|
+
.page-group
|
|
14
|
+
max-width: none
|
|
15
|
+
|
|
16
|
+
#main-container
|
|
17
|
+
margin-top: 20px
|
|
18
|
+
padding-left: 15px
|
|
19
|
+
padding-right: 15px
|
|
20
|
+
|
|
21
|
+
h1, h2, h3, h4, h5, .select2-drop
|
|
22
|
+
+sans
|
|
23
|
+
|
|
24
|
+
#footer
|
|
25
|
+
display: none
|
|
26
|
+
|
|
27
|
+
body.admin-user
|
|
28
|
+
.public-nav.affix
|
|
29
|
+
position: relative
|
|
30
|
+
|
|
31
|
+
#main
|
|
32
|
+
margin-top: 0
|
|
33
|
+
|
|
34
|
+
#admin-topbar
|
|
35
|
+
background: #000
|
|
36
|
+
padding-top: 8px
|
|
37
|
+
padding-bottom: 8px
|
|
38
|
+
margin-bottom: 0
|
|
39
|
+
|
|
40
|
+
.home-icon
|
|
41
|
+
width: 34px
|
|
42
|
+
margin-top: -10px
|
|
43
|
+
|
|
44
|
+
.vg-navbar .navbar-links
|
|
45
|
+
top: 0
|
|
46
|
+
|
|
47
|
+
.navbar-nav > li > a
|
|
48
|
+
color: #999
|
|
49
|
+
|
|
50
|
+
.navbar-nav > li > a:hover,
|
|
51
|
+
.navbar-nav > li > a:focus,
|
|
52
|
+
#my-account:hover
|
|
53
|
+
color: #fff
|
|
54
|
+
|
|
55
|
+
.navbar-nav > .open > a,
|
|
56
|
+
.navbar-nav > .open > a:hover,
|
|
57
|
+
.navbar-nav > .open > a:focus
|
|
58
|
+
background: #333
|
|
59
|
+
color: #fff
|
|
60
|
+
|
|
61
|
+
#admin-home-link
|
|
62
|
+
font-size: 22px
|
|
63
|
+
margin-top: -3px
|
|
64
|
+
margin-left: -9px
|
|
65
|
+
|
|
66
|
+
.admin-nav
|
|
67
|
+
min-height: 0
|
|
68
|
+
background: #000
|
|
69
|
+
border-radius: 0
|
|
70
|
+
margin-bottom: 0
|
|
71
|
+
z-index: 1000000
|
|
72
|
+
+sans
|
|
73
|
+
|
|
74
|
+
.navbar-nav
|
|
75
|
+
z-index: 10
|
|
76
|
+
|
|
77
|
+
#account-dropdown
|
|
78
|
+
& > .open a,
|
|
79
|
+
& > .open a:hover,
|
|
80
|
+
& > .open a:focus
|
|
81
|
+
background: #fff
|
|
82
|
+
color: #333
|
|
83
|
+
|
|
84
|
+
.dropdown-toggle
|
|
85
|
+
cursor: pointer
|
|
86
|
+
|
|
87
|
+
& > .open .dropdown-toggle
|
|
88
|
+
&, &:hover, &:focus, &:active, &:visited
|
|
89
|
+
background: #333
|
|
90
|
+
color: #fff
|
|
91
|
+
|
|
92
|
+
& > li > a
|
|
93
|
+
padding: 10px
|
|
94
|
+
|
|
95
|
+
li
|
|
96
|
+
a
|
|
97
|
+
color: #fff
|
|
98
|
+
|
|
99
|
+
&:hover, &:active, &:focus
|
|
100
|
+
background: #333
|
|
101
|
+
|
|
102
|
+
i
|
|
103
|
+
margin-right: 3px
|
|
104
|
+
|
|
105
|
+
&.active a
|
|
106
|
+
background: #333
|
|
107
|
+
|
|
108
|
+
body.admin
|
|
109
|
+
background: #f1f1f1
|
|
110
|
+
|
|
111
|
+
#admin-content
|
|
112
|
+
margin-top: 15px
|
|
113
|
+
+sans
|
|
114
|
+
|
|
115
|
+
#admin-content-inner
|
|
116
|
+
padding: 0 15px
|
|
117
|
+
|
|
118
|
+
.push-down-sm
|
|
119
|
+
margin-top: 22px
|
|
120
|
+
|
|
121
|
+
.post-categories-list
|
|
122
|
+
margin-bottom: 6px
|
|
123
|
+
|
|
124
|
+
.category-item
|
|
125
|
+
width: 100%
|
|
126
|
+
clear: both
|
|
127
|
+
margin-bottom: 8px
|
|
128
|
+
|
|
129
|
+
input[type='checkbox']
|
|
130
|
+
margin-right: 3px
|
|
131
|
+
top: -1px
|
|
132
|
+
|
|
133
|
+
.level
|
|
134
|
+
display: inline-block
|
|
135
|
+
width: 12px
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
.modal
|
|
139
|
+
z-index: 2000
|
|
140
|
+
|
|
141
|
+
.modal-dialog
|
|
142
|
+
z-index: 99999
|
|
143
|
+
|
|
144
|
+
.thin
|
|
145
|
+
font-weight: 400
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
.table-panel
|
|
149
|
+
clear: both
|
|
150
|
+
background: #fff
|
|
151
|
+
margin-top: 16px
|
|
152
|
+
padding: 6px 12px
|
|
153
|
+
border: 1px solid #e5e5e5
|
|
154
|
+
box-shadow: 0 1px 1px rgba(0,0,0,.04)
|
|
155
|
+
|
|
156
|
+
table.table
|
|
157
|
+
margin-bottom: 0
|
|
158
|
+
|
|
159
|
+
body.admin
|
|
160
|
+
.public-nav
|
|
161
|
+
display: none
|
|
162
|
+
|
|
163
|
+
p.info
|
|
164
|
+
font-size: 16px
|
|
165
|
+
color: #666
|
|
166
|
+
margin-top: 2px
|
|
167
|
+
margin-bottom: 20px
|
|
168
|
+
|
|
169
|
+
.label-block
|
|
170
|
+
display: block
|
|
171
|
+
|
|
172
|
+
.new-user-link
|
|
173
|
+
font-weight: normal
|
|
174
|
+
font-size: 13px
|
|
175
|
+
|
|
176
|
+
.search-form
|
|
177
|
+
.btn
|
|
178
|
+
padding: 8px 12px
|
|
179
|
+
|
|
180
|
+
.clear-link
|
|
181
|
+
color: #888
|
|
182
|
+
margin-left: 6px
|
|
183
|
+
|
|
184
|
+
select
|
|
185
|
+
height: 38px
|
|
186
|
+
|
|
187
|
+
.panel-body
|
|
188
|
+
table.table
|
|
189
|
+
margin-bottom: 0
|
|
190
|
+
|
|
191
|
+
.help-box
|
|
192
|
+
margin: 18px 0
|
|
193
|
+
padding: 10px 12px 12px 12px
|
|
194
|
+
background: $post_bg
|
|
195
|
+
border: 1px solid #ccc
|
|
196
|
+
border-radius: 4px
|
|
197
|
+
|
|
198
|
+
h3.title
|
|
199
|
+
font-size: 18px
|
|
200
|
+
padding-bottom: 3px
|
|
201
|
+
margin: 0
|
|
202
|
+
border-bottom: 1px solid #ddd
|
|
203
|
+
|
|
204
|
+
p.description
|
|
205
|
+
margin: 10px 0 10px 0
|
|
206
|
+
|
|
207
|
+
&.extra
|
|
208
|
+
font-size: 13px
|
|
209
|
+
font-style: italic
|
|
210
|
+
font-size: 14px
|
|
211
|
+
|
|
212
|
+
.media-modal-dialog
|
|
213
|
+
width: 90%
|
|
214
|
+
|
|
215
|
+
.character-count-wrap
|
|
216
|
+
text-align: right
|
|
217
|
+
font-size: 12px
|
|
218
|
+
float: right
|
|
219
|
+
margin-top: 4px
|
|
220
|
+
|
|
221
|
+
.panel-body
|
|
222
|
+
position: relative
|
|
223
|
+
|
|
224
|
+
.tags-panel-body
|
|
225
|
+
min-height: 96px
|
|
226
|
+
|
|
227
|
+
.box-loading-overlay
|
|
228
|
+
display: none
|
|
229
|
+
position: absolute
|
|
230
|
+
top: 0
|
|
231
|
+
left: 0
|
|
232
|
+
width: 100%
|
|
233
|
+
height: 100%
|
|
234
|
+
background: #fff
|
|
235
|
+
z-index: 20
|
|
236
|
+
text-align: center
|
|
237
|
+
padding-top: 36px
|
|
238
|
+
font-size: 20px
|
|
239
|
+
color: #aaa
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
.help-well
|
|
243
|
+
code
|
|
244
|
+
display: block
|
|
245
|
+
margin-bottom: 20px
|
|
246
|
+
|
|
247
|
+
&:last-child
|
|
248
|
+
margin-bottom: 0
|
|
249
|
+
|
|
250
|
+
dl.dl-horizontal
|
|
251
|
+
dt
|
|
252
|
+
width: 235px
|
|
253
|
+
|
|
254
|
+
dd
|
|
255
|
+
margin-left: 255px
|
|
256
|
+
margin-bottom: 8px
|
|
257
|
+
|
|
258
|
+
.help-description
|
|
259
|
+
font-size: 15px
|
|
260
|
+
clear: both
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
.modal
|
|
264
|
+
p.success-msg
|
|
265
|
+
font-size: 15px
|
|
266
|
+
margin-bottom: 20px
|
|
267
|
+
font-style: italic
|
|
268
|
+
font-weight: 600
|
|
269
|
+
|
|
270
|
+
.site-settings-inner
|
|
271
|
+
padding: 28px 2px
|
|
272
|
+
|
|
273
|
+
.page-module-checkbox-wrap
|
|
274
|
+
border-bottom: 1px solid #ccc
|
|
275
|
+
padding: 14px 5px 10px 5px
|
|
276
|
+
|
|
277
|
+
label
|
|
278
|
+
font-weight: normal
|
|
279
|
+
cursor: pointer
|
|
280
|
+
margin-left: 5px
|
|
281
|
+
|
|
282
|
+
.page-module-checkbox:checked + .page-module-box
|
|
283
|
+
opacity: 1
|
|
284
|
+
|
|
285
|
+
&:hover
|
|
286
|
+
opacity: 0.8
|
|
287
|
+
|
|
288
|
+
.ui-multiselect
|
|
289
|
+
input.search
|
|
290
|
+
height: 20px !important
|
|
291
|
+
|
|
292
|
+
.page-module-image-preview
|
|
293
|
+
max-width: 220px
|
|
294
|
+
|
|
295
|
+
.page-module-post-ids
|
|
296
|
+
width: 100%
|
|
297
|
+
min-height: 400px
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
.action-btn
|
|
301
|
+
z-index: 10
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
.library-panel
|
|
2
|
+
.thumbnail
|
|
3
|
+
display: block
|
|
4
|
+
position: relative
|
|
5
|
+
cursor: pointer
|
|
6
|
+
|
|
7
|
+
.checked-icon-wrap
|
|
8
|
+
display: none
|
|
9
|
+
position: absolute
|
|
10
|
+
top: 0
|
|
11
|
+
right: 0
|
|
12
|
+
z-index: 999
|
|
13
|
+
color: #66CC33
|
|
14
|
+
font-size: 22px
|
|
15
|
+
top: -6px
|
|
16
|
+
right: 0px
|
|
17
|
+
|
|
18
|
+
img
|
|
19
|
+
position: relative
|
|
20
|
+
z-index: 0
|
|
21
|
+
|
|
22
|
+
.media-thumbnails
|
|
23
|
+
max-height: 600px
|
|
24
|
+
overflow-y: auto
|
|
25
|
+
padding: 0 32px 10px 5px
|
|
26
|
+
|
|
27
|
+
input.image-radio:checked + label
|
|
28
|
+
.checked-icon-wrap
|
|
29
|
+
display: block
|
|
30
|
+
|
|
31
|
+
.paginator
|
|
32
|
+
display: block
|
|
33
|
+
border: 1px solid #ccc
|
|
34
|
+
width: 100%
|
|
35
|
+
padding: 7px 20px
|
|
36
|
+
text-align: center
|
|
37
|
+
cursor: pointer
|
|
38
|
+
|
|
39
|
+
&:hover
|
|
40
|
+
text-decoration: none
|
|
41
|
+
color: inherit
|
|
42
|
+
background: #ccc
|
|
43
|
+
|
|
44
|
+
&.last-page
|
|
45
|
+
opacity: 0.65
|
|
46
|
+
cursor: not-allowed
|
|
47
|
+
display: none
|
|
48
|
+
|
|
49
|
+
.upload-progress
|
|
50
|
+
display: none
|
|
51
|
+
margin-bottom: 20px
|
|
52
|
+
|
|
53
|
+
.progress-text
|
|
54
|
+
margin-bottom: 8px
|
|
55
|
+
|
|
56
|
+
#upload-file-field-wrap
|
|
57
|
+
position: relative
|
|
58
|
+
height: 34px
|
|
59
|
+
width: 80px
|
|
60
|
+
margin-bottom: 20px
|
|
61
|
+
|
|
62
|
+
#browse-files-btn
|
|
63
|
+
position: absolute
|
|
64
|
+
z-index: 0
|
|
65
|
+
|
|
66
|
+
#image-upload-file-field
|
|
67
|
+
position: absolute
|
|
68
|
+
opacity: 0
|
|
69
|
+
z-index: 2
|
|
70
|
+
width: 107px
|
|
71
|
+
height: 34px
|
|
72
|
+
cursor: pointer
|