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,269 @@
|
|
1
|
+
$black: #000;
|
2
|
+
$white: #fff;
|
3
|
+
$ccc: #ccc;
|
4
|
+
$transparent-black: rgba(0, 0, 0, .2);
|
5
|
+
|
6
|
+
.colorpicker-saturation {
|
7
|
+
background-image: url('data:image/png;base64,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');
|
8
|
+
cursor: crosshair;
|
9
|
+
float: left;
|
10
|
+
height: 100;
|
11
|
+
width: 100;
|
12
|
+
|
13
|
+
i {
|
14
|
+
border: 1px solid $black;
|
15
|
+
border-radius: 5px;
|
16
|
+
display: block;
|
17
|
+
height: 5px;
|
18
|
+
left: 0;
|
19
|
+
margin: -4px 0 0 -4px;
|
20
|
+
position: absolute;
|
21
|
+
top: 0;
|
22
|
+
width: 5px;
|
23
|
+
|
24
|
+
b {
|
25
|
+
border: 1px solid $white;
|
26
|
+
border-radius: 5px;
|
27
|
+
display: block;
|
28
|
+
height: 5px;
|
29
|
+
width: 5px;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
.colorpicker-hue,
|
35
|
+
.colorpicker-alpha {
|
36
|
+
cursor: row-resize;
|
37
|
+
float: left;
|
38
|
+
height: 100;
|
39
|
+
margin-bottom: 4px;
|
40
|
+
margin-left: 4px;
|
41
|
+
width: 15px;
|
42
|
+
|
43
|
+
i {
|
44
|
+
background: $black;
|
45
|
+
border-top: 1px solid $white;
|
46
|
+
display: block;
|
47
|
+
height: 1px;
|
48
|
+
left: 0;
|
49
|
+
margin-top: -1px;
|
50
|
+
position: absolute;
|
51
|
+
top: 0;
|
52
|
+
width: 100%;
|
53
|
+
}
|
54
|
+
}
|
55
|
+
|
56
|
+
.colorpicker-hue {
|
57
|
+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAABkCAMAAABw8qpSAAABLFBMVEXqFBb/ABH/ACL/ADH/AEH/AFD/AGD/AG7/AH7/AI3/AJ3/AKz/ALz/AMr/ANv/AOr/APr2AP/mAP/XAP/HAP+4AP+oAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8BAv8AEP8AH/8AL/8APv8ATv8AXP8Abf8Ae/8Ai/8Amv8Aqv8AuP8Ayf8A1/8A5/8A9/8A//gA/+kA/9kA/8oA/7oA/6wA/5sA/40A/30A/24A/14A/1AA/z8A/zEA/yEA/xEB/wMN/wAd/wAs/wA8/wBK/wBb/wBp/wB5/wCI/wCY/wCm/wC3/wDF/wDV/wDk/wD1/wD/+gD/7AD/3AD/zAD/vgD/rQD/nwD/jgD/gAD/cAD/YgD/UQD/QwD/MgD/JAD/FAD4Eg42qAedAAAAh0lEQVR4XgXAg3EDAAAAwI9to7Zt27a1/w49BASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTS1tHXo1KVbj159+g0YNGTYiFFjxk2YNGXajFlz5i1YtGTZilVr1m3YtGXbjl179h04dOTYiVNnzl24dOXajVt37j149OTZi1dv3n349OXbj19//wOxE1dQ8reGAAAAAElFTkSuQmCC');
|
58
|
+
}
|
59
|
+
|
60
|
+
.colorpicker-alpha {
|
61
|
+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAQAAAAVxWkcAAABr0lEQVR4Xo2VwU0DQQxF7dmRuNIFlzlSAR3QAaXQQdIBJVABFXDcOVAAd67cjJLR07dkhcSrkZKfb/t7bG88rFo3B5gZPMNycItu2xloGV7MWHzM9zuzFWCkmA0nK6AszCUJDW6+mG6R03ncw5v8EMTEvZ2O3AliYjpslblc0RF9LmZYWxURU6aKytWZYsoWCAe+xwOZp1GsEukGiIkYxcQCHck99+gRgB7JncyIB5SGEhP3Yh5P6JwX+u6AnYot104d8DJT7uH7M9JH6OZbimj0vfMVaYnJIZFJDBW9kHlerL2C6JV4mSt7uuo2N57RxnZ+usQjn0R1jwBJBrNO3evJpVYUWsJ/E3UiXRlv24/7YZ04xmEdWlzcKS+B/eapeyMvFd2k0+hRk/T0AmTW8h69s2sjYMsdPntECiILhAeIMZAeH4QvUwfn6ijC0tTV+fT9ky8jM9nK2g7Ly1VjSpKYq6IvsAm7MtNu1orEqa/K3KNvgMFdhfquPfJmp2dbh0/8Gzb6Y22ViaNr6n5410zXdngVhbu6XqdOtWOuin5hjABGp4a2uotZ71MVCfwDBt2/v37yo6AAAAAASUVORK5CYII=');
|
62
|
+
display: none;
|
63
|
+
}
|
64
|
+
|
65
|
+
.colorpicker-saturation,
|
66
|
+
.colorpicker-hue,
|
67
|
+
.colorpicker-alpha {
|
68
|
+
background-size: contain;
|
69
|
+
}
|
70
|
+
|
71
|
+
.colorpicker {
|
72
|
+
border-radius: 4px;
|
73
|
+
margin-top: 1px;
|
74
|
+
min-width: 130;
|
75
|
+
padding: 4px;
|
76
|
+
z-index: 2500;
|
77
|
+
|
78
|
+
&::before,
|
79
|
+
&::after {
|
80
|
+
content: '';
|
81
|
+
display: table;
|
82
|
+
line-height: 0;
|
83
|
+
}
|
84
|
+
|
85
|
+
&::before {
|
86
|
+
border-bottom: 7px solid $ccc;
|
87
|
+
border-bottom-color: $transparent-black;
|
88
|
+
border-left: 7px solid transparent;
|
89
|
+
border-right: 7px solid transparent;
|
90
|
+
content: '';
|
91
|
+
display: inline-block;
|
92
|
+
left: 6px;
|
93
|
+
position: absolute;
|
94
|
+
top: -7px;
|
95
|
+
}
|
96
|
+
|
97
|
+
&::after {
|
98
|
+
border-bottom: 6px solid $white;
|
99
|
+
border-left: 6px solid transparent;
|
100
|
+
border-right: 6px solid transparent;
|
101
|
+
clear: both;
|
102
|
+
content: '';
|
103
|
+
display: inline-block;
|
104
|
+
left: 7px;
|
105
|
+
position: absolute;
|
106
|
+
top: -6px;
|
107
|
+
}
|
108
|
+
|
109
|
+
div {
|
110
|
+
position: relative;
|
111
|
+
}
|
112
|
+
|
113
|
+
&.colorpicker-with-alpha {
|
114
|
+
min-width: 140;
|
115
|
+
|
116
|
+
.colorpicker-alpha {
|
117
|
+
display: block;
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
&.colorpicker-inline {
|
122
|
+
display: inline-block;
|
123
|
+
float: none;
|
124
|
+
position: relative;
|
125
|
+
z-index: auto;
|
126
|
+
}
|
127
|
+
|
128
|
+
&.colorpicker-horizontal {
|
129
|
+
height: auto;
|
130
|
+
min-width: 110;
|
131
|
+
width: 110;
|
132
|
+
|
133
|
+
.colorpicker-saturation {
|
134
|
+
margin-bottom: 4px;
|
135
|
+
}
|
136
|
+
|
137
|
+
.colorpicker-color {
|
138
|
+
width: 100;
|
139
|
+
}
|
140
|
+
|
141
|
+
.colorpicker-hue,
|
142
|
+
.colorpicker-alpha {
|
143
|
+
cursor: col-resize;
|
144
|
+
float: left;
|
145
|
+
height: 15px;
|
146
|
+
margin-bottom: 4px;
|
147
|
+
margin-left: 0;
|
148
|
+
width: 100;
|
149
|
+
}
|
150
|
+
|
151
|
+
.colorpicker-hue i,
|
152
|
+
.colorpicker-alpha i {
|
153
|
+
background: $white;
|
154
|
+
border: 0;
|
155
|
+
display: block;
|
156
|
+
height: 15px;
|
157
|
+
left: 0;
|
158
|
+
margin-top: 0;
|
159
|
+
position: absolute;
|
160
|
+
top: 0;
|
161
|
+
width: 1px;
|
162
|
+
}
|
163
|
+
|
164
|
+
.colorpicker-hue {
|
165
|
+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAABCAMAAAAfBfuPAAABLFBMVEXqFBb/ABH/ACL/ADH/AEH/AFD/AGD/AG7/AH7/AI3/AJ3/AKz/ALz/AMr/ANv/AOr/APr2AP/mAP/XAP/HAP+4AP+oAP+aAP+JAP97AP9rAP9cAP9MAP8+AP8tAP8fAP8PAP8BAv8AEP8AH/8AL/8APv8ATv8AXP8Abf8Ae/8Ai/8Amv8Aqv8AuP8Ayf8A1/8A5/8A9/8A//gA/+kA/9kA/8oA/7oA/6wA/5sA/40A/30A/24A/14A/1AA/z8A/zEA/yEA/xEB/wMN/wAd/wAs/wA8/wBK/wBb/wBp/wB5/wCI/wCY/wCm/wC3/wDF/wDV/wDk/wD1/wD/+gD/7AD/3AD/zAD/vgD/rQD/nwD/jgD/gAD/cAD/YgD/UQD/QwD/MgD/JAD/FAD4Eg42qAedAAAAbUlEQVR4XgXAghEDsbxtlrZt27ax/w49ACAYQTGcICmaYTleECVZUTXdMC1Wm93hdLk9Xp8/EAyFI9FYPJFMpTPZXL5QLJUr1Vq90Wy1O91efzAcjSfT2XyxXK03293+cDydL9fb/fF8vT/f3x+LfRNXARMbCAAAAABJRU5ErkJggg==');
|
166
|
+
}
|
167
|
+
|
168
|
+
.colorpicker-alpha {
|
169
|
+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAKCAQAAADoFTP1AAAB9ElEQVR4XoWTQW4VMRBEu9qWEimL7DhEMp8NF+ASnJJLcAQgE1bcgBUSkYKUuHCrZ9pjeqSU5Yn9LPu7umJQBIIv+k7vIOrtK66L4lmr3pVOrOv3otp619KZ0/KjdNI79L52Uo09FBQWrU0vfe5trezU+hLsoUKd3Repovte+0vbq/7Lj5XbaHECKasR9G4MPlbp+gzZxd6koPEJCkAYC5SjcOTAIIOK90Dja1IfIZ8Z+zAY9jm3b5Ia+MT5sFcqRJrR2AYYA8Kua5BzYRrFPNmD4PQMegGJMOffJJUsWiI3nCHZZjInNdffLWOufzbc3JaboCAVxwmnRHbhLSPwRJ4wU0BRSc6HkECYYVw95nMKgJOcylxrJttE5Ibzf9Xq9GPvP+WX3MiV/MGHfRu/SentRQrfG1GzsIrytdNXucSRKxQNIGHM9YhGFQJcdjNcBZvfJayuYe4Sia1CzwW+19mWOhe37HsxJWKwbu/jluEU15QzAQjAqCEbhMJc78GYV2E0kooHDubUImWkTOhGpgv8PoT8DJG/bzxna4BZ0eOFSOaLADGeSpFsg5AzeaDZIDQQXjZ4y/8ryfzUXBwdELRjTjCNvOeT0rNlrJz90vwy6N9pXXQEluX0inElpPWokSdiLCfiNJJjMKQ8Qsh8GEKQKMo/eiHrNbI9UksAAAAASUVORK5CYII=');
|
170
|
+
}
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
174
|
+
.colorpicker-color {
|
175
|
+
background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAABkCAQAAAAVxWkcAAABr0lEQVR4Xo2VwU0DQQxF7dmRuNIFlzlSAR3QAaXQQdIBJVABFXDcOVAAd67cjJLR07dkhcSrkZKfb/t7bG88rFo3B5gZPMNycItu2xloGV7MWHzM9zuzFWCkmA0nK6AszCUJDW6+mG6R03ncw5v8EMTEvZ2O3AliYjpslblc0RF9LmZYWxURU6aKytWZYsoWCAe+xwOZp1GsEukGiIkYxcQCHck99+gRgB7JncyIB5SGEhP3Yh5P6JwX+u6AnYot104d8DJT7uH7M9JH6OZbimj0vfMVaYnJIZFJDBW9kHlerL2C6JV4mSt7uuo2N57RxnZ+usQjn0R1jwBJBrNO3evJpVYUWsJ/E3UiXRlv24/7YZ04xmEdWlzcKS+B/eapeyMvFd2k0+hRk/T0AmTW8h69s2sjYMsdPntECiILhAeIMZAeH4QvUwfn6ijC0tTV+fT9ky8jM9nK2g7Ly1VjSpKYq6IvsAm7MtNu1orEqa/K3KNvgMFdhfquPfJmp2dbh0/8Gzb6Y22ViaNr6n5410zXdngVhbu6XqdOtWOuin5hjABGp4a2uotZ71MVCfwDBt2/v37yo6AAAAAASUVORK5CYII=');
|
176
|
+
background-position: 0 100%;
|
177
|
+
clear: both;
|
178
|
+
height: 10;
|
179
|
+
margin-top: 5px;
|
180
|
+
|
181
|
+
div {
|
182
|
+
height: 10;
|
183
|
+
}
|
184
|
+
}
|
185
|
+
|
186
|
+
.colorpicker-selectors {
|
187
|
+
clear: both;
|
188
|
+
display: none;
|
189
|
+
height: 10;
|
190
|
+
margin-top: 5px;
|
191
|
+
|
192
|
+
i {
|
193
|
+
cursor: pointer;
|
194
|
+
float: left;
|
195
|
+
height: 10;
|
196
|
+
width: 10;
|
197
|
+
|
198
|
+
+ i {
|
199
|
+
margin-left: 3px;
|
200
|
+
}
|
201
|
+
}
|
202
|
+
}
|
203
|
+
|
204
|
+
.colorpicker-element .input-group-addon i,
|
205
|
+
.colorpicker-element .add-on i {
|
206
|
+
cursor: pointer;
|
207
|
+
display: inline-block;
|
208
|
+
height: 16px;
|
209
|
+
vertical-align: text-top;
|
210
|
+
width: 16px;
|
211
|
+
}
|
212
|
+
|
213
|
+
.colorpicker-right::before {
|
214
|
+
left: auto;
|
215
|
+
right: 6px;
|
216
|
+
}
|
217
|
+
|
218
|
+
.colorpicker-right::after {
|
219
|
+
left: auto;
|
220
|
+
right: 7px;
|
221
|
+
}
|
222
|
+
|
223
|
+
.colorpicker-no-arrow::before {
|
224
|
+
border-left: 0;
|
225
|
+
border-right: 0;
|
226
|
+
}
|
227
|
+
|
228
|
+
.colorpicker-no-arrow::after {
|
229
|
+
border-left: 0;
|
230
|
+
border-right: 0;
|
231
|
+
}
|
232
|
+
|
233
|
+
.colorpicker.colorpicker-visible,
|
234
|
+
.colorpicker-alpha.colorpicker-visible,
|
235
|
+
.colorpicker-saturation.colorpicker-visible,
|
236
|
+
.colorpicker-hue.colorpicker-visible,
|
237
|
+
.colorpicker-selectors.colorpicker-visible {
|
238
|
+
display: block;
|
239
|
+
}
|
240
|
+
|
241
|
+
.colorpicker.colorpicker-hidden,
|
242
|
+
.colorpicker-alpha.colorpicker-hidden,
|
243
|
+
.colorpicker-saturation.colorpicker-hidden,
|
244
|
+
.colorpicker-hue.colorpicker-hidden,
|
245
|
+
.colorpicker-selectors.colorpicker-hidden {
|
246
|
+
display: none;
|
247
|
+
}
|
248
|
+
|
249
|
+
.colorpicker-inline.colorpicker-visible {
|
250
|
+
display: inline-block;
|
251
|
+
}
|
252
|
+
|
253
|
+
.colorpicker-2x {
|
254
|
+
.colorpicker-saturation {
|
255
|
+
height: 200;
|
256
|
+
width: 200;
|
257
|
+
}
|
258
|
+
|
259
|
+
.colorpicker-hue,
|
260
|
+
.colorpicker-alpha {
|
261
|
+
height: 200;
|
262
|
+
width: 30;
|
263
|
+
}
|
264
|
+
|
265
|
+
.colorpicker-color,
|
266
|
+
.colorpicker-color div {
|
267
|
+
height: 30;
|
268
|
+
}
|
269
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
.customize-index {
|
2
|
+
padding: 2rem;
|
3
|
+
padding-top: 20px;
|
4
|
+
|
5
|
+
.status {
|
6
|
+
padding-right: 50px;
|
7
|
+
}
|
8
|
+
}
|
9
|
+
|
10
|
+
.iframe-body {
|
11
|
+
height: 325px;
|
12
|
+
margin: 0 auto;
|
13
|
+
overflow: hidden;
|
14
|
+
|
15
|
+
iframe {
|
16
|
+
height: 250%;
|
17
|
+
transform: scale(.4);
|
18
|
+
transform-origin: 0 0;
|
19
|
+
width: 250%;
|
20
|
+
zoom: 1.8;
|
21
|
+
}
|
22
|
+
}
|
@@ -0,0 +1,1086 @@
|
|
1
|
+
|
2
|
+
.ui-helper-hidden {
|
3
|
+
display: none;
|
4
|
+
}
|
5
|
+
|
6
|
+
.ui-helper-hidden-accessible {
|
7
|
+
border: 0;
|
8
|
+
clip: rect(0 0 0 0);
|
9
|
+
height: 1px;
|
10
|
+
margin: -1px;
|
11
|
+
overflow: hidden;
|
12
|
+
padding: 0;
|
13
|
+
position: absolute;
|
14
|
+
width: 1px;
|
15
|
+
}
|
16
|
+
|
17
|
+
.ui-helper-reset {
|
18
|
+
border: 0;
|
19
|
+
font-size: 100%;
|
20
|
+
line-height: 1.3;
|
21
|
+
list-style: none;
|
22
|
+
margin: 0;
|
23
|
+
outline: 0;
|
24
|
+
padding: 0;
|
25
|
+
text-decoration: none;
|
26
|
+
}
|
27
|
+
|
28
|
+
.ui-helper-clearfix::before,
|
29
|
+
.ui-helper-clearfix::after {
|
30
|
+
border-collapse: collapse;
|
31
|
+
content: '';
|
32
|
+
display: table;
|
33
|
+
}
|
34
|
+
|
35
|
+
.ui-helper-clearfix::after {
|
36
|
+
clear: both;
|
37
|
+
}
|
38
|
+
|
39
|
+
.ui-helper-zfix {
|
40
|
+
filter: alpha(Opacity = 0); // support: IE8
|
41
|
+
height: 100%;
|
42
|
+
left: 0;
|
43
|
+
opacity: 0;
|
44
|
+
position: absolute;
|
45
|
+
top: 0;
|
46
|
+
width: 100%;
|
47
|
+
}
|
48
|
+
|
49
|
+
.ui-front {
|
50
|
+
z-index: 100;
|
51
|
+
}
|
52
|
+
|
53
|
+
|
54
|
+
// Interaction Cues
|
55
|
+
.ui-state-disabled {
|
56
|
+
cursor: default;
|
57
|
+
pointer-events: none;
|
58
|
+
}
|
59
|
+
|
60
|
+
// Icons
|
61
|
+
.ui-icon {
|
62
|
+
background-repeat: no-repeat;
|
63
|
+
display: inline-block;
|
64
|
+
margin-top: -.25em;
|
65
|
+
overflow: hidden;
|
66
|
+
position: relative;
|
67
|
+
text-indent: -99999px;
|
68
|
+
vertical-align: middle;
|
69
|
+
}
|
70
|
+
|
71
|
+
.ui-widget-icon-block {
|
72
|
+
display: block;
|
73
|
+
left: 50%;
|
74
|
+
margin-left: -8px;
|
75
|
+
}
|
76
|
+
|
77
|
+
// Misc visuals
|
78
|
+
|
79
|
+
// Overlays
|
80
|
+
.ui-widget-overlay {
|
81
|
+
height: 100%;
|
82
|
+
left: 0;
|
83
|
+
position: fixed;
|
84
|
+
top: 0;
|
85
|
+
width: 100%;
|
86
|
+
}
|
87
|
+
|
88
|
+
.ui-accordion .ui-accordion-header {
|
89
|
+
cursor: pointer;
|
90
|
+
display: block;
|
91
|
+
font-size: 100%;
|
92
|
+
margin: 2px 0 0;
|
93
|
+
padding: .5em .5em .5em .7em;
|
94
|
+
position: relative;
|
95
|
+
}
|
96
|
+
|
97
|
+
.ui-accordion .ui-accordion-content {
|
98
|
+
border-top: 0;
|
99
|
+
overflow: auto;
|
100
|
+
padding: 1em 2.2em;
|
101
|
+
}
|
102
|
+
|
103
|
+
.ui-autocomplete {
|
104
|
+
cursor: default;
|
105
|
+
left: 0;
|
106
|
+
position: absolute;
|
107
|
+
top: 0;
|
108
|
+
}
|
109
|
+
|
110
|
+
.ui-menu {
|
111
|
+
display: block;
|
112
|
+
list-style: none;
|
113
|
+
margin: 0;
|
114
|
+
outline: 0;
|
115
|
+
padding: 0;
|
116
|
+
|
117
|
+
.ui-menu {
|
118
|
+
position: absolute;
|
119
|
+
}
|
120
|
+
|
121
|
+
.ui-menu-item {
|
122
|
+
cursor: pointer;
|
123
|
+
list-style-image: url('data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7');
|
124
|
+
margin: 0;
|
125
|
+
// support: IE10, see #8844
|
126
|
+
}
|
127
|
+
|
128
|
+
.ui-menu-item-wrapper {
|
129
|
+
padding: 3px 1em 3px .4em; // padding-left: 2rem
|
130
|
+
position: relative;
|
131
|
+
}
|
132
|
+
|
133
|
+
.ui-menu-divider {
|
134
|
+
border-width: 1px 0 0;
|
135
|
+
font-size: 0;
|
136
|
+
height: 0;
|
137
|
+
line-height: 0;
|
138
|
+
margin: 5px 0;
|
139
|
+
}
|
140
|
+
|
141
|
+
.ui-state-focus,
|
142
|
+
.ui-state-active {
|
143
|
+
margin: -1px;
|
144
|
+
}
|
145
|
+
|
146
|
+
.ui-icon {
|
147
|
+
bottom: 0;
|
148
|
+
left: .2em;
|
149
|
+
margin: auto 0;
|
150
|
+
position: absolute;
|
151
|
+
top: 0;
|
152
|
+
}
|
153
|
+
|
154
|
+
.ui-menu-icon {
|
155
|
+
left: auto;
|
156
|
+
right: 0;
|
157
|
+
}
|
158
|
+
}
|
159
|
+
|
160
|
+
// icon support
|
161
|
+
.ui-menu-icons {
|
162
|
+
position: relative;
|
163
|
+
}
|
164
|
+
|
165
|
+
.ui-button {
|
166
|
+
cursor: pointer;
|
167
|
+
display: inline-block;
|
168
|
+
line-height: normal;
|
169
|
+
margin-right: .1em;
|
170
|
+
overflow: visible; // Support: IE <= 11
|
171
|
+
padding: .4em 1em;
|
172
|
+
position: relative;
|
173
|
+
text-align: center;
|
174
|
+
user-select: none;
|
175
|
+
vertical-align: middle;
|
176
|
+
|
177
|
+
// no icon support for input elements
|
178
|
+
&.ui-button-icon-only {
|
179
|
+
text-indent: 0;
|
180
|
+
|
181
|
+
.ui-icon {
|
182
|
+
left: 50%;
|
183
|
+
margin-left: -8px;
|
184
|
+
margin-top: -8px;
|
185
|
+
position: absolute;
|
186
|
+
top: 50%;
|
187
|
+
}
|
188
|
+
}
|
189
|
+
|
190
|
+
&.ui-icon-notext .ui-icon {
|
191
|
+
height: auto;
|
192
|
+
padding: .4em 1em;
|
193
|
+
text-indent: 0;
|
194
|
+
white-space: normal;
|
195
|
+
width: auto;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
.ui-button,
|
200
|
+
.ui-button:link,
|
201
|
+
.ui-button:visited,
|
202
|
+
.ui-button:hover,
|
203
|
+
.ui-button:active {
|
204
|
+
text-decoration: none;
|
205
|
+
}
|
206
|
+
|
207
|
+
// to make room for the icon, a width needs to be set here
|
208
|
+
.ui-button-icon-only {
|
209
|
+
box-sizing: border-box;
|
210
|
+
text-indent: -9999px;
|
211
|
+
white-space: nowrap;
|
212
|
+
width: 2em;
|
213
|
+
}
|
214
|
+
|
215
|
+
// workarounds */
|
216
|
+
// Support: Firefox 5 - 40 */
|
217
|
+
.ui-button::-moz-focus-inner,
|
218
|
+
.ui-button::-moz-focus-inner {
|
219
|
+
border: 0;
|
220
|
+
padding: 0;
|
221
|
+
}
|
222
|
+
|
223
|
+
.ui-controlgroup {
|
224
|
+
display: inline-block;
|
225
|
+
vertical-align: middle;
|
226
|
+
|
227
|
+
> .ui-controlgroup-item {
|
228
|
+
float: left;
|
229
|
+
margin-left: 0;
|
230
|
+
margin-right: 0;
|
231
|
+
}
|
232
|
+
|
233
|
+
.ui-controlgroup-label {
|
234
|
+
padding: .4em 1em;
|
235
|
+
|
236
|
+
span {
|
237
|
+
font-size: 80%;
|
238
|
+
}
|
239
|
+
}
|
240
|
+
}
|
241
|
+
|
242
|
+
.ui-controlgroup > .ui-controlgroup-item:focus,
|
243
|
+
.ui-controlgroup > .ui-controlgroup-item.ui-visual-focus {
|
244
|
+
z-index: 9999;
|
245
|
+
}
|
246
|
+
|
247
|
+
.ui-controlgroup-vertical > .ui-controlgroup-item {
|
248
|
+
display: block;
|
249
|
+
float: none;
|
250
|
+
margin-bottom: 0;
|
251
|
+
margin-top: 0;
|
252
|
+
text-align: left;
|
253
|
+
width: 100%;
|
254
|
+
}
|
255
|
+
|
256
|
+
.ui-controlgroup-vertical .ui-controlgroup-item {
|
257
|
+
box-sizing: border-box;
|
258
|
+
}
|
259
|
+
|
260
|
+
.ui-controlgroup-horizontal .ui-controlgroup-label + .ui-controlgroup-item {
|
261
|
+
border-left: 0;
|
262
|
+
}
|
263
|
+
|
264
|
+
.ui-controlgroup-vertical .ui-controlgroup-label + .ui-controlgroup-item {
|
265
|
+
border-top: 0;
|
266
|
+
}
|
267
|
+
|
268
|
+
.ui-controlgroup-horizontal .ui-controlgroup-label.ui-widget-content {
|
269
|
+
border-right: 0;
|
270
|
+
}
|
271
|
+
|
272
|
+
.ui-controlgroup-vertical .ui-controlgroup-label.ui-widget-content {
|
273
|
+
border-bottom: 0;
|
274
|
+
}
|
275
|
+
|
276
|
+
// Spinner specific style fixes */
|
277
|
+
.ui-controlgroup-vertical .ui-spinner-input {
|
278
|
+
|
279
|
+
// Support: IE8 only, Android < 4.4 only */
|
280
|
+
width: 75%;
|
281
|
+
}
|
282
|
+
|
283
|
+
.ui-controlgroup-vertical .ui-spinner .ui-spinner-up {
|
284
|
+
border-top-style: solid;
|
285
|
+
}
|
286
|
+
|
287
|
+
.ui-checkboxradio-label .ui-icon-background {
|
288
|
+
border: transparent;
|
289
|
+
border-radius: .12em;
|
290
|
+
box-shadow: inset 1px 1px 1px $ccc;
|
291
|
+
}
|
292
|
+
|
293
|
+
.ui-checkboxradio-radio-label .ui-icon-background {
|
294
|
+
border: transparent;
|
295
|
+
border-radius: 1em;
|
296
|
+
height: 16px;
|
297
|
+
overflow: visible;
|
298
|
+
width: 16px;
|
299
|
+
}
|
300
|
+
|
301
|
+
.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
|
302
|
+
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
|
303
|
+
background-image: none;
|
304
|
+
border-style: solid;
|
305
|
+
border-width: 4px;
|
306
|
+
height: 8px;
|
307
|
+
width: 8px;
|
308
|
+
}
|
309
|
+
|
310
|
+
.ui-checkboxradio-disabled {
|
311
|
+
pointer-events: none;
|
312
|
+
}
|
313
|
+
|
314
|
+
.ui-datepicker {
|
315
|
+
display: none;
|
316
|
+
padding: .2em .2em 0;
|
317
|
+
width: 17em;
|
318
|
+
|
319
|
+
// with multiple calendars */
|
320
|
+
&.ui-datepicker-multi {
|
321
|
+
width: auto;
|
322
|
+
}
|
323
|
+
|
324
|
+
.ui-datepicker-header {
|
325
|
+
padding: .2em 0;
|
326
|
+
position: relative;
|
327
|
+
}
|
328
|
+
|
329
|
+
.ui-icon {
|
330
|
+
background-repeat: no-repeat;
|
331
|
+
display: block;
|
332
|
+
left: .5em;
|
333
|
+
overflow: hidden;
|
334
|
+
text-indent: -99999px;
|
335
|
+
top: .3em;
|
336
|
+
}
|
337
|
+
|
338
|
+
.ui-datepicker-prev,
|
339
|
+
.ui-datepicker-next {
|
340
|
+
height: 1.8em;
|
341
|
+
position: absolute;
|
342
|
+
top: 2px;
|
343
|
+
width: 1.8em;
|
344
|
+
}
|
345
|
+
|
346
|
+
.ui-datepicker-prev span,
|
347
|
+
.ui-datepicker-next span {
|
348
|
+
display: block;
|
349
|
+
left: 50%;
|
350
|
+
margin-left: -8px;
|
351
|
+
margin-top: -8px;
|
352
|
+
position: absolute;
|
353
|
+
top: 50%;
|
354
|
+
}
|
355
|
+
|
356
|
+
.ui-datepicker-title {
|
357
|
+
line-height: 1.8em;
|
358
|
+
margin: 0 2.3em;
|
359
|
+
text-align: center;
|
360
|
+
|
361
|
+
select {
|
362
|
+
background: $gray-lighten;
|
363
|
+
font-size: 1em;
|
364
|
+
margin: 1px 0;
|
365
|
+
}
|
366
|
+
}
|
367
|
+
|
368
|
+
.ui-datepicker-month,
|
369
|
+
.ui-datepicker-year {
|
370
|
+
width: 45%;
|
371
|
+
}
|
372
|
+
|
373
|
+
table {
|
374
|
+
border-collapse: collapse;
|
375
|
+
font-size: .9em;
|
376
|
+
margin: 0 0 .4em;
|
377
|
+
width: 100%;
|
378
|
+
}
|
379
|
+
|
380
|
+
th {
|
381
|
+
border: 0;
|
382
|
+
font-weight: bold;
|
383
|
+
padding: .7em .3em;
|
384
|
+
text-align: center;
|
385
|
+
}
|
386
|
+
|
387
|
+
td {
|
388
|
+
border: 0;
|
389
|
+
padding: 1px;
|
390
|
+
|
391
|
+
span,
|
392
|
+
a {
|
393
|
+
display: block;
|
394
|
+
padding: .2em;
|
395
|
+
text-align: right;
|
396
|
+
text-decoration: none;
|
397
|
+
}
|
398
|
+
}
|
399
|
+
|
400
|
+
.ui-datepicker-buttonpane {
|
401
|
+
background-image: none;
|
402
|
+
border-bottom: 0;
|
403
|
+
border-left: 0;
|
404
|
+
border-right: 0;
|
405
|
+
margin: .7em 0 0;
|
406
|
+
padding: 0 .2em;
|
407
|
+
|
408
|
+
button {
|
409
|
+
cursor: pointer;
|
410
|
+
float: right;
|
411
|
+
margin: .5em .2em .4em;
|
412
|
+
overflow: visible;
|
413
|
+
padding: .2em .6em .3em;
|
414
|
+
width: auto;
|
415
|
+
}
|
416
|
+
|
417
|
+
.ui-datepicker-current {
|
418
|
+
float: left;
|
419
|
+
}
|
420
|
+
}
|
421
|
+
}
|
422
|
+
|
423
|
+
.ui-datepicker-multi .ui-datepicker-group {
|
424
|
+
float: left;
|
425
|
+
|
426
|
+
table {
|
427
|
+
margin: 0 auto .4em;
|
428
|
+
width: 95%;
|
429
|
+
}
|
430
|
+
}
|
431
|
+
|
432
|
+
.ui-datepicker-multi-2 .ui-datepicker-group {
|
433
|
+
width: 50%;
|
434
|
+
}
|
435
|
+
|
436
|
+
.ui-datepicker-multi-3 .ui-datepicker-group {
|
437
|
+
width: 33.3%;
|
438
|
+
}
|
439
|
+
|
440
|
+
.ui-datepicker-multi-4 .ui-datepicker-group {
|
441
|
+
width: 25%;
|
442
|
+
}
|
443
|
+
|
444
|
+
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
|
445
|
+
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
|
446
|
+
border-left-width: 0;
|
447
|
+
}
|
448
|
+
|
449
|
+
.ui-datepicker-multi .ui-datepicker-buttonpane {
|
450
|
+
clear: left;
|
451
|
+
}
|
452
|
+
|
453
|
+
.ui-datepicker-row-break {
|
454
|
+
clear: both;
|
455
|
+
font-size: 0;
|
456
|
+
width: 100%;
|
457
|
+
}
|
458
|
+
|
459
|
+
// RTL support */
|
460
|
+
.ui-datepicker-rtl {
|
461
|
+
direction: rtl;
|
462
|
+
|
463
|
+
.ui-datepicker-prev {
|
464
|
+
left: auto;
|
465
|
+
right: 2px;
|
466
|
+
}
|
467
|
+
|
468
|
+
.ui-datepicker-next {
|
469
|
+
left: 2px;
|
470
|
+
right: auto;
|
471
|
+
}
|
472
|
+
|
473
|
+
.ui-datepicker-buttonpane {
|
474
|
+
clear: right;
|
475
|
+
|
476
|
+
button {
|
477
|
+
float: left;
|
478
|
+
}
|
479
|
+
|
480
|
+
.ui-datepicker-current {
|
481
|
+
float: right;
|
482
|
+
}
|
483
|
+
}
|
484
|
+
|
485
|
+
.ui-datepicker-group {
|
486
|
+
float: right;
|
487
|
+
}
|
488
|
+
|
489
|
+
.ui-datepicker-group-last .ui-datepicker-header,
|
490
|
+
.ui-datepicker-group-middle .ui-datepicker-header {
|
491
|
+
border-left-width: 1px;
|
492
|
+
border-right-width: 0;
|
493
|
+
}
|
494
|
+
}
|
495
|
+
|
496
|
+
// Icons */
|
497
|
+
.ui-datepicker
|
498
|
+
|
499
|
+
.ui-dialog {
|
500
|
+
left: 0;
|
501
|
+
outline: 0;
|
502
|
+
padding: .2em;
|
503
|
+
position: absolute;
|
504
|
+
top: 0;
|
505
|
+
|
506
|
+
.ui-dialog-titlebar {
|
507
|
+
padding: .4em 1em;
|
508
|
+
position: relative;
|
509
|
+
}
|
510
|
+
|
511
|
+
.ui-dialog-title {
|
512
|
+
float: left;
|
513
|
+
margin: .1em 0;
|
514
|
+
overflow: hidden;
|
515
|
+
text-overflow: ellipsis;
|
516
|
+
white-space: nowrap;
|
517
|
+
width: 90%;
|
518
|
+
}
|
519
|
+
|
520
|
+
.ui-dialog-titlebar-close {
|
521
|
+
height: 20px;
|
522
|
+
margin: -10px 0 0;
|
523
|
+
padding: 1px;
|
524
|
+
position: absolute;
|
525
|
+
right: .3em;
|
526
|
+
top: 50%;
|
527
|
+
width: 20px;
|
528
|
+
}
|
529
|
+
|
530
|
+
.ui-dialog-content {
|
531
|
+
background: none;
|
532
|
+
border: 0;
|
533
|
+
overflow: auto;
|
534
|
+
padding: .5em 1em;
|
535
|
+
position: relative;
|
536
|
+
}
|
537
|
+
|
538
|
+
.ui-resizable-n {
|
539
|
+
height: 2px;
|
540
|
+
top: 0;
|
541
|
+
}
|
542
|
+
|
543
|
+
.ui-resizable-e {
|
544
|
+
right: 0;
|
545
|
+
width: 2px;
|
546
|
+
}
|
547
|
+
|
548
|
+
.ui-resizable-s {
|
549
|
+
bottom: 0;
|
550
|
+
height: 2px;
|
551
|
+
}
|
552
|
+
|
553
|
+
.ui-resizable-w {
|
554
|
+
left: 0;
|
555
|
+
width: 2px;
|
556
|
+
}
|
557
|
+
|
558
|
+
.ui-resizable-se,
|
559
|
+
.ui-resizable-sw,
|
560
|
+
.ui-resizable-ne,
|
561
|
+
.ui-resizable-nw {
|
562
|
+
height: 7px;
|
563
|
+
width: 7px;
|
564
|
+
}
|
565
|
+
|
566
|
+
.ui-resizable-se {
|
567
|
+
bottom: 0;
|
568
|
+
right: 0;
|
569
|
+
}
|
570
|
+
|
571
|
+
.ui-resizable-sw {
|
572
|
+
bottom: 0;
|
573
|
+
left: 0;
|
574
|
+
}
|
575
|
+
|
576
|
+
.ui-resizable-ne {
|
577
|
+
right: 0;
|
578
|
+
top: 0;
|
579
|
+
}
|
580
|
+
|
581
|
+
.ui-resizable-nw {
|
582
|
+
left: 0;
|
583
|
+
top: 0;
|
584
|
+
}
|
585
|
+
}
|
586
|
+
|
587
|
+
.ui-dialog-buttonpane {
|
588
|
+
background-image: none;
|
589
|
+
border-width: 1px 0 0;
|
590
|
+
margin-top: .5em;
|
591
|
+
padding: .3em 1em .5em .4em;
|
592
|
+
text-align: left;
|
593
|
+
|
594
|
+
.ui-dialog-buttonset {
|
595
|
+
float: right;
|
596
|
+
}
|
597
|
+
|
598
|
+
button {
|
599
|
+
cursor: pointer;
|
600
|
+
margin: .5em .4em .5em 0;
|
601
|
+
}
|
602
|
+
}
|
603
|
+
|
604
|
+
.ui-draggable .ui-dialog-titlebar {
|
605
|
+
cursor: move;
|
606
|
+
}
|
607
|
+
|
608
|
+
.ui-draggable-handle {
|
609
|
+
touch-action: none;
|
610
|
+
}
|
611
|
+
|
612
|
+
.ui-resizable {
|
613
|
+
position: relative;
|
614
|
+
}
|
615
|
+
|
616
|
+
.ui-resizable-handle {
|
617
|
+
display: block;
|
618
|
+
font-size: .1px;
|
619
|
+
position: absolute;
|
620
|
+
touch-action: none;
|
621
|
+
}
|
622
|
+
|
623
|
+
.ui-resizable-disabled .ui-resizable-handle,
|
624
|
+
.ui-resizable-autohide .ui-resizable-handle {
|
625
|
+
display: none;
|
626
|
+
}
|
627
|
+
|
628
|
+
.ui-resizable-n {
|
629
|
+
cursor: n-resize;
|
630
|
+
height: 7px;
|
631
|
+
left: 0;
|
632
|
+
top: -5px;
|
633
|
+
width: 100%;
|
634
|
+
}
|
635
|
+
|
636
|
+
.ui-resizable-s {
|
637
|
+
bottom: -5px;
|
638
|
+
cursor: s-resize;
|
639
|
+
height: 7px;
|
640
|
+
left: 0;
|
641
|
+
width: 100%;
|
642
|
+
}
|
643
|
+
|
644
|
+
.ui-resizable-e {
|
645
|
+
cursor: e-resize;
|
646
|
+
height: 100%;
|
647
|
+
right: -5px;
|
648
|
+
top: 0;
|
649
|
+
width: 7px;
|
650
|
+
}
|
651
|
+
|
652
|
+
.ui-resizable-w {
|
653
|
+
cursor: w-resize;
|
654
|
+
height: 100%;
|
655
|
+
left: -5px;
|
656
|
+
top: 0;
|
657
|
+
width: 7px;
|
658
|
+
}
|
659
|
+
|
660
|
+
.ui-resizable-se {
|
661
|
+
bottom: 1px;
|
662
|
+
cursor: se-resize;
|
663
|
+
height: 12px;
|
664
|
+
right: 1px;
|
665
|
+
width: 12px;
|
666
|
+
}
|
667
|
+
|
668
|
+
.ui-resizable-sw {
|
669
|
+
bottom: -5px;
|
670
|
+
cursor: sw-resize;
|
671
|
+
height: 9px;
|
672
|
+
left: -5px;
|
673
|
+
width: 9px;
|
674
|
+
}
|
675
|
+
|
676
|
+
.ui-resizable-nw {
|
677
|
+
cursor: nw-resize;
|
678
|
+
height: 9px;
|
679
|
+
left: -5px;
|
680
|
+
top: -5px;
|
681
|
+
width: 9px;
|
682
|
+
}
|
683
|
+
|
684
|
+
.ui-resizable-ne {
|
685
|
+
cursor: ne-resize;
|
686
|
+
height: 9px;
|
687
|
+
right: -5px;
|
688
|
+
top: -5px;
|
689
|
+
width: 9px;
|
690
|
+
}
|
691
|
+
|
692
|
+
.ui-progressbar {
|
693
|
+
height: 2em;
|
694
|
+
overflow: hidden;
|
695
|
+
text-align: left;
|
696
|
+
|
697
|
+
.ui-progressbar-value {
|
698
|
+
height: 100%;
|
699
|
+
margin: -1px;
|
700
|
+
}
|
701
|
+
|
702
|
+
.ui-progressbar-overlay {
|
703
|
+
background: url('data:image/gif;base64,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');
|
704
|
+
filter: alpha(opacity = 25); // support: IE8 */
|
705
|
+
height: 100%;
|
706
|
+
opacity: .25;
|
707
|
+
}
|
708
|
+
|
709
|
+
&-indeterminate .ui-progressbar-value {
|
710
|
+
background-image: none;
|
711
|
+
}
|
712
|
+
}
|
713
|
+
|
714
|
+
.ui-selectable {
|
715
|
+
touch-action: none;
|
716
|
+
|
717
|
+
&-helper {
|
718
|
+
border: 1px dotted $black;
|
719
|
+
position: absolute;
|
720
|
+
z-index: 100;
|
721
|
+
}
|
722
|
+
}
|
723
|
+
|
724
|
+
.ui-selectmenu-menu {
|
725
|
+
display: none;
|
726
|
+
left: 0;
|
727
|
+
margin: 0;
|
728
|
+
padding: 0;
|
729
|
+
position: absolute;
|
730
|
+
top: 0;
|
731
|
+
|
732
|
+
.ui-menu {
|
733
|
+
overflow: auto;
|
734
|
+
overflow-x: hidden;
|
735
|
+
padding-bottom: 1px;
|
736
|
+
|
737
|
+
.ui-selectmenu-optgroup {
|
738
|
+
border: 0;
|
739
|
+
font-size: 1em;
|
740
|
+
font-weight: bold;
|
741
|
+
height: auto;
|
742
|
+
line-height: 1.5;
|
743
|
+
margin: .5em 0 0;
|
744
|
+
padding: 2px .4em;
|
745
|
+
}
|
746
|
+
}
|
747
|
+
}
|
748
|
+
|
749
|
+
.ui-selectmenu-open {
|
750
|
+
display: block;
|
751
|
+
}
|
752
|
+
|
753
|
+
.ui-selectmenu-text {
|
754
|
+
display: block;
|
755
|
+
margin-right: 20px;
|
756
|
+
overflow: hidden;
|
757
|
+
text-overflow: ellipsis;
|
758
|
+
}
|
759
|
+
|
760
|
+
.ui-selectmenu-button.ui-button {
|
761
|
+
text-align: left;
|
762
|
+
white-space: nowrap;
|
763
|
+
width: 14em;
|
764
|
+
}
|
765
|
+
|
766
|
+
.ui-selectmenu-icon.ui-icon {
|
767
|
+
float: right;
|
768
|
+
margin-top: 0;
|
769
|
+
}
|
770
|
+
|
771
|
+
.ui-slider {
|
772
|
+
position: relative;
|
773
|
+
text-align: left;
|
774
|
+
|
775
|
+
.ui-slider-handle {
|
776
|
+
cursor: default;
|
777
|
+
height: 1.2em;
|
778
|
+
position: absolute;
|
779
|
+
touch-action: none;
|
780
|
+
width: 1.2em;
|
781
|
+
z-index: 2;
|
782
|
+
}
|
783
|
+
|
784
|
+
.ui-slider-range {
|
785
|
+
background-position: 0 0;
|
786
|
+
border: 0;
|
787
|
+
display: block;
|
788
|
+
font-size: .7em;
|
789
|
+
position: absolute;
|
790
|
+
z-index: 1;
|
791
|
+
}
|
792
|
+
}
|
793
|
+
|
794
|
+
|
795
|
+
// support: IE8 - See #6727 */
|
796
|
+
.ui-slider.ui-state-disabled .ui-slider-handle,
|
797
|
+
.ui-slider.ui-state-disabled .ui-slider-range {
|
798
|
+
filter: inherit;
|
799
|
+
}
|
800
|
+
|
801
|
+
.ui-slider-horizontal {
|
802
|
+
height: .8em;
|
803
|
+
|
804
|
+
.ui-slider-handle {
|
805
|
+
margin-left: -.6em;
|
806
|
+
top: -.3em;
|
807
|
+
}
|
808
|
+
|
809
|
+
.ui-slider-range {
|
810
|
+
height: 100%;
|
811
|
+
top: 0;
|
812
|
+
}
|
813
|
+
|
814
|
+
.ui-slider-range-min {
|
815
|
+
left: 0;
|
816
|
+
}
|
817
|
+
|
818
|
+
.ui-slider-range-max {
|
819
|
+
right: 0;
|
820
|
+
}
|
821
|
+
}
|
822
|
+
|
823
|
+
.ui-slider-vertical {
|
824
|
+
height: 100px;
|
825
|
+
width: .8em;
|
826
|
+
|
827
|
+
.ui-slider-handle {
|
828
|
+
left: -.3em;
|
829
|
+
margin-bottom: -.6em;
|
830
|
+
margin-left: 0;
|
831
|
+
}
|
832
|
+
|
833
|
+
.ui-slider-range {
|
834
|
+
left: 0;
|
835
|
+
width: 100%;
|
836
|
+
}
|
837
|
+
|
838
|
+
.ui-slider-range-min {
|
839
|
+
bottom: 0;
|
840
|
+
}
|
841
|
+
|
842
|
+
.ui-slider-range-max {
|
843
|
+
top: 0;
|
844
|
+
}
|
845
|
+
}
|
846
|
+
|
847
|
+
.ui-sortable-handle {
|
848
|
+
touch-action: none;
|
849
|
+
}
|
850
|
+
|
851
|
+
.ui-spinner {
|
852
|
+
display: inline-block;
|
853
|
+
overflow: hidden;
|
854
|
+
padding: 0;
|
855
|
+
position: relative;
|
856
|
+
vertical-align: middle;
|
857
|
+
|
858
|
+
// more specificity required here to override default borders */
|
859
|
+
.ui-spinner-button {
|
860
|
+
border-bottom-style: none;
|
861
|
+
border-right-style: none;
|
862
|
+
border-top-style: none;
|
863
|
+
}
|
864
|
+
}
|
865
|
+
|
866
|
+
.ui-spinner-input {
|
867
|
+
background: none;
|
868
|
+
border: transparent;
|
869
|
+
color: inherit;
|
870
|
+
margin: .2em 0;
|
871
|
+
margin-left: .4em;
|
872
|
+
margin-right: 2em;
|
873
|
+
padding: .222em 0;
|
874
|
+
vertical-align: middle;
|
875
|
+
}
|
876
|
+
|
877
|
+
.ui-spinner-button {
|
878
|
+
cursor: default;
|
879
|
+
display: block;
|
880
|
+
font-size: .5em;
|
881
|
+
height: 50%;
|
882
|
+
margin: 0;
|
883
|
+
overflow: hidden;
|
884
|
+
padding: 0;
|
885
|
+
position: absolute;
|
886
|
+
right: 0;
|
887
|
+
text-align: center;
|
888
|
+
width: 1.6em;
|
889
|
+
}
|
890
|
+
|
891
|
+
.ui-spinner-up {
|
892
|
+
top: 0;
|
893
|
+
}
|
894
|
+
|
895
|
+
.ui-spinner-down {
|
896
|
+
bottom: 0;
|
897
|
+
}
|
898
|
+
|
899
|
+
.ui-tabs {
|
900
|
+
padding: .2em;
|
901
|
+
position: relative; // position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
|
902
|
+
|
903
|
+
.ui-tabs-nav {
|
904
|
+
margin: 0;
|
905
|
+
padding: .2em .2em 0;
|
906
|
+
|
907
|
+
li {
|
908
|
+
border-bottom-width: 0;
|
909
|
+
float: left;
|
910
|
+
list-style: none;
|
911
|
+
margin: 1px .2em 0 0;
|
912
|
+
padding: 0;
|
913
|
+
position: relative;
|
914
|
+
top: 0;
|
915
|
+
white-space: nowrap;
|
916
|
+
}
|
917
|
+
|
918
|
+
.ui-tabs-anchor {
|
919
|
+
float: left;
|
920
|
+
padding: .5em 1em;
|
921
|
+
text-decoration: none;
|
922
|
+
}
|
923
|
+
}
|
924
|
+
|
925
|
+
.ui-tabs-active {
|
926
|
+
margin-bottom: -1px;
|
927
|
+
padding-bottom: 1px;
|
928
|
+
}
|
929
|
+
|
930
|
+
.ui-tabs-active .ui-tabs-anchor,
|
931
|
+
.ui-state-disabled .ui-tabs-anchor,
|
932
|
+
.ui-tabs-loading .ui-tabs-anchor {
|
933
|
+
cursor: text;
|
934
|
+
}
|
935
|
+
|
936
|
+
.ui-tabs-panel {
|
937
|
+
background: none;
|
938
|
+
border-width: 0;
|
939
|
+
display: block;
|
940
|
+
padding: 1em 1.4em;
|
941
|
+
}
|
942
|
+
}
|
943
|
+
|
944
|
+
.ui-tabs-collapsible .ui-tabs-active .ui-tabs-anchor {
|
945
|
+
cursor: pointer;
|
946
|
+
}
|
947
|
+
|
948
|
+
.ui-tooltip {
|
949
|
+
border-width: 2px;
|
950
|
+
max-width: 300px;
|
951
|
+
padding: 8px;
|
952
|
+
position: absolute;
|
953
|
+
z-index: 9999;
|
954
|
+
}
|
955
|
+
|
956
|
+
// Component containers
|
957
|
+
.ui-widget {
|
958
|
+
font-family: Arial,Helvetica,sans-serif;
|
959
|
+
font-size: 1em;
|
960
|
+
|
961
|
+
.ui-widget {
|
962
|
+
font-size: 1em;
|
963
|
+
}
|
964
|
+
|
965
|
+
input,
|
966
|
+
select,
|
967
|
+
textarea,
|
968
|
+
button {
|
969
|
+
font-family: Arial,Helvetica,sans-serif;
|
970
|
+
font-size: 1em;
|
971
|
+
}
|
972
|
+
|
973
|
+
&.ui-widget-content {
|
974
|
+
border: 1px solid $light-white;
|
975
|
+
}
|
976
|
+
|
977
|
+
&-content {
|
978
|
+
background: $white;
|
979
|
+
border: 1px solid $dark-white;
|
980
|
+
color: $light-black;
|
981
|
+
|
982
|
+
a {
|
983
|
+
color: $light-black;
|
984
|
+
}
|
985
|
+
}
|
986
|
+
|
987
|
+
&-header {
|
988
|
+
background: $dark-white;
|
989
|
+
border: 1px solid $dark-white;
|
990
|
+
color: $light-black;
|
991
|
+
font-weight: bold;
|
992
|
+
|
993
|
+
a {
|
994
|
+
color: $light-black;
|
995
|
+
}
|
996
|
+
}
|
997
|
+
}
|
998
|
+
|
999
|
+
|
1000
|
+
// Interaction states
|
1001
|
+
.ui-state-default,
|
1002
|
+
.ui-widget-content .ui-state-default,
|
1003
|
+
.ui-widget-header .ui-state-default,
|
1004
|
+
.ui-button,
|
1005
|
+
|
1006
|
+
/* We use html here because we need a greater specificity to make sure disabled
|
1007
|
+
works properly when clicked or hovered */
|
1008
|
+
.ui-button.ui-state-disabled:hover,
|
1009
|
+
.ui-button.ui-state-disabled:active {
|
1010
|
+
background: $dark-white;
|
1011
|
+
border: transparent;
|
1012
|
+
color: $dark-grey;
|
1013
|
+
font-weight: normal;
|
1014
|
+
transition: .2s ease-in-out;
|
1015
|
+
}
|
1016
|
+
|
1017
|
+
.ui-state-default a,
|
1018
|
+
.ui-state-default a:link,
|
1019
|
+
.ui-state-default a:visited,
|
1020
|
+
.ui-button,
|
1021
|
+
.ui-button:link,
|
1022
|
+
.ui-button:visited {
|
1023
|
+
color: $dark-grey;
|
1024
|
+
text-decoration: none;
|
1025
|
+
}
|
1026
|
+
|
1027
|
+
.ui-state-hover,
|
1028
|
+
.ui-widget-content .ui-state-hover,
|
1029
|
+
.ui-widget-header .ui-state-hover,
|
1030
|
+
.ui-state-focus,
|
1031
|
+
.ui-widget-content .ui-state-focus,
|
1032
|
+
.ui-widget-header .ui-state-focus,
|
1033
|
+
.ui-button:hover,
|
1034
|
+
.ui-button:focus {
|
1035
|
+
background: $light-white;
|
1036
|
+
border: 0;
|
1037
|
+
color: $light-black;
|
1038
|
+
cursor: pointer;
|
1039
|
+
font-weight: normal;
|
1040
|
+
transition: .2s ease-in-out;
|
1041
|
+
}
|
1042
|
+
|
1043
|
+
.ui-state-hover a,
|
1044
|
+
.ui-state-hover a:hover,
|
1045
|
+
.ui-state-hover a:link,
|
1046
|
+
.ui-state-hover a:visited,
|
1047
|
+
.ui-state-focus a,
|
1048
|
+
.ui-state-focus a:hover,
|
1049
|
+
.ui-state-focus a:link,
|
1050
|
+
.ui-state-focus a:visited,
|
1051
|
+
.ui-button:hover,
|
1052
|
+
.ui-button:focus {
|
1053
|
+
color: $light-black;
|
1054
|
+
cursor: pointer;
|
1055
|
+
text-decoration: none;
|
1056
|
+
}
|
1057
|
+
|
1058
|
+
|
1059
|
+
.ui-visual-focus {
|
1060
|
+
box-shadow: 0 0 3px 1px $link-color;
|
1061
|
+
}
|
1062
|
+
|
1063
|
+
.ui-state-active,
|
1064
|
+
.ui-widget-content .ui-state-active,
|
1065
|
+
.ui-widget-header .ui-state-active,
|
1066
|
+
.ui-button:active,
|
1067
|
+
.ui-button:active,
|
1068
|
+
.ui-button.ui-state-active:hover {
|
1069
|
+
background: $keppler-color;
|
1070
|
+
border: transparent;
|
1071
|
+
color: $white;
|
1072
|
+
font-weight: normal;
|
1073
|
+
}
|
1074
|
+
|
1075
|
+
.ui-icon-background,
|
1076
|
+
.ui-state-active .ui-icon-background {
|
1077
|
+
background-color: $white;
|
1078
|
+
border: $keppler-color;
|
1079
|
+
}
|
1080
|
+
|
1081
|
+
.ui-state-active a,
|
1082
|
+
.ui-state-active a:link,
|
1083
|
+
.ui-state-active a:visited {
|
1084
|
+
color: $white;
|
1085
|
+
text-decoration: none;
|
1086
|
+
}
|