elabs 4.0.0 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +9 -0
- data/.node-version +1 -1
- data/.rubocop.yml +4 -0
- data/.stylelintrc.yml +12 -2
- data/CHANGELOG.md +81 -12
- data/Gemfile +1 -1
- data/Gemfile.lock +96 -94
- data/README.md +2 -0
- data/ROADMAP.md +4 -2
- data/app/assets/config/elabs_manifest.js +2 -1
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.eot +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.svg +1148 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.ttf +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.woff +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-brands-400.woff2 +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.eot +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.svg +467 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.ttf +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.woff +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-regular-400.woff2 +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.eot +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.svg +2231 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.ttf +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.woff +0 -0
- data/app/assets/fonts/elabs/FontAwesome/fa-solid-900.woff2 +0 -0
- data/app/assets/fonts/elabs/OpenSans/Apache License.txt +201 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Bold.ttf +0 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Light.ttf +0 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Regular.ttf +0 -0
- data/app/assets/fonts/elabs/OpenSans/OpenSans-Semibold.ttf +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.eot +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.svg +51 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.ttf +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.woff +0 -0
- data/app/assets/fonts/elabs/license-icons/license-icons.woff2 +0 -0
- data/app/assets/images/elabs/preview_placeholder.png +0 -0
- data/app/assets/images/elabs/preview_placeholder_nsfw.png +0 -0
- data/app/assets/javascripts/elabs/announcements.js +33 -0
- data/app/assets/javascripts/elabs/application.js.erb +17 -14
- data/app/assets/javascripts/elabs/forms.js +0 -1
- data/app/assets/javascripts/elabs/helpers-markdown.js +2 -2
- data/app/assets/javascripts/elabs/helpers.js +17 -0
- data/app/assets/javascripts/elabs/menu.js +5 -0
- data/app/assets/stylesheets/elabs/_fonts.scss +32 -0
- data/app/assets/stylesheets/elabs/_variables.scss +286 -5
- data/app/assets/stylesheets/elabs/app/components/_act.scss +83 -0
- data/app/assets/stylesheets/elabs/app/components/_announcement.scss +41 -0
- data/app/assets/stylesheets/elabs/app/components/_classifier_types.scss +43 -0
- data/app/assets/stylesheets/elabs/app/components/_comment.scss +29 -0
- data/app/assets/stylesheets/elabs/app/components/_content_relations.scss +53 -0
- data/app/assets/stylesheets/elabs/app/components/_content_statuses.scss +39 -0
- data/app/assets/stylesheets/elabs/app/components/_content_types.scss +41 -0
- data/app/assets/stylesheets/elabs/app/components/_git_cards.scss +122 -0
- data/app/assets/stylesheets/elabs/app/elements/_alerts.scss +3 -0
- data/app/assets/stylesheets/elabs/app/elements/_badges.scss +17 -0
- data/app/assets/stylesheets/elabs/app/elements/_buttons.scss +34 -0
- data/app/assets/stylesheets/elabs/app/elements/_dropdowns.scss +78 -0
- data/app/assets/stylesheets/elabs/app/elements/_empty.scss +31 -0
- data/app/assets/stylesheets/elabs/app/elements/_errors.scss +15 -0
- data/app/assets/stylesheets/elabs/app/elements/_filter_link.scss +23 -0
- data/app/assets/stylesheets/elabs/app/elements/_fixed_links.scss +19 -0
- data/app/assets/stylesheets/elabs/app/elements/_forms.scss +123 -0
- data/app/assets/stylesheets/elabs/app/elements/_icons.scss +74 -0
- data/app/assets/stylesheets/elabs/app/{_medias.scss → elements/_medias.scss} +2 -0
- data/app/assets/stylesheets/elabs/app/{_modals.scss → elements/_modals.scss} +8 -4
- data/app/assets/stylesheets/elabs/app/elements/_nsfw.scss +41 -0
- data/app/assets/stylesheets/elabs/app/{_pagination.scss → elements/_pagination.scss} +0 -0
- data/app/assets/stylesheets/elabs/app/{_tables.scss → elements/_tables.scss} +2 -2
- data/app/assets/stylesheets/elabs/app/elements/_tabs.scss +73 -0
- data/app/assets/stylesheets/elabs/app/helpers/_cards.scss +80 -0
- data/app/assets/stylesheets/elabs/app/helpers/_containers.scss +7 -0
- data/app/assets/stylesheets/elabs/app/helpers/_states.scss +3 -0
- data/app/assets/stylesheets/elabs/app/{_helpers.scss → helpers/_typo.scss} +6 -4
- data/app/assets/stylesheets/elabs/app/layouts/_acts.scss +25 -0
- data/app/assets/stylesheets/elabs/app/layouts/_classifiers.scss +32 -0
- data/app/assets/stylesheets/elabs/app/{_comments.scss → layouts/_comments.scss} +0 -2
- data/app/assets/stylesheets/elabs/app/layouts/_devise.scss +65 -0
- data/app/assets/stylesheets/elabs/app/layouts/_layout.scss +40 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page.scss +14 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_content.scss +13 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_footer.scss +20 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_header.scss +146 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_menu.scss +232 -0
- data/app/assets/stylesheets/elabs/app/layouts/_page_messages.scss +4 -0
- data/app/assets/stylesheets/elabs/app/layouts/_private_layout.scss +78 -0
- data/app/assets/stylesheets/elabs/app/{_typo.scss → layouts/_typo.scss} +3 -0
- data/app/assets/stylesheets/elabs/app/mixins/_classifier_card.scss +43 -0
- data/app/assets/stylesheets/elabs/app/mixins/_content_card.scss +103 -0
- data/app/assets/stylesheets/elabs/app/mixins/_content_full.scss +158 -0
- data/app/assets/stylesheets/elabs/app/mixins/{_content-inline.scss → _content_inline.scss} +0 -0
- data/app/assets/stylesheets/elabs/lib/_codemirror.scss +2 -2
- data/app/assets/stylesheets/elabs/{_colors.scss → lib/_colors_reference.scss} +0 -52
- data/app/assets/stylesheets/elabs/lib/_license_icons.scss +121 -0
- data/app/assets/stylesheets/elabs/lib/fontawesome/_fontawesome.scss +1 -1
- data/app/assets/stylesheets/elabs/lib/fontawesome/_fonts.scss +18 -18
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss.scss +1 -1
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss_variables.scss +227 -0
- data/app/assets/stylesheets/elabs/style.scss +62 -57
- data/app/controllers/elabs/admin/admin_application_controller.rb +1 -1
- data/app/controllers/elabs/admin/announcements_controller.rb +71 -0
- data/app/controllers/elabs/concerns/elabs_controller.rb +3 -0
- data/app/controllers/elabs/content_application_controller.rb +4 -0
- data/app/controllers/elabs/elabs_public_controller.rb +15 -0
- data/app/controllers/elabs/languages_controller.rb +1 -5
- data/app/controllers/elabs/member/comments_controller.rb +42 -0
- data/app/controllers/elabs/member/member_application_controller.rb +1 -1
- data/app/controllers/elabs/reports_controller.rb +2 -0
- data/app/helpers/elabs/acts_helper.rb +7 -2
- data/app/helpers/elabs/application_helper.rb +8 -50
- data/app/helpers/elabs/content_filters_helper.rb +17 -24
- data/app/helpers/elabs/content_helper.rb +8 -35
- data/app/helpers/elabs/content_renderer_helper.rb +4 -112
- data/app/helpers/elabs/form_helper.rb +11 -11
- data/app/helpers/elabs/icons_helper.rb +63 -0
- data/app/helpers/elabs/{admin_content_helper.rb → links_admin_helper.rb} +1 -1
- data/app/helpers/elabs/links_helper.rb +58 -0
- data/app/helpers/elabs/{member_content_helper.rb → links_member_helper.rb} +2 -2
- data/app/helpers/elabs/notification_helper.rb +17 -3
- data/app/helpers/elabs/shortcodes_helper.rb +108 -0
- data/app/helpers/elabs/thumbnails_helper.rb +1 -1
- data/app/models/elabs/album.rb +14 -0
- data/app/models/elabs/announcement.rb +33 -0
- data/app/models/elabs/article.rb +14 -0
- data/app/models/elabs/comment.rb +10 -4
- data/app/models/elabs/note.rb +14 -0
- data/app/models/elabs/project.rb +12 -0
- data/app/models/elabs/report.rb +1 -0
- data/app/models/elabs/upload.rb +16 -0
- data/app/models/elabs/user.rb +2 -1
- data/app/views/elabs/acts/_filters.html.haml +3 -2
- data/app/views/elabs/acts/index.html.haml +2 -13
- data/app/views/elabs/admin/announcements/_announcement.json.jbuilder +10 -0
- data/app/views/elabs/admin/announcements/_form.html.haml +52 -0
- data/app/views/elabs/admin/announcements/edit.html.haml +3 -0
- data/app/views/elabs/admin/announcements/index.html.haml +28 -0
- data/app/views/elabs/admin/announcements/index.json.jbuilder +1 -0
- data/app/views/elabs/admin/announcements/new.html.haml +3 -0
- data/app/views/elabs/admin/licenses/index.html.haml +2 -2
- data/app/views/elabs/admin/uploads/_upload.json.jbuilder +3 -3
- data/app/views/elabs/albums/_card_content.html.haml +8 -0
- data/app/views/elabs/albums/_filters.html.haml +5 -3
- data/app/views/elabs/albums/index.html.haml +1 -1
- data/app/views/elabs/albums/show.html.haml +38 -29
- data/app/views/elabs/articles/_filters.html.haml +5 -3
- data/app/views/elabs/articles/index.html.haml +1 -1
- data/app/views/elabs/articles/show.html.haml +33 -25
- data/app/views/elabs/auth/confirmations/new.html.haml +1 -1
- data/app/views/elabs/auth/passwords/edit.html.haml +1 -1
- data/app/views/elabs/auth/passwords/new.html.haml +1 -1
- data/app/views/elabs/auth/registrations/new.html.haml +7 -2
- data/app/views/elabs/auth/sessions/_new.html.haml +1 -1
- data/app/views/elabs/auth/unlocks/new.html.haml +1 -1
- data/app/views/elabs/comments/_comments.html.haml +29 -20
- data/app/views/elabs/comments/_form.html.haml +40 -36
- data/app/views/elabs/languages/_filters.html.haml +3 -5
- data/app/views/elabs/languages/index.html.haml +12 -13
- data/app/views/elabs/languages/show.html.haml +36 -31
- data/app/views/elabs/layouts/_announcements.html.haml +9 -0
- data/app/views/elabs/layouts/_content_associations.html.haml +89 -0
- data/app/views/elabs/layouts/_content_card.html.haml +41 -0
- data/app/views/elabs/layouts/_flash_messages.html.haml +4 -0
- data/app/views/elabs/layouts/_footer.html.haml +18 -10
- data/app/views/elabs/layouts/_form_honeypot.html.haml +12 -0
- data/app/views/elabs/layouts/_hidden_entry.html.haml +1 -1
- data/app/views/elabs/layouts/_hidden_entry_full.html.haml +4 -2
- data/app/views/elabs/layouts/_hidden_entry_inline.html.haml +1 -1
- data/app/views/elabs/layouts/_language_menu.html.haml +2 -2
- data/app/views/elabs/layouts/_menu.html.haml +58 -75
- data/app/views/elabs/layouts/_menu_admin.html.haml +40 -0
- data/app/views/elabs/layouts/_menu_member.html.haml +57 -0
- data/app/views/elabs/layouts/application.html.haml +24 -13
- data/app/views/elabs/layouts/application_admin.html.haml +33 -0
- data/app/views/elabs/layouts/application_member.html.haml +36 -0
- data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_albums.html.haml +0 -0
- data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_projects.html.haml +0 -0
- data/app/views/elabs/layouts/{lists → content_classifiers_lists}/_tags.html.haml +0 -0
- data/app/views/elabs/layouts/{_shortcode_infinite_loop.html.haml → shortcodes/_infinite_loop.html.haml} +1 -1
- data/app/views/elabs/layouts/{_shortcode_infinite_loop_inline.html.haml → shortcodes/_infinite_loop_inline.html.haml} +0 -0
- data/app/views/elabs/layouts/{_shortcode_missing_content.html.haml → shortcodes/_missing_content.html.haml} +1 -1
- data/app/views/elabs/layouts/{_shortcode_missing_content_inline.html.haml → shortcodes/_missing_content_inline.html.haml} +0 -0
- data/app/views/elabs/layouts/shortcodes/_open_to_see.html.haml +2 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_repo_card.html.haml +1 -1
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_repo_inline.html.haml +0 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_github_user_card.html.haml +0 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_group_card.html.haml +1 -1
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_repo_card.html.haml +1 -1
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_repo_inline.html.haml +0 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/_gitlab_user_card.html.haml +1 -1
- data/app/views/elabs/layouts/shortcodes/widgets/vue/_all_widgets.html.haml +5 -0
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_github_repo_card_vue.html.haml +8 -8
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_github_user_card_vue.html.haml +5 -5
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_group_card_vue.html.haml +5 -5
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_repo_card_vue.html.haml +8 -8
- data/app/views/elabs/layouts/{widgets → shortcodes/widgets}/vue/_gitlab_user_card_vue.html.haml +4 -4
- data/app/views/elabs/licenses/_filters.html.haml +3 -2
- data/app/views/elabs/licenses/index.html.haml +14 -12
- data/app/views/elabs/licenses/show.html.haml +40 -34
- data/app/views/elabs/member/albums/_form.html.haml +1 -43
- data/app/views/elabs/member/articles/_form.html.haml +1 -39
- data/app/views/elabs/member/layouts/_form_commons.html.haml +55 -0
- data/app/views/elabs/member/notes/_form.html.haml +1 -39
- data/app/views/elabs/member/preferences/edit.html.haml +1 -2
- data/app/views/elabs/member/projects/_form.html.haml +3 -38
- data/app/views/elabs/member/uploads/_form.html.haml +1 -42
- data/app/views/elabs/member/uploads/_upload.json.jbuilder +3 -3
- data/app/views/elabs/member/users/edit.html.haml +3 -4
- data/app/views/elabs/notes/_filters.html.haml +5 -3
- data/app/views/elabs/notes/index.html.haml +1 -1
- data/app/views/elabs/notes/show.html.haml +33 -25
- data/app/views/elabs/projects/_filters.html.haml +5 -3
- data/app/views/elabs/projects/index.html.haml +1 -1
- data/app/views/elabs/projects/show.html.haml +68 -62
- data/app/views/elabs/reports/_form.html.haml +2 -0
- data/app/views/elabs/tags/_filters.html.haml +3 -2
- data/app/views/elabs/tags/index.html.haml +11 -11
- data/app/views/elabs/tags/show.html.haml +31 -28
- data/app/views/elabs/uploads/_filters.html.haml +5 -3
- data/app/views/elabs/uploads/_preview.html.haml +5 -4
- data/app/views/elabs/uploads/_thumbnail.html.haml +9 -0
- data/app/views/elabs/uploads/_upload.json.jbuilder +3 -3
- data/app/views/elabs/uploads/index.html.haml +1 -1
- data/app/views/elabs/uploads/show.html.haml +45 -39
- data/app/views/elabs/users/_filters.html.haml +3 -2
- data/app/views/elabs/users/_user.html.haml +3 -3
- data/app/views/elabs/users/show.html.haml +48 -43
- data/config/routes.rb +13 -8
- data/db/migrate/20181025084232_add_archived_field_to_comments.rb +5 -0
- data/db/migrate/20181026071743_delete_comment_notifications.rb +5 -0
- data/db/migrate/20181030063505_create_announcements.rb +14 -0
- data/docs/CODEOWNERS +10 -0
- data/docs/migrating.md +16 -1
- data/docs/shortcodes_guide.md +51 -0
- data/lib/assets/javascripts/README-highlight.js.md +5 -5
- data/lib/assets/javascripts/highlight.js-9.13.1/highlight.pack.js +2 -0
- data/lib/assets/stylesheets/{highlight.js-9.12.0 → highlight.js-9.13.1}/styles/atelier-sulphurpool-light.css +0 -0
- data/lib/elabs.rb +8 -0
- data/lib/elabs/version.rb +1 -1
- data/lib/generators/elabs/{devise_views_generator.rb → devise_mailer_views_generator.rb} +2 -2
- data/lib/generators/elabs/images_generator.rb +24 -0
- data/lib/generators/elabs/required_assets_generator.rb +0 -2
- data/lib/generators/templates/elabs.rb +3 -0
- data/locale/app.pot +132 -19
- data/locale/en/app.edit.po +130 -17
- data/locale/en/app.po +130 -17
- data/locale/fr/app.edit.po +145 -28
- data/locale/fr/app.po +141 -27
- data/package.json +10 -12
- data/yarn.lock +885 -668
- metadata +136 -97
- data/app/assets/stylesheets/elabs/_icons.scss +0 -17
- data/app/assets/stylesheets/elabs/app/_acts.scss +0 -69
- data/app/assets/stylesheets/elabs/app/_alerts.scss +0 -3
- data/app/assets/stylesheets/elabs/app/_badges.scss +0 -11
- data/app/assets/stylesheets/elabs/app/_buttons.scss +0 -29
- data/app/assets/stylesheets/elabs/app/_content.scss +0 -25
- data/app/assets/stylesheets/elabs/app/_content_statuses.scss +0 -32
- data/app/assets/stylesheets/elabs/app/_content_uploads.scss +0 -39
- data/app/assets/stylesheets/elabs/app/_empty.scss +0 -19
- data/app/assets/stylesheets/elabs/app/_errors.scss +0 -9
- data/app/assets/stylesheets/elabs/app/_filter_links.scss +0 -27
- data/app/assets/stylesheets/elabs/app/_forms.scss +0 -74
- data/app/assets/stylesheets/elabs/app/_languages.scss +0 -6
- data/app/assets/stylesheets/elabs/app/_layout.scss +0 -206
- data/app/assets/stylesheets/elabs/app/_licenses.scss +0 -6
- data/app/assets/stylesheets/elabs/app/_link-to-top.scss +0 -8
- data/app/assets/stylesheets/elabs/app/_tabs.scss +0 -54
- data/app/assets/stylesheets/elabs/app/_tags.scss +0 -6
- data/app/assets/stylesheets/elabs/app/_toolbars.scss +0 -3
- data/app/assets/stylesheets/elabs/app/_users.scss +0 -21
- data/app/assets/stylesheets/elabs/app/admin-members/_forms.scss +0 -13
- data/app/assets/stylesheets/elabs/app/admin-members/_indexes.scss +0 -46
- data/app/assets/stylesheets/elabs/app/admin-members/_layout.scss +0 -17
- data/app/assets/stylesheets/elabs/app/areas/_devise.scss +0 -31
- data/app/assets/stylesheets/elabs/app/components/_cards.scss +0 -16
- data/app/assets/stylesheets/elabs/app/components/_container.scss +0 -4
- data/app/assets/stylesheets/elabs/app/mixins/_classifier-card.scss +0 -16
- data/app/assets/stylesheets/elabs/app/mixins/_content-card.scss +0 -72
- data/app/assets/stylesheets/elabs/app/mixins/_content-full.scss +0 -77
- data/app/assets/stylesheets/elabs/app/widgets/_git-cards.scss +0 -88
- data/app/assets/stylesheets/elabs/lib/fontawesome/_icons.scss +0 -1118
- data/app/assets/stylesheets/elabs/lib/knacss/_knacss-variables.scss +0 -239
- data/app/views/elabs/albums/_album.html.haml +0 -38
- data/app/views/elabs/articles/_article.html.haml +0 -30
- data/app/views/elabs/languages/_associations.html.haml +0 -61
- data/app/views/elabs/layouts/_shortcode_open_to_see.html.haml +0 -2
- data/app/views/elabs/layouts/admin_application.html.haml +0 -21
- data/app/views/elabs/layouts/member_application.html.haml +0 -24
- data/app/views/elabs/layouts/widgets/vue/_all_widgets.html.haml +0 -5
- data/app/views/elabs/licenses/_associations.html.haml +0 -61
- data/app/views/elabs/notes/_note.html.haml +0 -31
- data/app/views/elabs/projects/_associations.html.haml +0 -54
- data/app/views/elabs/projects/_project.html.haml +0 -29
- data/app/views/elabs/tags/_associations.html.haml +0 -61
- data/app/views/elabs/uploads/_upload.html.haml +0 -41
- data/app/views/elabs/users/_associations.html.haml +0 -61
- data/db/seeds.rb +0 -10
- data/db/seeds_development.rb +0 -21
- data/db/seeds_production.rb +0 -0
- data/lib/assets/javascripts/codemirror-5.39.2/addon/mode/overlay.js +0 -90
- data/lib/assets/javascripts/codemirror-5.39.2/lib/codemirror.js +0 -9684
- data/lib/assets/javascripts/codemirror-5.39.2/mode/clike/clike.js +0 -834
- data/lib/assets/javascripts/codemirror-5.39.2/mode/css/css.js +0 -832
- data/lib/assets/javascripts/codemirror-5.39.2/mode/gfm/gfm.js +0 -129
- data/lib/assets/javascripts/codemirror-5.39.2/mode/htmlmixed/htmlmixed.js +0 -152
- data/lib/assets/javascripts/codemirror-5.39.2/mode/javascript/javascript.js +0 -896
- data/lib/assets/javascripts/codemirror-5.39.2/mode/markdown/markdown.js +0 -882
- data/lib/assets/javascripts/codemirror-5.39.2/mode/meta.js +0 -217
- data/lib/assets/javascripts/codemirror-5.39.2/mode/xml/xml.js +0 -402
- data/lib/assets/javascripts/highlight.js-9.12.0/highlight.pack.js +0 -2
- data/lib/assets/stylesheets/codemirror-5.39.2/lib/codemirror.css +0 -346
- data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-dark.css +0 -38
- data/lib/assets/stylesheets/codemirror-5.39.2/theme/base16-light.css +0 -38
@@ -1,54 +0,0 @@
|
|
1
|
-
.tabs {
|
2
|
-
|
3
|
-
&__tabs-list {
|
4
|
-
@extend %card;
|
5
|
-
display: flex;
|
6
|
-
list-style-type: none;
|
7
|
-
border-bottom: {
|
8
|
-
left-radius: 0;
|
9
|
-
right-radius: 0;
|
10
|
-
}
|
11
|
-
margin-bottom: 0;
|
12
|
-
|
13
|
-
&__tab {
|
14
|
-
padding: $spacer-tiny $spacer-small;
|
15
|
-
border-bottom: 3px solid transparent;
|
16
|
-
|
17
|
-
&.active {
|
18
|
-
border-color: $color-borders;
|
19
|
-
}
|
20
|
-
|
21
|
-
a {
|
22
|
-
text-decoration: none;
|
23
|
-
color: $color-base;
|
24
|
-
}
|
25
|
-
}
|
26
|
-
}
|
27
|
-
|
28
|
-
&__tab-content {
|
29
|
-
|
30
|
-
&__title {
|
31
|
-
display: flex;
|
32
|
-
margin-top: 0;
|
33
|
-
border-radius: 0;
|
34
|
-
|
35
|
-
h2 {
|
36
|
-
@include font-size('h4');
|
37
|
-
flex-grow: 1;
|
38
|
-
}
|
39
|
-
|
40
|
-
.actions {
|
41
|
-
flex: none;
|
42
|
-
text-align: right;
|
43
|
-
}
|
44
|
-
}
|
45
|
-
|
46
|
-
&.tab--initialized {
|
47
|
-
display: none;
|
48
|
-
|
49
|
-
&.active {
|
50
|
-
display: block;
|
51
|
-
}
|
52
|
-
}
|
53
|
-
}
|
54
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
@include content-full('user', $el-user-bg);
|
2
|
-
@include classifier-card('user', $el-user-bg);
|
3
|
-
|
4
|
-
.users-list {
|
5
|
-
@include grid(3, $spacer-small);
|
6
|
-
}
|
7
|
-
|
8
|
-
.user-card {
|
9
|
-
|
10
|
-
header {
|
11
|
-
height: 64px;
|
12
|
-
}
|
13
|
-
}
|
14
|
-
|
15
|
-
.user--inline {
|
16
|
-
display: inline;
|
17
|
-
|
18
|
-
.avatar {
|
19
|
-
max-width: 1.5em;
|
20
|
-
}
|
21
|
-
}
|
@@ -1,13 +0,0 @@
|
|
1
|
-
form {
|
2
|
-
|
3
|
-
.actions {
|
4
|
-
background-color: darken($background-base, 2%);
|
5
|
-
box-shadow: inset 0 5px 5px -3px $color-borders;
|
6
|
-
margin: $spacer-small (-$spacer-small) (-$spacer-small) (-$spacer-small);
|
7
|
-
padding: $spacer-small;
|
8
|
-
|
9
|
-
&-buttons {
|
10
|
-
text-align: right;
|
11
|
-
}
|
12
|
-
}
|
13
|
-
}
|
@@ -1,46 +0,0 @@
|
|
1
|
-
.page--admin,
|
2
|
-
.page--member {
|
3
|
-
|
4
|
-
.page__content__container {
|
5
|
-
width: 100%;
|
6
|
-
padding: {
|
7
|
-
left: $spacer-small;
|
8
|
-
right: $spacer-small;
|
9
|
-
}
|
10
|
-
}
|
11
|
-
|
12
|
-
.albums-list,
|
13
|
-
.articles-list,
|
14
|
-
.notes-list,
|
15
|
-
.projects-list,
|
16
|
-
.uploads-list,
|
17
|
-
.languages-list,
|
18
|
-
.licenses-list,
|
19
|
-
.tags-list,
|
20
|
-
.reports-list,
|
21
|
-
.users-list,
|
22
|
-
.notifications-list {
|
23
|
-
display: table;
|
24
|
-
font-size: .8em;
|
25
|
-
|
26
|
-
.is-icon,
|
27
|
-
.is-counter {
|
28
|
-
text-align: center;
|
29
|
-
max-width: 75px;
|
30
|
-
}
|
31
|
-
|
32
|
-
.actions {
|
33
|
-
text-align: right;
|
34
|
-
width: 100px;
|
35
|
-
}
|
36
|
-
|
37
|
-
.relations {
|
38
|
-
|
39
|
-
.album,
|
40
|
-
.project,
|
41
|
-
.tag {
|
42
|
-
display: block;
|
43
|
-
}
|
44
|
-
}
|
45
|
-
}
|
46
|
-
}
|
@@ -1,17 +0,0 @@
|
|
1
|
-
.page--admin,
|
2
|
-
.page--member {
|
3
|
-
|
4
|
-
.page__title {
|
5
|
-
padding-bottom: $spacer-small;
|
6
|
-
}
|
7
|
-
|
8
|
-
.page__actions {
|
9
|
-
width: 100%;
|
10
|
-
padding: {
|
11
|
-
left: $spacer-small;
|
12
|
-
right: $spacer-small;
|
13
|
-
}
|
14
|
-
margin-bottom: $spacer-small;
|
15
|
-
background-color: transparent;
|
16
|
-
}
|
17
|
-
}
|
@@ -1,31 +0,0 @@
|
|
1
|
-
.devise {
|
2
|
-
@include grid(5, $spacer-small);
|
3
|
-
|
4
|
-
&__form {
|
5
|
-
grid-column: 2 / span 3;
|
6
|
-
|
7
|
-
&__wrapper {
|
8
|
-
@extend %card;
|
9
|
-
}
|
10
|
-
}
|
11
|
-
|
12
|
-
&__actions {
|
13
|
-
|
14
|
-
a {
|
15
|
-
display: block;
|
16
|
-
font-size: .8em;
|
17
|
-
text-decoration: none;
|
18
|
-
color: lighten($link-color, 20%);
|
19
|
-
border-left: 3px solid transparent;
|
20
|
-
padding-left: $spacer-tiny;
|
21
|
-
|
22
|
-
&.active {
|
23
|
-
border-left-color: $color-borders;
|
24
|
-
}
|
25
|
-
|
26
|
-
&:hover {
|
27
|
-
border-left-color: $color-borders;
|
28
|
-
}
|
29
|
-
}
|
30
|
-
}
|
31
|
-
}
|
@@ -1,16 +0,0 @@
|
|
1
|
-
%card-style {
|
2
|
-
border-radius: $border-radius-lg;
|
3
|
-
padding: $spacer-tiny $spacer-small;
|
4
|
-
background-color: $color-white;
|
5
|
-
margin-bottom: $spacer-small;
|
6
|
-
}
|
7
|
-
|
8
|
-
%card {
|
9
|
-
@extend %card-style;
|
10
|
-
box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
|
11
|
-
}
|
12
|
-
|
13
|
-
%card-inset {
|
14
|
-
@extend %card-style;
|
15
|
-
box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
|
16
|
-
}
|
@@ -1,16 +0,0 @@
|
|
1
|
-
@mixin classifier-card($name, $color) {
|
2
|
-
@include content-card($name, $color);
|
3
|
-
|
4
|
-
// Card override
|
5
|
-
|
6
|
-
.#{$name}-card {
|
7
|
-
|
8
|
-
.content {
|
9
|
-
padding: $spacer-tiny 0;
|
10
|
-
|
11
|
-
.btn--block:not(:last-child) {
|
12
|
-
margin-bottom: $spacer-tiny;
|
13
|
-
}
|
14
|
-
}
|
15
|
-
}
|
16
|
-
}
|
@@ -1,72 +0,0 @@
|
|
1
|
-
@mixin content-card($name, $color) {
|
2
|
-
|
3
|
-
.#{$name}-card {
|
4
|
-
$card-color-base: darken($color, 20%);
|
5
|
-
$card-color-title: darken($card-color-base, 40%);
|
6
|
-
$card-color-content: darken($card-color-base, 20%);
|
7
|
-
@extend %card;
|
8
|
-
background-color: $color;
|
9
|
-
color: $card-color-base;
|
10
|
-
margin-bottom: $spacer-small;
|
11
|
-
|
12
|
-
a {
|
13
|
-
color: darken($color, 30%);
|
14
|
-
}
|
15
|
-
|
16
|
-
header {
|
17
|
-
display: flex;
|
18
|
-
|
19
|
-
.icon {
|
20
|
-
padding: 0;
|
21
|
-
flex: none;
|
22
|
-
margin-right: $spacer-tiny;
|
23
|
-
|
24
|
-
img {
|
25
|
-
border-radius: $border-radius;
|
26
|
-
}
|
27
|
-
}
|
28
|
-
|
29
|
-
h3 {
|
30
|
-
margin: 0;
|
31
|
-
line-height: 1em;
|
32
|
-
|
33
|
-
a {
|
34
|
-
text-decoration: none;
|
35
|
-
color: $card-color-title;
|
36
|
-
}
|
37
|
-
}
|
38
|
-
|
39
|
-
ul.informations {
|
40
|
-
list-style-type: none;
|
41
|
-
margin: 0;
|
42
|
-
padding: 0;
|
43
|
-
font-size: .8em;
|
44
|
-
min-height: 1em;
|
45
|
-
|
46
|
-
li {
|
47
|
-
display: inline;
|
48
|
-
margin-left: $spacer-tiny;
|
49
|
-
|
50
|
-
&:first-child {
|
51
|
-
margin-left: 0;
|
52
|
-
}
|
53
|
-
}
|
54
|
-
}
|
55
|
-
}
|
56
|
-
|
57
|
-
article {
|
58
|
-
border-top: 1px dashed $color-borders;
|
59
|
-
margin-top: $spacer-tiny;
|
60
|
-
color: $card-color-content;
|
61
|
-
|
62
|
-
pre {
|
63
|
-
@extend %content-code;
|
64
|
-
}
|
65
|
-
}
|
66
|
-
|
67
|
-
.more {
|
68
|
-
font-size: .8em;
|
69
|
-
text-align: right;
|
70
|
-
}
|
71
|
-
}
|
72
|
-
}
|
@@ -1,77 +0,0 @@
|
|
1
|
-
@mixin content-full($name, $color) {
|
2
|
-
|
3
|
-
.#{$name}--full {
|
4
|
-
@include grid(12, $spacer-small);
|
5
|
-
|
6
|
-
> aside {
|
7
|
-
grid-column: auto / span 3;
|
8
|
-
font-size: .8em;
|
9
|
-
|
10
|
-
ul {
|
11
|
-
@extend %card;
|
12
|
-
list-style-type: none;
|
13
|
-
margin: 0;
|
14
|
-
|
15
|
-
li {
|
16
|
-
|
17
|
-
&.separator {
|
18
|
-
margin-top: $spacer-tiny;
|
19
|
-
padding-top: $spacer-tiny;
|
20
|
-
border-top: 1px dashed $color-borders;
|
21
|
-
}
|
22
|
-
|
23
|
-
&.image {
|
24
|
-
padding: 0;
|
25
|
-
margin: (-$spacer-tiny) (-$spacer-small) ($spacer-small) (-$spacer-small);
|
26
|
-
|
27
|
-
/* stylelint-disable max-nesting-depth */
|
28
|
-
|
29
|
-
img {
|
30
|
-
width: 100%;
|
31
|
-
border-top: {
|
32
|
-
left-radius: $border-radius-lg;
|
33
|
-
right-radius: $border-radius-lg;
|
34
|
-
}
|
35
|
-
}
|
36
|
-
|
37
|
-
/* stylelint-enable max-nesting-depth */
|
38
|
-
}
|
39
|
-
}
|
40
|
-
}
|
41
|
-
}
|
42
|
-
|
43
|
-
.content {
|
44
|
-
grid-column: auto / span 9;
|
45
|
-
|
46
|
-
article {
|
47
|
-
margin-bottom: $spacer-small;
|
48
|
-
|
49
|
-
> h1,
|
50
|
-
> h2,
|
51
|
-
> h3,
|
52
|
-
> h4,
|
53
|
-
> h5,
|
54
|
-
> h6 {
|
55
|
-
@extend %article-header;
|
56
|
-
}
|
57
|
-
|
58
|
-
> h1,
|
59
|
-
> h2 {
|
60
|
-
margin: $spacer-large 0 $spacer-medium 0;
|
61
|
-
}
|
62
|
-
|
63
|
-
> h3 {
|
64
|
-
margin: $spacer-medium-plus 0 $spacer-small-plus 0;
|
65
|
-
}
|
66
|
-
|
67
|
-
> h4 {
|
68
|
-
margin: $spacer-medium 0 $spacer-small 0;
|
69
|
-
}
|
70
|
-
|
71
|
-
pre {
|
72
|
-
@extend %content-code;
|
73
|
-
}
|
74
|
-
}
|
75
|
-
}
|
76
|
-
}
|
77
|
-
}
|
@@ -1,88 +0,0 @@
|
|
1
|
-
.github-card,
|
2
|
-
.gitlab-card {
|
3
|
-
@extend %card;
|
4
|
-
display: flex;
|
5
|
-
|
6
|
-
> .alert {
|
7
|
-
margin: 0 (-$spacer-tiny);
|
8
|
-
border-radius: $border-radius;
|
9
|
-
flex-grow: 1;
|
10
|
-
}
|
11
|
-
|
12
|
-
.icon {
|
13
|
-
flex: none;
|
14
|
-
margin-right: $spacer-small;
|
15
|
-
|
16
|
-
&--avatar {
|
17
|
-
|
18
|
-
.avatar {
|
19
|
-
font-size: 6rem;
|
20
|
-
max-width: 6rem;
|
21
|
-
border-radius: $border-radius;
|
22
|
-
}
|
23
|
-
|
24
|
-
.avatar-badge {
|
25
|
-
font-size: 2rem;
|
26
|
-
background-color: $background-base;
|
27
|
-
position: absolute;
|
28
|
-
margin-top: 3.6rem;
|
29
|
-
padding: .2rem;
|
30
|
-
border-radius: $border-radius;
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
34
|
-
|
35
|
-
.content {
|
36
|
-
flex-grow: 1;
|
37
|
-
|
38
|
-
h2 {
|
39
|
-
font-size: 1.2em;
|
40
|
-
line-height: 1.2em;
|
41
|
-
}
|
42
|
-
|
43
|
-
.infos {
|
44
|
-
font-size: .8em;
|
45
|
-
padding: 0;
|
46
|
-
margin: 0;
|
47
|
-
color: lighten($color-base, 15%);
|
48
|
-
|
49
|
-
a {
|
50
|
-
text-decoration: none;
|
51
|
-
}
|
52
|
-
|
53
|
-
i {
|
54
|
-
color: $color-base;
|
55
|
-
}
|
56
|
-
|
57
|
-
li {
|
58
|
-
display: inline-block;
|
59
|
-
list-style-type: none;
|
60
|
-
|
61
|
-
&:not(:first-child) {
|
62
|
-
margin-left: $spacer-small;
|
63
|
-
}
|
64
|
-
}
|
65
|
-
}
|
66
|
-
|
67
|
-
.description {
|
68
|
-
@include font-size('small');
|
69
|
-
margin: $spacer-tiny (-$spacer-tiny) 0 (-$spacer-tiny);
|
70
|
-
padding: 0 $spacer-tiny;
|
71
|
-
border-top: 1px dashed $color-borders;
|
72
|
-
}
|
73
|
-
}
|
74
|
-
}
|
75
|
-
|
76
|
-
.github-inline,
|
77
|
-
.gitlab-inline {
|
78
|
-
display: inline-block;
|
79
|
-
background-color: transparentize($color-base, .95);
|
80
|
-
border: {
|
81
|
-
top: 1px dashed $color-borders;
|
82
|
-
bottom: 1px dashed $color-borders;
|
83
|
-
}
|
84
|
-
|
85
|
-
&:not(:first-child) {
|
86
|
-
margin-left: $spacer-tiny;
|
87
|
-
}
|
88
|
-
}
|