keppler 2.1.17 → 2.1.18
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 +4 -4
- data/Gemfile.lock +2 -2
- data/installer/core/.gitignore +88 -0
- data/installer/core/app/views/admin/layouts/_sidebar.html.haml +2 -2
- data/installer/core/rockets/keppler_frontend/app/controllers/keppler_frontend/app/frontend_controller.rb +0 -1
- data/installer/core/rockets/keppler_frontend/app/models/keppler_frontend/view.rb +1 -1
- data/installer/core/rockets/keppler_frontend/config/data/views.yml +1 -1
- data/lib/keppler/version.rb +1 -1
- data/testing-with-2.1.18/.gitignore +88 -0
- data/testing-with-2.1.18/.ruby-version +1 -0
- data/testing-with-2.1.18/Gemfile +149 -0
- data/testing-with-2.1.18/Gemfile.lock +645 -0
- data/testing-with-2.1.18/Guardfile +18 -0
- data/testing-with-2.1.18/LICENSE +674 -0
- data/testing-with-2.1.18/README.md +134 -0
- data/testing-with-2.1.18/Rakefile +6 -0
- data/testing-with-2.1.18/_config.yml +1 -0
- data/testing-with-2.1.18/app/assets/images/.keep +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/astronauta_keppler.svg +123 -0
- data/testing-with-2.1.18/app/assets/images/admin/avatar_keppler.svg +100 -0
- data/testing-with-2.1.18/app/assets/images/admin/en.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/es.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/favicon.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/image_default.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/logo.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/logo2.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/profile-menu.jpg +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/search.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice-icon-orange.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice-icon.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice.png +0 -0
- data/testing-with-2.1.18/app/assets/images/admin/slice_white.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/Cohete_nubes_new.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/Home_Keppler.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/Home_Keppler2.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/fondo.svg +19 -0
- data/testing-with-2.1.18/app/assets/images/app/keppler-front.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/slice-front.png +0 -0
- data/testing-with-2.1.18/app/assets/images/app/slice.png +0 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/application.coffee +25 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-colorpicker.js +1322 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/fileinput.js +4463 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/locales/LANG.js +100 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/locales/es.js +100 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/piexif.js +2471 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/piexif.min.js +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/purify.js +812 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/purify.min.js +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/sortable.js +1590 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/bootstrap-file-input/plugins/sortable.min.js +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/code_editor.js +94 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/comment/comment.js +209 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/comment/continuecomment.js +78 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/dialog/dialog.css +32 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/dialog/dialog.js +161 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/autorefresh.js +47 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/fullscreen.css +6 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/fullscreen.js +41 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/panel.js +123 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/placeholder.js +63 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/display/rulers.js +51 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/closebrackets.js +194 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/closetag.js +175 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/continuelist.js +89 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/matchbrackets.js +145 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/matchtags.js +66 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/edit/trailingspace.js +27 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/brace-fold.js +105 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/comment-fold.js +59 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/foldcode.js +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/foldgutter.css +20 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/foldgutter.js +146 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/indent-fold.js +48 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/markdown-fold.js +49 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/fold/xml-fold.js +184 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/anyword-hint.js +41 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/css-hint.js +60 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/html-hint.js +348 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/javascript-hint.js +157 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/show-hint.css +36 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/show-hint.js +433 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/sql-hint.js +299 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/hint/xml-hint.js +110 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/loadmode.js +64 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/multiplex.js +131 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/overlay.js +90 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/mode/simple.js +216 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/annotatescrollbar.js +122 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/scrollpastend.js +48 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/simplescrollbars.css +66 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/scroll/simplescrollbars.js +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/jump-to-line.js +49 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/match-highlighter.js +165 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/matchesonscrollbar.css +8 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/matchesonscrollbar.js +97 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/search.js +252 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/addon/search/searchcursor.js +293 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/codemirror.js +9683 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/keymap/sublime.js +691 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/css.js +832 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/gss.html +103 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/index.html +75 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/less.html +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/css/scss.html +157 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/haml/haml.js +161 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/haml/index.html +79 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlembedded/htmlembedded.js +37 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlembedded/index.html +60 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlmixed/htmlmixed.js +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/htmlmixed/index.html +100 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/index.html +114 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/javascript.js +896 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/json-ld.html +72 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/javascript/typescript.html +61 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/ruby/index.html +183 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/ruby/ruby.js +296 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/vue/index.html +69 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/vue/vue.js +77 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/xml/index.html +61 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/xml/xml.js +402 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml-frontmatter/index.html +121 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +68 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml/index.html +80 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/codemirror/mode/yaml/yaml.js +119 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/file_uploader.coffee +152 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/img_preview.js +32 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/jscolor.js +1855 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/main.coffee +58 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/notification.js +14 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/ruby_console.js +14 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sidebar.js +24 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sort.coffee +8 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/swal.js +39 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sweetalert2/delete-confirm.js +118 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/sweetalert2/sweetalert2.all.min.js +2 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/switch.js +6 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/tooltips.coffee +4 -0
- data/testing-with-2.1.18/app/assets/javascripts/admin/upload_records.coffee +8 -0
- data/testing-with-2.1.18/app/assets/javascripts/app/application.js.coffee +9 -0
- data/testing-with-2.1.18/app/assets/javascripts/app/google_analytics.js.coffee +5 -0
- data/testing-with-2.1.18/app/assets/javascripts/ckeditor/config.js +130 -0
- data/testing-with-2.1.18/app/assets/javascripts/errors/application.js.coffee +1 -0
- data/testing-with-2.1.18/app/assets/javascripts/errors/errors.js +113 -0
- data/testing-with-2.1.18/app/assets/javascripts/vue_admin/index.js +111 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/application.scss +48 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/fileinput-rtl.scss +133 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/fileinput.scss +760 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/themes/explorer-fa/theme.scss +213 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/themes/explorer-fas/theme.scss +213 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/bootstrap-file-input/themes/explorer/theme.scss +213 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/comment/comment.js +209 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/comment/continuecomment.js +78 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/dialog/dialog.css +32 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/dialog/dialog.js +161 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/autorefresh.js +47 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/fullscreen.css +6 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/fullscreen.js +41 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/panel.js +123 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/placeholder.js +63 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/display/rulers.js +51 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/closebrackets.js +194 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/closetag.js +175 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/continuelist.js +89 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/matchbrackets.js +145 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/matchtags.js +66 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/edit/trailingspace.js +27 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/brace-fold.js +105 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/comment-fold.js +59 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/foldcode.js +152 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/foldgutter.css +20 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/foldgutter.js +146 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/indent-fold.js +48 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/markdown-fold.js +49 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/fold/xml-fold.js +184 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/anyword-hint.js +41 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/css-hint.js +60 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/html-hint.js +348 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/javascript-hint.js +157 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/show-hint.css +36 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/show-hint.js +433 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/sql-hint.js +299 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/hint/xml-hint.js +110 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/annotatescrollbar.js +122 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/scrollpastend.js +48 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/simplescrollbars.css +66 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/scroll/simplescrollbars.js +152 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/jump-to-line.js +49 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/match-highlighter.js +165 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/matchesonscrollbar.css +8 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/matchesonscrollbar.js +97 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/search.js +252 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/addon/search/searchcursor.js +293 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/codemirror.css +366 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/codemirror/theme/monokai.css +41 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/layouts/_footer.scss +5 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/layouts/_settings.scss +51 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/navigation/_navbar.scss +187 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/navigation/_sidebar.scss +207 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/navigation/_turbolinks.scss +4 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/components/paginator/_paginator.scss +53 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/ZXuke1cDvLCKLDcimxB44_lu.woff2 +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/boxicons.css +2918 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts.css +8 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.eot +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.ttf +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.woff +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/Simple-Line-Icons.woff2 +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.eot +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.svg +808 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.ttf +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.woff +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/fonts/boxicons.woff2 +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/fonts-and-icons/icons.css +778 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_appearance.scss +5 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_bootstrap-colorpicker.scss +269 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_customize.scss +22 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_datepicker.scss +1086 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_devise.scss +189 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_files.scss +229 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_form.scss +190 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_index.scss +466 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_listing.scss +40 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_preloader.scss +224 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_rockets.scss +13 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_roles.scss +3 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_search.scss +244 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_show.scss +23 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_switchs.scss +143 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_themes.scss +45 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_timepicker.scss +14 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/pages/_user.scss +6 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_base.scss +65 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_mixins.scss +26 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_theme.scss +124 -0
- data/testing-with-2.1.18/app/assets/stylesheets/admin/utils/_variables.scss +109 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/application.scss +30 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/base/_base_project.scss +17 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/base/_typography.scss +1 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/components/_buttons.scss +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/components/_inputs.scss +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/components/_navbar.scss +21 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/layout/_container.scss +0 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/layout/_footer.scss +15 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/layout/_header.scss +39 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/pages/_front.sass +83 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_bootstrap_override.scss +37 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_font_awesome.scss +2 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_keppler.scss +161 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/plugins/_npogress.scss +2 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/utils/_mixins.scss +18 -0
- data/testing-with-2.1.18/app/assets/stylesheets/app/utils/_variables.scss +28 -0
- data/testing-with-2.1.18/app/assets/stylesheets/errors/application.scss +3 -0
- data/testing-with-2.1.18/app/assets/stylesheets/errors/errors.scss +161 -0
- data/testing-with-2.1.18/app/assets/stylesheets/vendor/admin-lte/_skin-blue.scss +141 -0
- data/testing-with-2.1.18/app/assets/stylesheets/vendor/sweetalert2/sweetalert2.scss +11 -0
- data/testing-with-2.1.18/app/controllers/admin/admin_controller.rb +95 -0
- data/testing-with-2.1.18/app/controllers/admin/meta_tags_controller.rb +118 -0
- data/testing-with-2.1.18/app/controllers/admin/permissions_controller.rb +55 -0
- data/testing-with-2.1.18/app/controllers/admin/rockets_controller.rb +95 -0
- data/testing-with-2.1.18/app/controllers/admin/roles_controller.rb +124 -0
- data/testing-with-2.1.18/app/controllers/admin/scripts_controller.rb +104 -0
- data/testing-with-2.1.18/app/controllers/admin/seos_controller.rb +31 -0
- data/testing-with-2.1.18/app/controllers/admin/settings_controller.rb +131 -0
- data/testing-with-2.1.18/app/controllers/admin/users_controller.rb +122 -0
- data/testing-with-2.1.18/app/controllers/app/app_controller.rb +38 -0
- data/testing-with-2.1.18/app/controllers/app/front_controller.rb +8 -0
- data/testing-with-2.1.18/app/controllers/application_controller.rb +151 -0
- data/testing-with-2.1.18/app/controllers/concerns/.keep +0 -0
- data/testing-with-2.1.18/app/controllers/concerns/devise_params.rb +33 -0
- data/testing-with-2.1.18/app/controllers/concerns/mailer_config.rb +37 -0
- data/testing-with-2.1.18/app/controllers/concerns/object_query.rb +50 -0
- data/testing-with-2.1.18/app/controllers/concerns/settings.rb +105 -0
- data/testing-with-2.1.18/app/controllers/devise/sessions_controller.rb +108 -0
- data/testing-with-2.1.18/app/controllers/errors_controller.rb +30 -0
- data/testing-with-2.1.18/app/helpers/admin_helper.rb +138 -0
- data/testing-with-2.1.18/app/helpers/application_helper.rb +33 -0
- data/testing-with-2.1.18/app/helpers/fronts_helper.rb +38 -0
- data/testing-with-2.1.18/app/helpers/rockets_helper.rb +8 -0
- data/testing-with-2.1.18/app/helpers/roles_helper.rb +5 -0
- data/testing-with-2.1.18/app/helpers/scaffolds_helper.rb +5 -0
- data/testing-with-2.1.18/app/inputs/keppler_boolean_input.rb +52 -0
- data/testing-with-2.1.18/app/inputs/keppler_file_input.rb +124 -0
- data/testing-with-2.1.18/app/mailers/.keep +0 -0
- data/testing-with-2.1.18/app/mailers/application_mailer.rb +42 -0
- data/testing-with-2.1.18/app/models/.keep +0 -0
- data/testing-with-2.1.18/app/models/appearance.rb +7 -0
- data/testing-with-2.1.18/app/models/application_record.rb +6 -0
- data/testing-with-2.1.18/app/models/concerns/.keep +0 -0
- data/testing-with-2.1.18/app/models/concerns/activity_history.rb +11 -0
- data/testing-with-2.1.18/app/models/concerns/clone_record.rb +14 -0
- data/testing-with-2.1.18/app/models/concerns/downloadable.rb +16 -0
- data/testing-with-2.1.18/app/models/concerns/searchable.rb +27 -0
- data/testing-with-2.1.18/app/models/concerns/sortable.rb +13 -0
- data/testing-with-2.1.18/app/models/concerns/uploadable.rb +13 -0
- data/testing-with-2.1.18/app/models/front.rb +5 -0
- data/testing-with-2.1.18/app/models/google_analytics_setting.rb +6 -0
- data/testing-with-2.1.18/app/models/meta_tag.rb +54 -0
- data/testing-with-2.1.18/app/models/permission.rb +6 -0
- data/testing-with-2.1.18/app/models/rocket.rb +105 -0
- data/testing-with-2.1.18/app/models/role.rb +134 -0
- data/testing-with-2.1.18/app/models/script.rb +21 -0
- data/testing-with-2.1.18/app/models/seo.rb +49 -0
- data/testing-with-2.1.18/app/models/setting.rb +19 -0
- data/testing-with-2.1.18/app/models/smtp_setting.rb +7 -0
- data/testing-with-2.1.18/app/models/social_account.rb +6 -0
- data/testing-with-2.1.18/app/models/user.rb +75 -0
- data/testing-with-2.1.18/app/policies/application_policy.rb +18 -0
- data/testing-with-2.1.18/app/policies/controller_policy.rb +59 -0
- data/testing-with-2.1.18/app/policies/meta_tag_policy.rb +11 -0
- data/testing-with-2.1.18/app/policies/permission_policy.rb +23 -0
- data/testing-with-2.1.18/app/policies/rocket_policy.rb +11 -0
- data/testing-with-2.1.18/app/policies/role_policy.rb +31 -0
- data/testing-with-2.1.18/app/policies/script_policy.rb +11 -0
- data/testing-with-2.1.18/app/policies/seo_policy.rb +23 -0
- data/testing-with-2.1.18/app/policies/setting_policy.rb +15 -0
- data/testing-with-2.1.18/app/policies/user_policy.rb +19 -0
- data/testing-with-2.1.18/app/services/admin/appearance_service.rb +49 -0
- data/testing-with-2.1.18/app/services/admin/git_handler.rb +28 -0
- data/testing-with-2.1.18/app/uploaders/attachment_uploader.rb +61 -0
- data/testing-with-2.1.18/app/uploaders/ckeditor_attachment_file_uploader.rb +38 -0
- data/testing-with-2.1.18/app/uploaders/ckeditor_picture_uploader.rb +49 -0
- data/testing-with-2.1.18/app/uploaders/template_uploader.rb +44 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_footer.html.haml +0 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_git_info.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_head.html.haml +7 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_keppler_boolean_script.haml +12 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_listing_preloader.haml +4 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_messages.html.haml +4 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_navigation.html.haml +59 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_preloader.html.haml +14 -0
- data/testing-with-2.1.18/app/views/admin/layouts/_sidebar.html.haml +83 -0
- data/testing-with-2.1.18/app/views/admin/layouts/application.html.haml +23 -0
- data/testing-with-2.1.18/app/views/admin/layouts/index/remote_messages.js.haml +9 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/_form.html.haml +35 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/_listing.html.haml +40 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/edit.html.haml +2 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/index.html.haml +69 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/new.html.haml +2 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/meta_tags/show.html.haml +28 -0
- data/testing-with-2.1.18/app/views/admin/permissions/_switch.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/permissions/add.html.haml +95 -0
- data/testing-with-2.1.18/app/views/admin/permissions/create.html.haml +0 -0
- data/testing-with-2.1.18/app/views/admin/permissions/create.js.erb +2 -0
- data/testing-with-2.1.18/app/views/admin/permissions/show.js.erb +2 -0
- data/testing-with-2.1.18/app/views/admin/permissions/toggle_permissions.js.erb +6 -0
- data/testing-with-2.1.18/app/views/admin/rockets/_create_rocket.haml +61 -0
- data/testing-with-2.1.18/app/views/admin/rockets/_install_rocket.haml +28 -0
- data/testing-with-2.1.18/app/views/admin/rockets/rockets.haml +54 -0
- data/testing-with-2.1.18/app/views/admin/roles/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/roles/_form.html.haml +27 -0
- data/testing-with-2.1.18/app/views/admin/roles/_listing.html.haml +42 -0
- data/testing-with-2.1.18/app/views/admin/roles/_switch.html.haml +24 -0
- data/testing-with-2.1.18/app/views/admin/roles/edit.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/roles/index.html.haml +64 -0
- data/testing-with-2.1.18/app/views/admin/roles/new.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/roles/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/roles/show.html.haml +29 -0
- data/testing-with-2.1.18/app/views/admin/scripts/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/scripts/_form.html.haml +30 -0
- data/testing-with-2.1.18/app/views/admin/scripts/_listing.html.haml +40 -0
- data/testing-with-2.1.18/app/views/admin/scripts/edit.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/scripts/index.html.haml +70 -0
- data/testing-with-2.1.18/app/views/admin/scripts/new.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/scripts/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/scripts/show.html.haml +28 -0
- data/testing-with-2.1.18/app/views/admin/seos/robots.html.haml +35 -0
- data/testing-with-2.1.18/app/views/admin/seos/sitemap.html.haml +36 -0
- data/testing-with-2.1.18/app/views/admin/settings/_form.html.haml +10 -0
- data/testing-with-2.1.18/app/views/admin/settings/components/_preview.html.haml +30 -0
- data/testing-with-2.1.18/app/views/admin/settings/edit.html.haml +4 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_appearance.html.haml +64 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_basic_information.html.haml +40 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_email_setting.html.haml +18 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_google_analytics_setting.html.haml +21 -0
- data/testing-with-2.1.18/app/views/admin/settings/fields/_social_accounts.html.haml +43 -0
- data/testing-with-2.1.18/app/views/admin/users/_description.html.haml +13 -0
- data/testing-with-2.1.18/app/views/admin/users/_form.html.haml +45 -0
- data/testing-with-2.1.18/app/views/admin/users/_listing.html.haml +47 -0
- data/testing-with-2.1.18/app/views/admin/users/delete_avatar.js.haml +3 -0
- data/testing-with-2.1.18/app/views/admin/users/edit.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/users/filter_by_role.js.erb +9 -0
- data/testing-with-2.1.18/app/views/admin/users/index.html.haml +69 -0
- data/testing-with-2.1.18/app/views/admin/users/new.html.haml +1 -0
- data/testing-with-2.1.18/app/views/admin/users/reload.js.haml +5 -0
- data/testing-with-2.1.18/app/views/admin/users/show.html.haml +34 -0
- data/testing-with-2.1.18/app/views/app/front/index.html.haml +223 -0
- data/testing-with-2.1.18/app/views/app/front/message.haml +1 -0
- data/testing-with-2.1.18/app/views/app/layouts/_footer.html.haml +3 -0
- data/testing-with-2.1.18/app/views/app/layouts/_google_analytics.html.haml +13 -0
- data/testing-with-2.1.18/app/views/app/layouts/_head.html.haml +15 -0
- data/testing-with-2.1.18/app/views/app/layouts/_messages.html.haml +6 -0
- data/testing-with-2.1.18/app/views/app/layouts/_meta_tags.html.haml +40 -0
- data/testing-with-2.1.18/app/views/app/layouts/_navigation.html.haml +13 -0
- data/testing-with-2.1.18/app/views/app/layouts/_navigation_links.html.haml +6 -0
- data/testing-with-2.1.18/app/views/app/layouts/application.html.haml +10 -0
- data/testing-with-2.1.18/app/views/application_mailer/testing.html.haml +1 -0
- data/testing-with-2.1.18/app/views/devise/confirmations/new.html.erb +16 -0
- data/testing-with-2.1.18/app/views/devise/mailer/reset_password_instructions.html.haml +6 -0
- data/testing-with-2.1.18/app/views/devise/passwords/edit.html.haml +31 -0
- data/testing-with-2.1.18/app/views/devise/passwords/new.html.haml +27 -0
- data/testing-with-2.1.18/app/views/devise/registrations/edit.html.erb +48 -0
- data/testing-with-2.1.18/app/views/devise/registrations/new.html.erb +19 -0
- data/testing-with-2.1.18/app/views/devise/sessions/new.html.haml +35 -0
- data/testing-with-2.1.18/app/views/devise/shared/_links.html.erb +21 -0
- data/testing-with-2.1.18/app/views/errors/internal_server_error.html.haml +50 -0
- data/testing-with-2.1.18/app/views/errors/not_authorized.html.haml +76 -0
- data/testing-with-2.1.18/app/views/errors/not_found.html.haml +101 -0
- data/testing-with-2.1.18/app/views/errors/unprocessable.html.haml +50 -0
- data/testing-with-2.1.18/app/views/kaminari/_first_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/kaminari/_gap.html.haml +8 -0
- data/testing-with-2.1.18/app/views/kaminari/_last_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/kaminari/_next_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/kaminari/_page.html.haml +10 -0
- data/testing-with-2.1.18/app/views/kaminari/_paginator.html.haml +18 -0
- data/testing-with-2.1.18/app/views/kaminari/_prev_page.html.haml +11 -0
- data/testing-with-2.1.18/app/views/layouts/errors/_head.html.haml +3 -0
- data/testing-with-2.1.18/app/views/layouts/errors/application.html.haml +11 -0
- data/testing-with-2.1.18/app/views/layouts/mailers/mailer.html.haml +3 -0
- data/testing-with-2.1.18/app/views/layouts/mailers/mailer.text.haml +1 -0
- data/testing-with-2.1.18/app/views/layouts/templates/application.html.haml +1 -0
- data/testing-with-2.1.18/app/views/public_activity/layout/_create.html.haml +44 -0
- data/testing-with-2.1.18/app/views/public_activity/layout/_destroy.html.haml +15 -0
- data/testing-with-2.1.18/app/views/public_activity/layout/_update.html.haml +44 -0
- data/testing-with-2.1.18/app/views/public_activity/session/_create.html.haml +13 -0
- data/testing-with-2.1.18/app/views/public_activity/session/_destroy.html.haml +13 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_first_page.html.haml +9 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_gap.html.haml +8 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_last_page.html.haml +9 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_next_page.html.haml +9 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_page.html.haml +10 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_paginator.html.haml +18 -0
- data/testing-with-2.1.18/app/views/templates/kaminari/_prev_page.html.haml +9 -0
- data/testing-with-2.1.18/bin/bundle +3 -0
- data/testing-with-2.1.18/bin/rails +4 -0
- data/testing-with-2.1.18/bin/rake +4 -0
- data/testing-with-2.1.18/bin/setup +29 -0
- data/testing-with-2.1.18/bin/spring +15 -0
- data/testing-with-2.1.18/bin/update +31 -0
- data/testing-with-2.1.18/bin/yarn +11 -0
- data/testing-with-2.1.18/config.ru +4 -0
- data/testing-with-2.1.18/config/application.rb +46 -0
- data/testing-with-2.1.18/config/attachments.yml +24 -0
- data/testing-with-2.1.18/config/boot.rb +7 -0
- data/testing-with-2.1.18/config/circleci/db_config.yml +51 -0
- data/testing-with-2.1.18/config/database.yml +25 -0
- data/testing-with-2.1.18/config/environment.rb +10 -0
- data/testing-with-2.1.18/config/environments/development.rb +61 -0
- data/testing-with-2.1.18/config/environments/production.rb +109 -0
- data/testing-with-2.1.18/config/environments/test.rb +45 -0
- data/testing-with-2.1.18/config/gaAuth/gauth_key.p12 +0 -0
- data/testing-with-2.1.18/config/initializers/assets.rb +14 -0
- data/testing-with-2.1.18/config/initializers/carrierwave.rb +12 -0
- data/testing-with-2.1.18/config/initializers/compression.rb +47 -0
- data/testing-with-2.1.18/config/initializers/cookies_serializer.rb +3 -0
- data/testing-with-2.1.18/config/initializers/date_formats.rb +2 -0
- data/testing-with-2.1.18/config/initializers/devise.rb +259 -0
- data/testing-with-2.1.18/config/initializers/filter_parameter_logging.rb +5 -0
- data/testing-with-2.1.18/config/initializers/inflections.rb +16 -0
- data/testing-with-2.1.18/config/initializers/keppler_configuration.rb +9 -0
- data/testing-with-2.1.18/config/initializers/mime_types.rb +6 -0
- data/testing-with-2.1.18/config/initializers/paginate_kaminari_configuration.rb +12 -0
- data/testing-with-2.1.18/config/initializers/ransack.rb +7 -0
- data/testing-with-2.1.18/config/initializers/rolify.rb +10 -0
- data/testing-with-2.1.18/config/initializers/route_traslator.rb +3 -0
- data/testing-with-2.1.18/config/initializers/session_store.rb +5 -0
- data/testing-with-2.1.18/config/initializers/simple_form.rb +170 -0
- data/testing-with-2.1.18/config/initializers/simple_form_bootstrap.rb +174 -0
- data/testing-with-2.1.18/config/initializers/simple_form_components.rb +61 -0
- data/testing-with-2.1.18/config/initializers/time_formats.rb +2 -0
- data/testing-with-2.1.18/config/initializers/wrap_parameters.rb +15 -0
- data/testing-with-2.1.18/config/jshint.yml +21 -0
- data/testing-with-2.1.18/config/locales/devise.en.yml +61 -0
- data/testing-with-2.1.18/config/locales/devise.es.yml +62 -0
- data/testing-with-2.1.18/config/locales/en.yml +477 -0
- data/testing-with-2.1.18/config/locales/es.yml +510 -0
- data/testing-with-2.1.18/config/locales/routes.en.yml +4 -0
- data/testing-with-2.1.18/config/locales/routes.es.yml +5 -0
- data/testing-with-2.1.18/config/locales/simple_form.en.yml +46 -0
- data/testing-with-2.1.18/config/locales/simple_form.es.yml +96 -0
- data/testing-with-2.1.18/config/locales/social_share_button.es.yml +10 -0
- data/testing-with-2.1.18/config/menu.yml +58 -0
- data/testing-with-2.1.18/config/permissions.yml +39 -0
- data/testing-with-2.1.18/config/puma.rb +56 -0
- data/testing-with-2.1.18/config/roles.yml +2 -0
- data/testing-with-2.1.18/config/routes.rb +191 -0
- data/testing-with-2.1.18/config/settings.yml +30 -0
- data/testing-with-2.1.18/config/sitemap.rb +30 -0
- data/testing-with-2.1.18/config/spring.rb +6 -0
- data/testing-with-2.1.18/db/migrate/20140812203549_devise_create_users.rb +50 -0
- data/testing-with-2.1.18/db/migrate/20140812210925_rolify_create_roles.rb +21 -0
- data/testing-with-2.1.18/db/migrate/20151221173228_create_activities.rb +23 -0
- data/testing-with-2.1.18/db/migrate/20160122201215_create_settings.rb +15 -0
- data/testing-with-2.1.18/db/migrate/20160126141856_create_smtp_settings.rb +15 -0
- data/testing-with-2.1.18/db/migrate/20160128131802_create_scripts.rb +12 -0
- data/testing-with-2.1.18/db/migrate/20160128151351_create_google_analytics_settings.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20160128193740_create_social_accounts.rb +26 -0
- data/testing-with-2.1.18/db/migrate/20160201134918_create_meta_tags.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20160201210520_create_appearances.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20171225023933_create_scaffolds.rb +10 -0
- data/testing-with-2.1.18/db/migrate/20180503174351_create_permissions.rb +11 -0
- data/testing-with-2.1.18/db/migrate/20180717160308_create_keppler_frontend_views.keppler_frontend.rb +17 -0
- data/testing-with-2.1.18/db/migrate/20180730194655_create_keppler_frontend_themes.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180802184429_create_keppler_capsules_capsules.keppler_capsules.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180802184430_create_keppler_capsules_capsule_fields.keppler_capsules.rb +12 -0
- data/testing-with-2.1.18/db/migrate/20180806192023_create_keppler_capsules_capsule_validations.keppler_capsules.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180806203410_create_keppler_frontend_partials.keppler_frontend.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180807204310_create_keppler_capsules_capsule_associations.keppler_capsules.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180813160624_create_keppler_languages_languages.keppler_languages.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180813160625_create_keppler_languages_fields.keppler_languages.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180818073305_create_active_storage_tables.active_storage.rb +26 -0
- data/testing-with-2.1.18/db/migrate/20180827120841_create_keppler_frontend_callback_functions.keppler_frontend.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180827154329_create_keppler_frontend_view_callbacks.keppler_frontend.rb +12 -0
- data/testing-with-2.1.18/db/migrate/20180827154647_add_position_to_users_table.rb +5 -0
- data/testing-with-2.1.18/db/migrate/20180830153221_create_keppler_frontend_functions.keppler_frontend.rb +14 -0
- data/testing-with-2.1.18/db/migrate/20180830153222_create_keppler_frontend_parameters.keppler_frontend.rb +13 -0
- data/testing-with-2.1.18/db/migrate/20180904144238_create_seos.rb +11 -0
- data/testing-with-2.1.18/db/seeds.rb +162 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_core/config +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/editor/resources_editor.dia +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/views/create_view.dia +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/views/delete_view.dia +0 -0
- data/testing-with-2.1.18/docs/diagrams/keppler_frontend/views/delete_view.dia.autosave +0 -0
- data/testing-with-2.1.18/lib/generators/install_rocket/USAGE +44 -0
- data/testing-with-2.1.18/lib/generators/install_rocket/install_rocket_generator.rb +107 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/USAGE +5 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/keppler_add_module_generator.rb +324 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/controllers/controller.rb +106 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/models/model.rb +29 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/policies/policy.rb +11 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/_description.haml +13 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/_form.haml +49 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/_listing.haml +58 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/edit.haml +1 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/index.haml +70 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/new.haml +1 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/reload.js.haml +5 -0
- data/testing-with-2.1.18/lib/generators/keppler_add_module/templates/views/show.haml +35 -0
- data/testing-with-2.1.18/lib/generators/keppler_delete_module/USAGE +5 -0
- data/testing-with-2.1.18/lib/generators/keppler_delete_module/keppler_delete_module_generator.rb +305 -0
- data/testing-with-2.1.18/lib/generators/keppler_front/keppler_front_generator.rb +139 -0
- data/testing-with-2.1.18/lib/generators/keppler_front/templates/controllers/controller.rb +17 -0
- data/testing-with-2.1.18/lib/generators/keppler_front/templates/views/template.html.haml +225 -0
- data/testing-with-2.1.18/lib/generators/keppler_relation/keppler_relation_generator.rb +219 -0
- data/testing-with-2.1.18/lib/generators/new_rocket/USAGE +44 -0
- data/testing-with-2.1.18/lib/generators/new_rocket/new_rocket_generator.rb +258 -0
- data/testing-with-2.1.18/lib/generators/uninstall_rocket/USAGE +32 -0
- data/testing-with-2.1.18/lib/generators/uninstall_rocket/uninstall_rocket_generator.rb +140 -0
- data/testing-with-2.1.18/lib/keppler_configuration.rb +12 -0
- data/testing-with-2.1.18/lib/plugins/config/locales/en.yml +16 -0
- data/testing-with-2.1.18/lib/plugins/config/locales/es.yml +16 -0
- data/testing-with-2.1.18/lib/plugins/config/menu.yml +16 -0
- data/testing-with-2.1.18/lib/plugins/config/permissions.yml +1 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/keppler_scaffold_generator.rb +223 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/controllers/controller.rb +107 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/models/model.rb +29 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/policies/policy.rb +14 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/_description.haml +13 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/_form.haml +49 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/_listing.haml +58 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/edit.haml +1 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/index.haml +69 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/new.haml +1 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/reload.js.haml +5 -0
- data/testing-with-2.1.18/lib/plugins/generators/keppler_scaffold/templates/views/show.haml +35 -0
- data/testing-with-2.1.18/lib/plugins/install.rb +151 -0
- data/testing-with-2.1.18/lib/plugins/layouts/application.html.haml +23 -0
- data/testing-with-2.1.18/lib/templates/haml/scaffold/_form.html.haml +10 -0
- metadata +564 -3
- data/installer/core/.sass-cache/c3e12133096533fa0f5c2d91446553934f6099d2/(__TEMPLATE__)c +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
#= require_tree .
|
@@ -0,0 +1,113 @@
|
|
1
|
+
var particles = {
|
2
|
+
"particles": {
|
3
|
+
"number": {
|
4
|
+
"value": 160,
|
5
|
+
"density": {
|
6
|
+
"enable": true,
|
7
|
+
"value_area": 800
|
8
|
+
}
|
9
|
+
},
|
10
|
+
"color": {
|
11
|
+
"value": "#ffffff"
|
12
|
+
},
|
13
|
+
"shape": {
|
14
|
+
"type": "circle",
|
15
|
+
"stroke": {
|
16
|
+
"width": 0,
|
17
|
+
"color": "#000000"
|
18
|
+
},
|
19
|
+
"polygon": {
|
20
|
+
"nb_sides": 5
|
21
|
+
},
|
22
|
+
"image": {
|
23
|
+
"src": "img/github.svg",
|
24
|
+
"width": 100,
|
25
|
+
"height": 100
|
26
|
+
}
|
27
|
+
},
|
28
|
+
"opacity": {
|
29
|
+
"value": 1,
|
30
|
+
"random": true,
|
31
|
+
"anim": {
|
32
|
+
"enable": true,
|
33
|
+
"speed": 1,
|
34
|
+
"opacity_min": 0,
|
35
|
+
"sync": false
|
36
|
+
}
|
37
|
+
},
|
38
|
+
"size": {
|
39
|
+
"value": 3,
|
40
|
+
"random": true,
|
41
|
+
"anim": {
|
42
|
+
"enable": false,
|
43
|
+
"speed": 4,
|
44
|
+
"size_min": 0.3,
|
45
|
+
"sync": false
|
46
|
+
}
|
47
|
+
},
|
48
|
+
"line_linked": {
|
49
|
+
"enable": false,
|
50
|
+
"distance": 150,
|
51
|
+
"color": "#ffffff",
|
52
|
+
"opacity": 0.4,
|
53
|
+
"width": 1
|
54
|
+
},
|
55
|
+
"move": {
|
56
|
+
"enable": true,
|
57
|
+
"speed": 0.17,
|
58
|
+
"direction": "none",
|
59
|
+
"random": true,
|
60
|
+
"straight": false,
|
61
|
+
"out_mode": "out",
|
62
|
+
"bounce": false,
|
63
|
+
"attract": {
|
64
|
+
"enable": false,
|
65
|
+
"rotateX": 600,
|
66
|
+
"rotateY": 600
|
67
|
+
}
|
68
|
+
}
|
69
|
+
},
|
70
|
+
"interactivity": {
|
71
|
+
"detect_on": "canvas",
|
72
|
+
"events": {
|
73
|
+
"onhover": {
|
74
|
+
"enable": false,
|
75
|
+
"mode": "bubble"
|
76
|
+
},
|
77
|
+
"onclick": {
|
78
|
+
"enable": false,
|
79
|
+
"mode": "repulse"
|
80
|
+
},
|
81
|
+
"resize": false
|
82
|
+
},
|
83
|
+
"modes": {
|
84
|
+
"grab": {
|
85
|
+
"distance": 400,
|
86
|
+
"line_linked": {
|
87
|
+
"opacity": 1
|
88
|
+
}
|
89
|
+
},
|
90
|
+
"bubble": {
|
91
|
+
"distance": 250,
|
92
|
+
"size": 0,
|
93
|
+
"duration": 2,
|
94
|
+
"opacity": 0,
|
95
|
+
"speed": 3
|
96
|
+
},
|
97
|
+
"repulse": {
|
98
|
+
"distance": 400,
|
99
|
+
"duration": 0.4
|
100
|
+
},
|
101
|
+
"push": {
|
102
|
+
"particles_nb": 4
|
103
|
+
},
|
104
|
+
"remove": {
|
105
|
+
"particles_nb": 2
|
106
|
+
}
|
107
|
+
}
|
108
|
+
},
|
109
|
+
"retina_detect": true
|
110
|
+
};
|
111
|
+
particlesJS('particles-js', particles, function() {
|
112
|
+
console.log('callback - particles.js config loaded');
|
113
|
+
});
|
@@ -0,0 +1,111 @@
|
|
1
|
+
function removeA(arr) {
|
2
|
+
var what, a = arguments, L = a.length, ax;
|
3
|
+
while (L > 1 && arr.length) {
|
4
|
+
what = a[--L];
|
5
|
+
while ((ax= arr.indexOf(what)) !== -1) {
|
6
|
+
arr.splice(ax, 1);
|
7
|
+
}
|
8
|
+
}
|
9
|
+
return arr;
|
10
|
+
}
|
11
|
+
|
12
|
+
|
13
|
+
var app = new Vue({
|
14
|
+
el: "#index-container",
|
15
|
+
// props: [action, controller],
|
16
|
+
data: {
|
17
|
+
items: [],
|
18
|
+
deleteList:[],
|
19
|
+
controller: "",
|
20
|
+
current_path: "",
|
21
|
+
states: {
|
22
|
+
checkall: false
|
23
|
+
}
|
24
|
+
},
|
25
|
+
mounted: function(){
|
26
|
+
var that = this;
|
27
|
+
that.controller = that._vnode.data.attrs.controller;
|
28
|
+
wlp = window.location.pathname;
|
29
|
+
that.current_path = wlp.includes('page') ? wlp : `${wlp}/page/1`;
|
30
|
+
|
31
|
+
$.ajax({
|
32
|
+
url: `${that.current_path}.json`,
|
33
|
+
success: function(res){
|
34
|
+
that.items = res;
|
35
|
+
}
|
36
|
+
});
|
37
|
+
},
|
38
|
+
computed:{
|
39
|
+
checks: function(){
|
40
|
+
return this.deleteList.length > 0
|
41
|
+
},
|
42
|
+
link: function(){
|
43
|
+
original_url = window.location.pathname;
|
44
|
+
split_url = window.location.pathname.split('/page');
|
45
|
+
return `${split_url[0]}/destroy_multiple?multiple_ids=[${this.deleteList}]`
|
46
|
+
},
|
47
|
+
checkItems: function(){
|
48
|
+
return this.items.length > 0
|
49
|
+
}
|
50
|
+
},
|
51
|
+
methods: {
|
52
|
+
listDelete: function(user_id){
|
53
|
+
var that = this;
|
54
|
+
if(that.deleteList.includes(user_id)){
|
55
|
+
removeA(that.deleteList, user_id)
|
56
|
+
}else{
|
57
|
+
that.deleteList.push(user_id)
|
58
|
+
}
|
59
|
+
let check = document.getElementById(`checkbox-all`)
|
60
|
+
if(that.deleteList.length == that.items.length){
|
61
|
+
check.checked = true;
|
62
|
+
that.states.checkall = true;
|
63
|
+
console.log(that.states.checkall)
|
64
|
+
}else{
|
65
|
+
check.checked = false;
|
66
|
+
that.states.checkall = false;
|
67
|
+
}
|
68
|
+
//console.log(that.deleteList);
|
69
|
+
},
|
70
|
+
selectAll: function(){
|
71
|
+
var that = this;
|
72
|
+
let advice = false;
|
73
|
+
|
74
|
+
console.log(that.items)
|
75
|
+
if(that.states.checkall){
|
76
|
+
that.items.map(function(item, idx){
|
77
|
+
let check = document.getElementById(`checkbox-${item.id}`)
|
78
|
+
if (check.checked) check.click();
|
79
|
+
});
|
80
|
+
}else{
|
81
|
+
if (that.deleteList.length < that.items.length){
|
82
|
+
that.items.map(function(item, idx){
|
83
|
+
if (!that.deleteList.includes(item.id)) document.getElementById(`checkbox-${item.id}`).click();
|
84
|
+
//console.log(that.deleteList.length + ' - ' + that.items.length);
|
85
|
+
//console.log(`Este fue agregado ${item.id}`);
|
86
|
+
});
|
87
|
+
}else{
|
88
|
+
that.items.map(function(item, idx){
|
89
|
+
//console.log(`Este fue quitado ${item.id}`);
|
90
|
+
document.getElementById(`checkbox-${item.id}`).click();
|
91
|
+
});
|
92
|
+
advice = true;
|
93
|
+
}
|
94
|
+
}
|
95
|
+
// console.log(that.states.checkall)
|
96
|
+
if (advice) that.states.checkall = !that.states.checkall;
|
97
|
+
|
98
|
+
// console.log(that.states.checkall)
|
99
|
+
}
|
100
|
+
// deleteThem: function(){
|
101
|
+
// var that = this;
|
102
|
+
// //$.ajax({
|
103
|
+
// // method: 'DELETE',
|
104
|
+
// // url: "/admin/users?multiple_ids=[" + that.deleteList + "]",
|
105
|
+
// // success: function(res){
|
106
|
+
// // that.$el.$remove()
|
107
|
+
// // }
|
108
|
+
// //})
|
109
|
+
// }
|
110
|
+
}
|
111
|
+
});
|
@@ -0,0 +1,48 @@
|
|
1
|
+
//= require animate-css
|
2
|
+
//= require jquery.minicolors
|
3
|
+
//= require admin/codemirror/codemirror
|
4
|
+
//= require_tree ./codemirror/theme
|
5
|
+
//= require_tree ./codemirror/addon
|
6
|
+
//= require keppler_frontend/admin/application
|
7
|
+
//= require keppler_languages/application
|
8
|
+
//= require keppler_capsules/admin/application
|
9
|
+
//= require_self
|
10
|
+
|
11
|
+
// Fonts and icons
|
12
|
+
@import 'fonts-and-icons/fonts';
|
13
|
+
@import 'fonts-and-icons/icons';
|
14
|
+
@import 'fonts-and-icons/boxicons';
|
15
|
+
|
16
|
+
// Libraries and plugins as gems
|
17
|
+
@import 'bourbon';
|
18
|
+
@import 'font-awesome-sprockets';
|
19
|
+
@import 'font-awesome';
|
20
|
+
@import 'bootstrap-sprockets';
|
21
|
+
@import 'bootstrap';
|
22
|
+
@import 'adminlte';
|
23
|
+
@import 'slick';
|
24
|
+
@import 'slick-theme';
|
25
|
+
|
26
|
+
// Utils folder
|
27
|
+
@import 'utils/variables';
|
28
|
+
@import 'utils/mixins';
|
29
|
+
@import 'utils/theme';
|
30
|
+
@import 'utils/base';
|
31
|
+
|
32
|
+
// Vendor folder
|
33
|
+
@import 'vendor/admin-lte/skin-blue';
|
34
|
+
@import 'vendor/sweetalert2/sweetalert2';
|
35
|
+
|
36
|
+
// Bootstrap File Input
|
37
|
+
@import 'bootstrap-file-input/*';
|
38
|
+
|
39
|
+
// Components folder
|
40
|
+
@import 'components/navigation/navbar';
|
41
|
+
@import 'components/navigation/sidebar';
|
42
|
+
@import 'components/navigation/turbolinks';
|
43
|
+
@import 'components/layouts/footer';
|
44
|
+
@import 'components/layouts/settings';
|
45
|
+
@import 'components/paginator/paginator';
|
46
|
+
|
47
|
+
// Page folder
|
48
|
+
@import 'pages/*';
|
@@ -0,0 +1,133 @@
|
|
1
|
+
//colors
|
2
|
+
$zorba: #a2958a !default;
|
3
|
+
$mine-shaft: #333 !default;
|
4
|
+
|
5
|
+
//standard measures
|
6
|
+
$radius: 4px !default;
|
7
|
+
$pad: 5px !default;
|
8
|
+
$border: 1px !default;
|
9
|
+
|
10
|
+
//operations
|
11
|
+
@function multiply($pixels, $multiplier) {
|
12
|
+
@return $pixels * $multiplier;
|
13
|
+
}
|
14
|
+
|
15
|
+
//@extend-elements
|
16
|
+
%set-float-left {
|
17
|
+
float: left;
|
18
|
+
}
|
19
|
+
|
20
|
+
%set-float-right {
|
21
|
+
float: right;
|
22
|
+
}
|
23
|
+
|
24
|
+
%set-text-right {
|
25
|
+
text-align: right;
|
26
|
+
}
|
27
|
+
|
28
|
+
.kv-rtl {
|
29
|
+
direction: rtl;
|
30
|
+
|
31
|
+
.floating-buttons {
|
32
|
+
left: multiply($pad, 2);
|
33
|
+
right: auto;
|
34
|
+
|
35
|
+
.btn-kv {
|
36
|
+
margin-left: 0;
|
37
|
+
margin-right: multiply($pad, .6);
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
.file-caption-icon {
|
42
|
+
left: auto;
|
43
|
+
right: multiply($pad, 1.6);
|
44
|
+
}
|
45
|
+
|
46
|
+
.close {
|
47
|
+
@extend %set-float-left;
|
48
|
+
}
|
49
|
+
|
50
|
+
.file-zoom-dialog {
|
51
|
+
@extend %set-text-right;
|
52
|
+
}
|
53
|
+
|
54
|
+
.file-error-message {
|
55
|
+
pre {
|
56
|
+
@extend %set-text-right;
|
57
|
+
}
|
58
|
+
|
59
|
+
ul {
|
60
|
+
@extend %set-text-right;
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
.file-drop-zone {
|
65
|
+
margin: multiply($pad, 2.4) multiply($pad, 2.4) multiply($pad, 2.4) multiply($pad, 3);
|
66
|
+
}
|
67
|
+
|
68
|
+
.btn-prev {
|
69
|
+
left: auto;
|
70
|
+
right: multiply($pad, .2);
|
71
|
+
}
|
72
|
+
|
73
|
+
.btn-next {
|
74
|
+
left: multiply($pad, .2);
|
75
|
+
right: auto;
|
76
|
+
}
|
77
|
+
|
78
|
+
.kv-zoom-title {
|
79
|
+
direction: ltr;
|
80
|
+
}
|
81
|
+
|
82
|
+
.krajee-default {
|
83
|
+
&.file-preview-frame {
|
84
|
+
@extend %set-float-right;
|
85
|
+
box-shadow: (-$border) $border multiply($border, 5) 0 $zorba;
|
86
|
+
}
|
87
|
+
|
88
|
+
&.file-preview-frame:not(.file-preview-error):hover {
|
89
|
+
box-shadow: multiply($border, -3) multiply($border, 3) multiply($border, 5) 0 $mine-shaft;
|
90
|
+
}
|
91
|
+
|
92
|
+
.file-actions {
|
93
|
+
@extend %set-float-left;
|
94
|
+
}
|
95
|
+
|
96
|
+
.file-other-error {
|
97
|
+
@extend %set-float-left;
|
98
|
+
}
|
99
|
+
|
100
|
+
.file-drag-handle {
|
101
|
+
@extend %set-float-right;
|
102
|
+
}
|
103
|
+
|
104
|
+
.file-upload-indicator {
|
105
|
+
@extend %set-float-right;
|
106
|
+
}
|
107
|
+
}
|
108
|
+
|
109
|
+
.kv-zoom-actions .btn-kv {
|
110
|
+
margin-left: 0;
|
111
|
+
margin-right: multiply($pad, .6);
|
112
|
+
}
|
113
|
+
|
114
|
+
.file-caption.icon-visible .file-caption-name {
|
115
|
+
padding-left: 0;
|
116
|
+
padding-right: multiply($pad, 3);
|
117
|
+
}
|
118
|
+
|
119
|
+
.input-group-btn > .btn:last-child {
|
120
|
+
border-radius: $radius 0 0 $radius;
|
121
|
+
}
|
122
|
+
|
123
|
+
.input-group .form-control:first-child {
|
124
|
+
border-radius: 0 $radius $radius 0;
|
125
|
+
}
|
126
|
+
|
127
|
+
.btn-file [type=file] {
|
128
|
+
background: none repeat scroll 100% 0 transparent;
|
129
|
+
left: auto;
|
130
|
+
right: 0;
|
131
|
+
text-align: left;
|
132
|
+
}
|
133
|
+
}
|
@@ -0,0 +1,760 @@
|
|
1
|
+
//colors
|
2
|
+
$mountain-mist: #999 !default;
|
3
|
+
$apple-blossom: #a94442 !default;
|
4
|
+
$vanilla-ice: #f2dede !default;
|
5
|
+
$oyster-pink: #ebccd1 !default;
|
6
|
+
$gallery: #eee !default;
|
7
|
+
$alto: #ddd !default;
|
8
|
+
$green: #008000 !default;
|
9
|
+
$zorba: #a2958a !default;
|
10
|
+
$mine-shaft: #333 !default;
|
11
|
+
$boston-blue: #428bca !default;
|
12
|
+
$tapa: #777 !default;
|
13
|
+
$black: #000 !default;
|
14
|
+
$mystic: #e1edf7 !default;
|
15
|
+
$perano: #a1abff !default;
|
16
|
+
$silver-chalice: #aaa !default;
|
17
|
+
$viking: #5acde2 !default;
|
18
|
+
$curious-blue: #1c94c4 !default;
|
19
|
+
$link-water: #d9edf7 !default;
|
20
|
+
|
21
|
+
//fonts
|
22
|
+
$font-0: Impact !default;
|
23
|
+
$font-1: Charcoal !default;
|
24
|
+
$font-2: sans-serif !default;
|
25
|
+
$font-3: Menlo !default;
|
26
|
+
$font-4: Monaco !default;
|
27
|
+
$font-5: Consolas !default;
|
28
|
+
$font-6: 'Courier New' !default;
|
29
|
+
$font-7: monospace !default;
|
30
|
+
|
31
|
+
//urls
|
32
|
+
// $url-0: url(../admin/loading.gif) !default;
|
33
|
+
// $url-1: url(../admin/loading-sm.gif) !default;
|
34
|
+
|
35
|
+
//standard measures
|
36
|
+
$radius: 4px !default;
|
37
|
+
$pad: 5px !default;
|
38
|
+
$mar-b: 18px;
|
39
|
+
$border: 1px !default;
|
40
|
+
|
41
|
+
//operations
|
42
|
+
@function multiply($pixels, $multiplier) {
|
43
|
+
@return $pixels * $multiplier;
|
44
|
+
}
|
45
|
+
|
46
|
+
//@extend-elements
|
47
|
+
%set-invisible {
|
48
|
+
height: 0;
|
49
|
+
width: 0;
|
50
|
+
}
|
51
|
+
|
52
|
+
%set-hidden {
|
53
|
+
display: none;
|
54
|
+
}
|
55
|
+
|
56
|
+
%set-absolute {
|
57
|
+
position: absolute;
|
58
|
+
}
|
59
|
+
|
60
|
+
%set-relative {
|
61
|
+
position: relative;
|
62
|
+
}
|
63
|
+
|
64
|
+
%set-text-left {
|
65
|
+
text-align: left;
|
66
|
+
}
|
67
|
+
|
68
|
+
%set-error {
|
69
|
+
@extend %set-text-left;
|
70
|
+
margin: 0;
|
71
|
+
}
|
72
|
+
|
73
|
+
%set-indicator {
|
74
|
+
height: multiply($pad, 3.2);
|
75
|
+
margin: $pad 0 (-$pad);
|
76
|
+
width: multiply($pad, 3.2);
|
77
|
+
}
|
78
|
+
|
79
|
+
%set-progress {
|
80
|
+
font-size: multiply($pad, 1.8);
|
81
|
+
height: multiply($pad, 2.2);
|
82
|
+
line-height: multiply($pad, 2);
|
83
|
+
}
|
84
|
+
|
85
|
+
%set-caption {
|
86
|
+
display: block;
|
87
|
+
height: multiply($pad, 3);
|
88
|
+
margin: auto;
|
89
|
+
overflow: hidden;
|
90
|
+
text-overflow: ellipsis;
|
91
|
+
white-space: nowrap;
|
92
|
+
width: multiply($pad, 32);
|
93
|
+
}
|
94
|
+
|
95
|
+
%set-object {
|
96
|
+
max-height: 100%;
|
97
|
+
max-width: 100%;
|
98
|
+
width: auto;
|
99
|
+
}
|
100
|
+
|
101
|
+
%set-object-video {
|
102
|
+
@extend %set-object;
|
103
|
+
height: 100%;
|
104
|
+
}
|
105
|
+
|
106
|
+
%set-object-default {
|
107
|
+
width: 100%;
|
108
|
+
}
|
109
|
+
|
110
|
+
.kv-hidden {
|
111
|
+
@extend %set-hidden;
|
112
|
+
}
|
113
|
+
|
114
|
+
.hide-content .kv-file-content {
|
115
|
+
@extend %set-hidden;
|
116
|
+
}
|
117
|
+
|
118
|
+
.rotate-2 {
|
119
|
+
transform: rotateY(180deg);
|
120
|
+
}
|
121
|
+
|
122
|
+
.rotate-3 {
|
123
|
+
transform: rotate(180deg);
|
124
|
+
}
|
125
|
+
|
126
|
+
.rotate-4 {
|
127
|
+
transform: rotate(180deg) rotateY(180deg);
|
128
|
+
}
|
129
|
+
|
130
|
+
.rotate-5 {
|
131
|
+
transform: rotate(270deg) rotateY(180deg);
|
132
|
+
}
|
133
|
+
|
134
|
+
.rotate-6 {
|
135
|
+
transform: rotate(90deg);
|
136
|
+
}
|
137
|
+
|
138
|
+
.rotate-7 {
|
139
|
+
transform: rotate(90deg) rotateY(180deg);
|
140
|
+
}
|
141
|
+
|
142
|
+
.rotate-8 {
|
143
|
+
transform: rotate(270deg);
|
144
|
+
}
|
145
|
+
|
146
|
+
.file-input {
|
147
|
+
@extend %set-relative;
|
148
|
+
}
|
149
|
+
|
150
|
+
.file-no-browse {
|
151
|
+
@extend %set-absolute;
|
152
|
+
background: none;
|
153
|
+
border: 0;
|
154
|
+
bottom: 20%;
|
155
|
+
box-shadow: none;
|
156
|
+
font-size: 0;
|
157
|
+
height: 1px;
|
158
|
+
left: 50%;
|
159
|
+
opacity: 0;
|
160
|
+
outline: none;
|
161
|
+
width: 1px;
|
162
|
+
}
|
163
|
+
|
164
|
+
.file-loading {
|
165
|
+
[type=file] {
|
166
|
+
@extend %set-invisible;
|
167
|
+
}
|
168
|
+
|
169
|
+
&::before {
|
170
|
+
@extend %set-relative;
|
171
|
+
// background: transparent $url-0 top left no-repeat;
|
172
|
+
color: $mountain-mist;
|
173
|
+
content: ' Loading...';
|
174
|
+
display: inline-block;
|
175
|
+
font-size: multiply($pad, 2.6);
|
176
|
+
font-variant: small-caps;
|
177
|
+
line-height: multiply($pad, 3.2);
|
178
|
+
padding-left: multiply($pad, 4);
|
179
|
+
}
|
180
|
+
}
|
181
|
+
|
182
|
+
[type=file].file-loading {
|
183
|
+
@extend %set-invisible;
|
184
|
+
}
|
185
|
+
|
186
|
+
.file-object {
|
187
|
+
margin: 0 0 (-$pad);
|
188
|
+
padding: 0;
|
189
|
+
}
|
190
|
+
|
191
|
+
.btn-file {
|
192
|
+
@extend %set-relative;
|
193
|
+
overflow: hidden;
|
194
|
+
|
195
|
+
[type=file] {
|
196
|
+
@extend %set-absolute;
|
197
|
+
background: none repeat scroll 0 0 transparent;
|
198
|
+
cursor: inherit;
|
199
|
+
display: block;
|
200
|
+
left: 0;
|
201
|
+
min-height: 100%;
|
202
|
+
min-width: 100%;
|
203
|
+
opacity: 0;
|
204
|
+
text-align: right;
|
205
|
+
top: 0;
|
206
|
+
}
|
207
|
+
|
208
|
+
::-ms-browse {
|
209
|
+
font-size: multiply($pad, 2000);
|
210
|
+
height: 100%;
|
211
|
+
width: 100%;
|
212
|
+
}
|
213
|
+
}
|
214
|
+
|
215
|
+
.file-caption {
|
216
|
+
@extend %set-relative;
|
217
|
+
|
218
|
+
.file-caption-name {
|
219
|
+
background: none;
|
220
|
+
border: 0;
|
221
|
+
box-shadow: none;
|
222
|
+
margin: 0;
|
223
|
+
outline: none;
|
224
|
+
padding: 0;
|
225
|
+
width: 100%;
|
226
|
+
}
|
227
|
+
|
228
|
+
&.icon-visible {
|
229
|
+
.file-caption-icon {
|
230
|
+
display: inline-block;
|
231
|
+
}
|
232
|
+
|
233
|
+
.file-caption-name {
|
234
|
+
padding-left: multiply($pad, 3);
|
235
|
+
}
|
236
|
+
}
|
237
|
+
}
|
238
|
+
|
239
|
+
.file-caption-icon {
|
240
|
+
@extend %set-hidden;
|
241
|
+
@extend %set-absolute;
|
242
|
+
left: multiply($pad, 1.6);
|
243
|
+
}
|
244
|
+
|
245
|
+
.file-error-message {
|
246
|
+
background-color: $vanilla-ice;
|
247
|
+
border: $border solid $oyster-pink;
|
248
|
+
border-radius: $radius;
|
249
|
+
color: $apple-blossom;
|
250
|
+
margin: $pad;
|
251
|
+
padding: multiply($pad, 3);
|
252
|
+
|
253
|
+
pre {
|
254
|
+
@extend %set-error;
|
255
|
+
margin: $pad 0;
|
256
|
+
}
|
257
|
+
|
258
|
+
ul {
|
259
|
+
@extend %set-error;
|
260
|
+
}
|
261
|
+
}
|
262
|
+
|
263
|
+
.file-caption-disabled {
|
264
|
+
background-color: $gallery;
|
265
|
+
cursor: not-allowed;
|
266
|
+
opacity: 1;
|
267
|
+
}
|
268
|
+
|
269
|
+
.file-preview {
|
270
|
+
@extend %set-relative;
|
271
|
+
border: $border solid $alto;
|
272
|
+
border-radius: multiply($radius, 1.25);
|
273
|
+
margin-bottom: $mar-b;
|
274
|
+
padding: multiply($pad, 1.6);
|
275
|
+
width: 100%;
|
276
|
+
|
277
|
+
.btn-xs {
|
278
|
+
border-radius: multiply($radius, .75);
|
279
|
+
font-size: multiply($pad, 2.4);
|
280
|
+
line-height: 1.5;
|
281
|
+
padding: multiply($pad, .2) $pad;
|
282
|
+
}
|
283
|
+
|
284
|
+
.fileinput-remove {
|
285
|
+
@extend %set-absolute;
|
286
|
+
line-height: multiply($pad, 2);
|
287
|
+
right: multiply($pad, 1);
|
288
|
+
top: multiply($pad, 1);
|
289
|
+
}
|
290
|
+
|
291
|
+
.clickable {
|
292
|
+
cursor: pointer;
|
293
|
+
}
|
294
|
+
}
|
295
|
+
|
296
|
+
.file-preview-image {
|
297
|
+
color: $green;
|
298
|
+
font: multiply($pad, 8) $font-0, $font-1, $font-2;
|
299
|
+
}
|
300
|
+
|
301
|
+
.krajee-default {
|
302
|
+
&.file-preview-frame {
|
303
|
+
@extend %set-relative;
|
304
|
+
border: $border solid $alto;
|
305
|
+
box-shadow: $border $border $pad 0 $zorba;
|
306
|
+
float: left;
|
307
|
+
margin: multiply($pad, 1.6);
|
308
|
+
padding: multiply($pad, 1.2);
|
309
|
+
text-align: center;
|
310
|
+
|
311
|
+
.kv-file-content {
|
312
|
+
height: multiply($pad, 32);
|
313
|
+
width: multiply($pad, 42.6);
|
314
|
+
}
|
315
|
+
|
316
|
+
.file-thumbnail-footer {
|
317
|
+
height: multiply($pad, 14);
|
318
|
+
}
|
319
|
+
|
320
|
+
&:not(.file-preview-error):hover {
|
321
|
+
box-shadow: multiply($pad, .6) multiply($pad, .6) $pad 0 $tapa;
|
322
|
+
}
|
323
|
+
}
|
324
|
+
|
325
|
+
.file-preview-text {
|
326
|
+
border: $border solid $alto;
|
327
|
+
color: $boston-blue;
|
328
|
+
display: block;
|
329
|
+
font-family: $font-3, $font-4, $font-5, $font-6, $font-7;
|
330
|
+
outline: none;
|
331
|
+
padding: multiply($pad, 1.6);
|
332
|
+
resize: none;
|
333
|
+
}
|
334
|
+
|
335
|
+
.file-preview-html {
|
336
|
+
border: $border solid $alto;
|
337
|
+
overflow: auto;
|
338
|
+
padding: multiply($pad, 1.6);
|
339
|
+
}
|
340
|
+
|
341
|
+
.file-actions {
|
342
|
+
@extend %set-text-left;
|
343
|
+
}
|
344
|
+
|
345
|
+
.file-other-error {
|
346
|
+
@extend %set-text-left;
|
347
|
+
}
|
348
|
+
|
349
|
+
.file-other-icon {
|
350
|
+
font-size: 6em;
|
351
|
+
}
|
352
|
+
|
353
|
+
.file-footer-buttons {
|
354
|
+
float: right;
|
355
|
+
}
|
356
|
+
|
357
|
+
.file-footer-caption {
|
358
|
+
color: $tapa;
|
359
|
+
display: block;
|
360
|
+
font-size: multiply($pad, 2.2);
|
361
|
+
margin-bottom: multiply($pad, 3);
|
362
|
+
padding-top: multiply($pad, .8);
|
363
|
+
text-align: center;
|
364
|
+
}
|
365
|
+
|
366
|
+
.file-preview-error {
|
367
|
+
box-shadow: none;
|
368
|
+
opacity: .65;
|
369
|
+
}
|
370
|
+
|
371
|
+
.file-drag-handle {
|
372
|
+
@extend %set-indicator;
|
373
|
+
}
|
374
|
+
|
375
|
+
.file-upload-indicator {
|
376
|
+
@extend %set-indicator;
|
377
|
+
}
|
378
|
+
|
379
|
+
.file-thumb-progress {
|
380
|
+
@extend %set-absolute;
|
381
|
+
height: multiply($pad, 2.2);
|
382
|
+
left: 0;
|
383
|
+
right: 0;
|
384
|
+
top: multiply($pad, 7.4);
|
385
|
+
|
386
|
+
.progress {
|
387
|
+
@extend %set-progress;
|
388
|
+
}
|
389
|
+
|
390
|
+
.progress-bar {
|
391
|
+
@extend %set-progress;
|
392
|
+
}
|
393
|
+
}
|
394
|
+
|
395
|
+
.file-thumbnail-footer {
|
396
|
+
@extend %set-relative;
|
397
|
+
}
|
398
|
+
|
399
|
+
.file-caption-info {
|
400
|
+
@extend %set-caption;
|
401
|
+
}
|
402
|
+
|
403
|
+
.file-size-info {
|
404
|
+
@extend %set-caption;
|
405
|
+
}
|
406
|
+
|
407
|
+
&.kvsortable-ghost {
|
408
|
+
background: $mystic;
|
409
|
+
border: multiply($border, 2) solid $perano;
|
410
|
+
}
|
411
|
+
|
412
|
+
.file-preview-other:hover {
|
413
|
+
opacity: .8;
|
414
|
+
}
|
415
|
+
|
416
|
+
.file-preview-frame:not(.file-preview-error) .file-footer-caption:hover {
|
417
|
+
color: $black;
|
418
|
+
}
|
419
|
+
}
|
420
|
+
|
421
|
+
.kv-upload-progress {
|
422
|
+
.progress {
|
423
|
+
height: multiply($pad, 4);
|
424
|
+
line-height: multiply($pad, 4);
|
425
|
+
margin: multiply($pad, 2) 0;
|
426
|
+
overflow: hidden;
|
427
|
+
}
|
428
|
+
|
429
|
+
.progress-bar {
|
430
|
+
height: multiply($pad, 4);
|
431
|
+
line-height: multiply($pad, 4);
|
432
|
+
}
|
433
|
+
}
|
434
|
+
|
435
|
+
.file-zoom-dialog {
|
436
|
+
.file-other-icon {
|
437
|
+
//noinspection CssOverwrittenProperties
|
438
|
+
// font-size: 22em;
|
439
|
+
//noinspection CssOverwrittenProperties
|
440
|
+
font-size: 50vmin;
|
441
|
+
}
|
442
|
+
|
443
|
+
.modal-dialog {
|
444
|
+
@extend %set-relative;
|
445
|
+
width: auto;
|
446
|
+
}
|
447
|
+
|
448
|
+
.modal-header {
|
449
|
+
align-items: center;
|
450
|
+
display: flex;
|
451
|
+
justify-content: space-between;
|
452
|
+
|
453
|
+
&::before {
|
454
|
+
@extend %set-hidden;
|
455
|
+
}
|
456
|
+
|
457
|
+
&::after {
|
458
|
+
@extend %set-hidden;
|
459
|
+
}
|
460
|
+
}
|
461
|
+
|
462
|
+
.btn-navigate {
|
463
|
+
@extend %set-absolute;
|
464
|
+
background: transparent;
|
465
|
+
color: $curious-blue;
|
466
|
+
font-size: 4em;
|
467
|
+
margin: 0;
|
468
|
+
opacity: .7;
|
469
|
+
outline: none;
|
470
|
+
padding: 0;
|
471
|
+
text-decoration: none;
|
472
|
+
top: 45%;
|
473
|
+
|
474
|
+
&:not([disabled]):hover {
|
475
|
+
box-shadow: none;
|
476
|
+
opacity: .6;
|
477
|
+
outline: none;
|
478
|
+
}
|
479
|
+
}
|
480
|
+
|
481
|
+
.floating-buttons {
|
482
|
+
@extend %set-absolute;
|
483
|
+
right: multiply($pad, 2);
|
484
|
+
top: $pad;
|
485
|
+
}
|
486
|
+
|
487
|
+
.btn-navigate[disabled] {
|
488
|
+
opacity: .3;
|
489
|
+
}
|
490
|
+
|
491
|
+
.btn-prev {
|
492
|
+
left: multiply($pad, .2);
|
493
|
+
}
|
494
|
+
|
495
|
+
.btn-next {
|
496
|
+
right: multiply($pad, .2);
|
497
|
+
}
|
498
|
+
|
499
|
+
.kv-zoom-title {
|
500
|
+
color: $mountain-mist;
|
501
|
+
font-weight: 300;
|
502
|
+
max-width: 50%;
|
503
|
+
overflow: hidden;
|
504
|
+
text-overflow: ellipsis;
|
505
|
+
white-space: nowrap;
|
506
|
+
}
|
507
|
+
}
|
508
|
+
|
509
|
+
.file-input-new {
|
510
|
+
.file-preview {
|
511
|
+
@extend %set-hidden;
|
512
|
+
}
|
513
|
+
|
514
|
+
.close {
|
515
|
+
@extend %set-hidden;
|
516
|
+
}
|
517
|
+
|
518
|
+
.glyphicon-file {
|
519
|
+
@extend %set-hidden;
|
520
|
+
}
|
521
|
+
|
522
|
+
.fileinput-remove-button {
|
523
|
+
@extend %set-hidden;
|
524
|
+
}
|
525
|
+
|
526
|
+
.fileinput-upload-button {
|
527
|
+
@extend %set-hidden;
|
528
|
+
}
|
529
|
+
|
530
|
+
.no-browse {
|
531
|
+
.input-group-btn {
|
532
|
+
@extend %set-hidden;
|
533
|
+
}
|
534
|
+
|
535
|
+
.form-control {
|
536
|
+
border-bottom-right-radius: $radius;
|
537
|
+
border-top-right-radius: $radius;
|
538
|
+
}
|
539
|
+
}
|
540
|
+
}
|
541
|
+
|
542
|
+
.file-input-ajax-new {
|
543
|
+
.fileinput-remove-button {
|
544
|
+
@extend %set-hidden;
|
545
|
+
}
|
546
|
+
|
547
|
+
.fileinput-upload-button {
|
548
|
+
@extend %set-hidden;
|
549
|
+
}
|
550
|
+
|
551
|
+
.no-browse {
|
552
|
+
.input-group-btn {
|
553
|
+
@extend %set-hidden;
|
554
|
+
}
|
555
|
+
|
556
|
+
.form-control {
|
557
|
+
border-bottom-right-radius: $radius;
|
558
|
+
border-top-right-radius: $radius;
|
559
|
+
}
|
560
|
+
}
|
561
|
+
}
|
562
|
+
|
563
|
+
.file-caption-main {
|
564
|
+
width: 100%;
|
565
|
+
}
|
566
|
+
|
567
|
+
.file-thumb-loading {
|
568
|
+
// background: transparent $url-0 no-repeat scroll center center content-box;
|
569
|
+
}
|
570
|
+
|
571
|
+
.file-drop-zone {
|
572
|
+
border: $border dashed $silver-chalice;
|
573
|
+
border-radius: $radius;
|
574
|
+
height: 100%;
|
575
|
+
margin: multiply($pad, 2.4) multiply($pad, 3) multiply($pad, 2.4) multiply($pad, 2.4);
|
576
|
+
padding: $pad;
|
577
|
+
text-align: center;
|
578
|
+
vertical-align: middle;
|
579
|
+
|
580
|
+
&.clickable {
|
581
|
+
&:hover {
|
582
|
+
border: multiply($border, 2) dashed $mountain-mist;
|
583
|
+
}
|
584
|
+
|
585
|
+
&:focus {
|
586
|
+
border: multiply($border, 2) solid $viking;
|
587
|
+
}
|
588
|
+
}
|
589
|
+
|
590
|
+
.file-preview-thumbnails {
|
591
|
+
cursor: default;
|
592
|
+
}
|
593
|
+
}
|
594
|
+
|
595
|
+
.file-drop-zone-title {
|
596
|
+
color: $silver-chalice;
|
597
|
+
cursor: default;
|
598
|
+
font-size: 1.6em;
|
599
|
+
padding: multiply($pad, 17) multiply($pad, 2);
|
600
|
+
}
|
601
|
+
|
602
|
+
.file-highlighted {
|
603
|
+
background-color: $gallery;
|
604
|
+
border: multiply($border, 2) dashed $mountain-mist;
|
605
|
+
}
|
606
|
+
|
607
|
+
.file-uploading {
|
608
|
+
// background: $url-1 no-repeat center bottom multiply($pad, 2);
|
609
|
+
opacity: .65;
|
610
|
+
}
|
611
|
+
|
612
|
+
@media(min-width: 576px) {
|
613
|
+
.file-zoom-dialog .modal-dialog {
|
614
|
+
max-width: 500px;
|
615
|
+
}
|
616
|
+
}
|
617
|
+
|
618
|
+
@media(min-width: 992px) {
|
619
|
+
.file-zoom-dialog .modal-lg {
|
620
|
+
max-width: 800px;
|
621
|
+
}
|
622
|
+
}
|
623
|
+
|
624
|
+
.file-zoom-fullscreen {
|
625
|
+
&.modal {
|
626
|
+
bottom: 0;
|
627
|
+
left: 0;
|
628
|
+
position: fixed;
|
629
|
+
right: 0;
|
630
|
+
top: 0;
|
631
|
+
}
|
632
|
+
|
633
|
+
.modal-dialog {
|
634
|
+
height: 100%;
|
635
|
+
margin: 0;
|
636
|
+
max-height: 100%;
|
637
|
+
max-width: 100%;
|
638
|
+
padding: 0;
|
639
|
+
position: fixed;
|
640
|
+
width: 100%;
|
641
|
+
}
|
642
|
+
|
643
|
+
.modal-content {
|
644
|
+
border-radius: 0;
|
645
|
+
box-shadow: none;
|
646
|
+
}
|
647
|
+
|
648
|
+
.modal-body {
|
649
|
+
overflow-y: auto;
|
650
|
+
}
|
651
|
+
}
|
652
|
+
|
653
|
+
.floating-buttons {
|
654
|
+
z-index: 3000;
|
655
|
+
|
656
|
+
.btn-kv {
|
657
|
+
margin-left: multiply($pad, .6);
|
658
|
+
z-index: 3000;
|
659
|
+
}
|
660
|
+
}
|
661
|
+
|
662
|
+
.file-zoom-content {
|
663
|
+
height: multiply($pad, 96);
|
664
|
+
text-align: center;
|
665
|
+
|
666
|
+
.file-preview-image {
|
667
|
+
max-height: 100%;
|
668
|
+
}
|
669
|
+
|
670
|
+
.file-preview-video {
|
671
|
+
max-height: 100%;
|
672
|
+
}
|
673
|
+
|
674
|
+
.is-portrait-gt4 {
|
675
|
+
margin-top: multiply($pad, 12);
|
676
|
+
}
|
677
|
+
|
678
|
+
> .file-object {
|
679
|
+
&.type-image {
|
680
|
+
@extend %set-object;
|
681
|
+
height: auto;
|
682
|
+
min-height: inherit;
|
683
|
+
}
|
684
|
+
|
685
|
+
&.type-video {
|
686
|
+
@extend %set-object-video;
|
687
|
+
}
|
688
|
+
|
689
|
+
&.type-flash {
|
690
|
+
@extend %set-object-video;
|
691
|
+
}
|
692
|
+
|
693
|
+
&.type-audio {
|
694
|
+
height: multiply($pad, 6);
|
695
|
+
width: auto;
|
696
|
+
}
|
697
|
+
|
698
|
+
&.type-pdf {
|
699
|
+
@extend %set-object-default;
|
700
|
+
}
|
701
|
+
|
702
|
+
&.type-html {
|
703
|
+
@extend %set-object-default;
|
704
|
+
}
|
705
|
+
|
706
|
+
&.type-text {
|
707
|
+
@extend %set-object-default;
|
708
|
+
}
|
709
|
+
|
710
|
+
&.type-default {
|
711
|
+
@extend %set-object-default;
|
712
|
+
}
|
713
|
+
}
|
714
|
+
}
|
715
|
+
|
716
|
+
@media screen and(max-width: 767px) {
|
717
|
+
.file-preview-thumbnails {
|
718
|
+
align-items: center;
|
719
|
+
display: flex;
|
720
|
+
flex-direction: column;
|
721
|
+
justify-content: center;
|
722
|
+
}
|
723
|
+
|
724
|
+
.file-zoom-dialog .modal-header {
|
725
|
+
flex-direction: column;
|
726
|
+
}
|
727
|
+
}
|
728
|
+
|
729
|
+
@media screen and(max-width: 350px) {
|
730
|
+
.krajee-default.file-preview-frame .kv-file-content {
|
731
|
+
width: multiply($pad, 32);
|
732
|
+
}
|
733
|
+
}
|
734
|
+
|
735
|
+
.file-loading[dir=rtl]::before {
|
736
|
+
// background: transparent $url-0 top right no-repeat;
|
737
|
+
padding-left: 0;
|
738
|
+
padding-right: multiply($pad, 4);
|
739
|
+
}
|
740
|
+
|
741
|
+
.file-sortable .file-drag-handle {
|
742
|
+
cursor: move;
|
743
|
+
opacity: 1;
|
744
|
+
|
745
|
+
&:hover {
|
746
|
+
opacity: .7;
|
747
|
+
}
|
748
|
+
}
|
749
|
+
|
750
|
+
.clickable .file-drop-zone-title {
|
751
|
+
cursor: pointer;
|
752
|
+
}
|
753
|
+
|
754
|
+
.kv-zoom-actions .btn-kv {
|
755
|
+
margin-left: multiply($pad, .6);
|
756
|
+
}
|
757
|
+
|
758
|
+
.file-preview-initial.sortable-chosen {
|
759
|
+
background-color: $link-water;
|
760
|
+
}
|