mosaico 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/Gemfile +7 -0
- data/LICENSE +680 -0
- data/README.md +179 -0
- data/Rakefile +5 -0
- data/app/assets/images/mosaico/logo_transparent.png +0 -0
- data/app/assets/javascripts/mosaico/application.js.erb +51 -0
- data/app/assets/javascripts/mosaico/plugins/debug.js.erb +10 -0
- data/app/assets/javascripts/mosaico/plugins/logo.js.erb +10 -0
- data/app/assets/javascripts/mosaico/plugins/preview.js +85 -0
- data/app/assets/javascripts/mosaico/plugins/save.js.erb +72 -0
- data/app/assets/javascripts/mosaico/plugins/template_path.js.erb +22 -0
- data/app/assets/javascripts/mosaico/plugins/translations.js +10 -0
- data/app/assets/javascripts/mosaico/utilities.js +25 -0
- data/app/assets/stylesheets/mosaico/application.css +6 -0
- data/app/controllers/mosaico/application_controller.rb +17 -0
- data/app/controllers/mosaico/images_controller.rb +142 -0
- data/app/controllers/mosaico/projects_controller.rb +31 -0
- data/app/controllers/mosaico/templates_controller.rb +8 -0
- data/app/helpers/mosaico/application_helper.rb +7 -0
- data/app/models/mosaico/image.rb +9 -0
- data/app/models/mosaico/placeholder_image.rb +9 -0
- data/app/models/mosaico/project.rb +13 -0
- data/app/models/mosaico/uploaded_image.rb +26 -0
- data/app/views/layouts/mosaico/application.html.erb +13 -0
- data/app/views/mosaico/projects/new.html.erb +1 -0
- data/app/views/mosaico/projects/show.html.erb +1 -0
- data/app/views/mosaico/shared/_metadata.html.erb +12 -0
- data/config/routes.rb +12 -0
- data/db/migrate/20170817202255_add_images.rb +14 -0
- data/db/migrate/20170824233755_add_projects.rb +11 -0
- data/lib/mosaico.rb +100 -0
- data/lib/mosaico/engine.rb +72 -0
- data/lib/mosaico/local_backend.rb +23 -0
- data/lib/mosaico/local_image_backend.rb +7 -0
- data/lib/mosaico/local_placeholder_backend.rb +7 -0
- data/lib/mosaico/placeholder.png +0 -0
- data/lib/mosaico/template.rb +89 -0
- data/lib/mosaico/versafix_template.rb +43 -0
- data/lib/mosaico/version.rb +4 -0
- data/lib/tasks/makeThumbs.js.erb +57 -0
- data/lib/tasks/thumbs.rake +35 -0
- data/mosaico.gemspec +22 -0
- data/screenshot.png +0 -0
- data/vendor/assets/fonts/LiberationSans-Regular.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/.jsbeautifyrc +6 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/.jshintrc +8 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/.travis.yml +6 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/CONTRIBUTING.md +37 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/Dockerfile +21 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/Gruntfile.js +241 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/LICENSE +680 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/NOTICE.txt +87 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/README.md +73 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/backend/README.txt +23 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/backend/main.js +162 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/bower.json +76 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico-material.css +7425 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico.css +7133 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico.debug.js +1517 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/build/mosaico.js +12828 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/build/templates.js +15 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.svg +685 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/fa/fonts/fontawesome-webfont.woff2 +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/byvoxmail.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaico-badge.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaico-v.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaico32.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/mosaicologo.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/screenshot-orig.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/img/screenshot.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/README.md +26 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-de.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-en.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-es.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-fr.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-it.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-nl.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/lang/mosaico-sv.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico-material.min.css +5 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico-material.min.css.map +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.css +5 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.css.map +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.js +1517 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/mosaico.min.js.map +147 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/canvas-to-blob.min.js +2 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery-ui.min.css +7 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery-ui.min.js +13 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload-image.js +324 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload-process.js +175 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload-validate.js +122 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.fileupload.js +1482 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.iframe-transport.js +217 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.min.js +5 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.min.map +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/jquery.ui.touch-punch.min.js +11 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/knockout-jqueryui.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/knockout.js +123 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/load-image.all.min.js +2 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/NotoSans-Regular-webfont.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/NotoSans-Regular-webfont.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/NotoSans-Regular-webfont.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/notoregular/stylesheet.css +9 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/advlist/plugin.js +101 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/advlist/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/anchor/plugin.js +55 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/anchor/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autolink/plugin.js +204 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autolink/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autoresize/plugin.js +162 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autoresize/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autosave/plugin.js +165 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/autosave/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/bbcode/plugin.js +123 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/bbcode/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/charmap/plugin.js +462 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/charmap/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/code/plugin.js +60 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/code/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/codesample/css/prism.css +138 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/codesample/plugin.js +1319 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/codesample/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/colorpicker/plugin.js +112 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/colorpicker/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/contextmenu/plugin.js +100 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/contextmenu/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/directionality/plugin.js +64 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/directionality/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-cool.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-cry.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-embarassed.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-foot-in-mouth.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-frown.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-innocent.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-kiss.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-laughing.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-money-mouth.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-sealed.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-smile.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-surprised.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-tongue-out.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-undecided.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-wink.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/img/smiley-yell.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/plugin.js +65 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/emoticons/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullpage/plugin.js +490 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullpage/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullscreen/plugin.js +154 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/fullscreen/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/hr/plugin.js +30 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/hr/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/image/plugin.js +630 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/image/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/imagetools/plugin.js +2944 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/imagetools/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/importcss/plugin.js +273 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/importcss/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/insertdatetime/plugin.js +121 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/insertdatetime/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/layer/plugin.js +225 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/layer/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/legacyoutput/plugin.js +208 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/legacyoutput/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/link/plugin.js +403 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/link/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/lists/plugin.js +965 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/lists/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/media/moxieplayer.swf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/media/plugin.js +879 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/media/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/nonbreaking/plugin.js +53 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/nonbreaking/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/noneditable/plugin.js +101 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/noneditable/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/pagebreak/plugin.js +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/pagebreak/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/paste/plugin.js +1844 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/paste/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/preview/plugin.js +101 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/preview/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/print/plugin.js +32 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/print/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/save/plugin.js +98 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/save/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/searchreplace/plugin.js +609 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/searchreplace/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/spellchecker/plugin.js +1031 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/spellchecker/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/tabfocus/plugin.js +120 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/tabfocus/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/table/plugin.js +4400 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/table/plugin.min.js +2 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/template/plugin.js +276 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/template/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textcolor/plugin.js +297 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textcolor/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textpattern/plugin.js +268 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/textpattern/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualblocks/css/visualblocks.css +135 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualblocks/plugin.js +86 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualblocks/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualchars/plugin.js +123 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/visualchars/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/wordcount/plugin.js +69 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/plugins/wordcount/plugin.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/Variables.less +196 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/content.inline.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/content.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/readme.md +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.json +1277 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.svg +63 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce-small.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.json +1972 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.svg +98 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/fonts/tinymce.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/anchor.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/loader.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/object.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/img/trans.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/skin.ie7.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/skin.json +79 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/gray-flat/skin.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/content.inline.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/content.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.svg +63 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce-small.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.svg +129 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/fonts/tinymce.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/anchor.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/loader.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/object.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/img/trans.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/skin.ie7.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/skins/lightgray/skin.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/inlite/theme.js +1828 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/inlite/theme.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/modern/theme.js +934 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/themes/modern/theme.min.js +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/dist/vendor/tinymce.min.js +14 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/editor.html +63 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/favicon.ico +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/index.html +368 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/package.json +92 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/byvoxmail.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaico-badge.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaico-v.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaico32.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/mosaicologo.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/screenshot-orig.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/img/screenshot.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/README.md +26 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-de.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-en.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-es.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-fr.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-it.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-nl.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/lang/mosaico-sv.json +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/Variables.less +196 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/content.inline.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/content.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/readme.md +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.json +1277 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.svg +63 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce-small.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.eot +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.json +1972 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.svg +98 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.ttf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/fonts/tinymce.woff +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/anchor.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/loader.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/object.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/img/trans.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/skin.ie7.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/skin.json +79 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/res/vendor/skins/gray-flat/skin.min.css +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/server-config.js +12 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/converter-spec.js +115 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/data/template-versafix-1.model.json +137 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/declarations-spec.js +282 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/mensch-spec.js +114 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/model-spec.js +88 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/spec/stylesheet-spec.js +177 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/app_standalone.less +7 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/app_standalone_material.less +350 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/safarihack.css +17 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements.less +497 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements_jquery.less +344 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements_mixins.less +406 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_elements_moxie.less +130 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_mosaico.less +529 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_mosaico_content.less +391 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_mosaico_tools.less +1043 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_reset.less +45 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/css/style_variables.less +156 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/app.js +167 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/bind-iframe.js +64 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/blocks.js +118 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/choose-template.js +7 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/colorpicker.js +58 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/csstext.js +16 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/droppable.js +87 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/eventable.js +33 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/extender-pagination.js +60 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/extsortables.js +103 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/fileupload.js +373 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/if-subs.js +110 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/jqueryui-spinner.js +31 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/jqueryui-tabs.js +17 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/script-template.js +30 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/scrollfix.js +48 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/scrollintoview.js +83 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/string-template.js +76 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/tooltips.js +36 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/validated-value.js +40 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/virtuals.js +102 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/bindings/wysiwygs.js +304 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/checkmodel.js +114 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/declarations.js +279 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/domutils.js +93 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/editor.js +411 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/main.js +42 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/model.js +536 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/parser.js +485 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/stylesheet.js +205 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/utils.js +156 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/converter/wrapper.js +308 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ext/color.js +53 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ext/inliner.js +35 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ext/localstorage.js +100 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/ko-bindings.js +22 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/template-loader.js +446 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/timed-call.js +31 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/undomanager/undomain.js +49 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/undomanager/undoserializer.js +120 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/js/viewmodel.js +595 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/array.tmpl.html +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/block-show.tmpl.html +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/block-wysiwyg.tmpl.html +18 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/blocks-show.tmpl.html +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/blocks-wysiwyg.tmpl.html +2 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/customstyle.tmpl.html +3 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/empty.tmpl.html +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/error.tmpl.html +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/gallery-images.tmpl.html +16 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/img-wysiwyg.tmpl.html +43 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/main.tmpl.html +102 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/src/tmpl/toolbox.tmpl.html +111 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/tasks/combineKOTemplates.js +24 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/tasks/lib/phantom-thumbnailer-editor.js +168 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/tasks/makeThumbs.js +79 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/README.md +1 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/_full.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/footerBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/headerBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/heroBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/socialBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/threetwoBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/edres/twoColumnBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tedc15/template-tedc15.html +567 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/edres/HeaderAndText.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/edres/_full.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/edres/fixedlist.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/mosaico-tutorial.md +335 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/mosaico-tutorial.pdf +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_384.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_385.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_386.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_387.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_407.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/screenshot_408.jpg +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/tutorial/template-tutorial.html +68 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/_full.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/buttonBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/doubleArticleBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/doubleImageBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/hrBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/imageBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/logoBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/sideArticleBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/singleArticleBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/socialBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/spacerBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/textBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/titleBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/tripleArticleBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/edres/tripleImageBlock.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/facebook_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/facebook_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/flickr_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/flickr_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/google+_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/google+_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/instagram_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/instagram_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/linkedin_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/linkedin_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/twitter_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/twitter_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/vimeo_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/vimeo_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/web_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/web_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/youtube_bw_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/social_def/youtube_ok.png +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/img/sponsor.gif +0 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/templates/versafix-1/template-versafix-1.html +1531 -0
- data/vendor/assets/mosaico-0.16.0/mosaico/uploads/README.md +1 -0
- metadata +536 -0
@@ -0,0 +1,344 @@
|
|
1
|
+
/**************************************************************************************************************************
|
2
|
+
* JQUERY UI
|
3
|
+
*
|
4
|
+
* Needs style_elements.less. Uses .button() .win()
|
5
|
+
*************************************************************************************************************************/
|
6
|
+
|
7
|
+
// Layout helpers
|
8
|
+
.ui-helper-hidden {display: none;}
|
9
|
+
.ui-helper-hidden-accessible {border: 0;clip: rect(0 0 0 0);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute !important;width: 1px;} // ALT: clip: rect(1px, 1px, 1px, 1px);
|
10
|
+
.ui-helper-reset {margin: 0;padding: 0;border: 0;outline: 0;line-height: 1.3;text-decoration: none;font-size: 100%;list-style: none;}
|
11
|
+
.ui-helper-clearfix:before,.ui-helper-clearfix:after {content: "";display: table;border-collapse: collapse;}
|
12
|
+
.ui-helper-clearfix:after {clear: both;}
|
13
|
+
.ui-helper-clearfix {min-height: 0; /* support: IE7 */}
|
14
|
+
.ui-helper-zfix {width: 100%;height: 100%;top: 0;left: 0;position: absolute;opacity: 0;filter:Alpha(Opacity=0);}
|
15
|
+
.ui-front {z-index: @zindex-dialog-modal; }
|
16
|
+
|
17
|
+
// Interaction Cues
|
18
|
+
.ui-state-disabled {cursor: default !important;}
|
19
|
+
|
20
|
+
// states and images
|
21
|
+
.ui-icon {display: block;text-indent: -99999px;overflow: hidden;background-repeat: no-repeat;}
|
22
|
+
|
23
|
+
// Overlays
|
24
|
+
.ui-widget-overlay {position: fixed;top: 0;left: 0;width: 100%;height: 100%;}
|
25
|
+
.ui-widget-overlay {background: #aaaaaa none;opacity: .6;filter: Alpha(Opacity=60);}
|
26
|
+
.ui-widget-shadow {margin: -8px 0 0 -8px;padding: 8px;background: #aaaaaa none;opacity: .3;filter: Alpha(Opacity=30);border-radius: 8px;}
|
27
|
+
|
28
|
+
.ui-corner-all { border-radius: @standard-border-radius; }
|
29
|
+
|
30
|
+
.ui-button {
|
31
|
+
.button-style();
|
32
|
+
|
33
|
+
.ui-button-text, .ui-icon {
|
34
|
+
color: @button-text-color;
|
35
|
+
}
|
36
|
+
&.ui-button-icon-only {
|
37
|
+
.ui-icon { margin: 0 .1em; }
|
38
|
+
.ui-button-text { display: none; }
|
39
|
+
}
|
40
|
+
&.ui-button-disabled {
|
41
|
+
.button-style.disabled();
|
42
|
+
.ui-button-text, .ui-icon {
|
43
|
+
.button-style.disabled .link;
|
44
|
+
}
|
45
|
+
}
|
46
|
+
&.ui-state-active {
|
47
|
+
.button-style.pressed();
|
48
|
+
}
|
49
|
+
}
|
50
|
+
|
51
|
+
.ui-buttonset {
|
52
|
+
.buttonset-style();
|
53
|
+
}
|
54
|
+
|
55
|
+
.ui-dialog {
|
56
|
+
.win();
|
57
|
+
position: absolute;
|
58
|
+
overflow: hidden;
|
59
|
+
width: 300px;
|
60
|
+
padding: 0;
|
61
|
+
font-size: 1em;
|
62
|
+
z-index: @zindex-dialog;
|
63
|
+
|
64
|
+
.ui-dialog-titlebar {
|
65
|
+
.wintitle();
|
66
|
+
font-size: 1.1em;
|
67
|
+
|
68
|
+
.ui-dialog-title {
|
69
|
+
float: left; margin: .1em 16px .2em 0;
|
70
|
+
}
|
71
|
+
.ui-dialog-titlebar-close {
|
72
|
+
position: absolute;
|
73
|
+
right: .3em;
|
74
|
+
top: 35%;
|
75
|
+
width: 21px;
|
76
|
+
margin: -10px 0 0 0;
|
77
|
+
padding: 1px;
|
78
|
+
height: 20px;
|
79
|
+
cursor: pointer;
|
80
|
+
border: 0 none;
|
81
|
+
background: none transparent;
|
82
|
+
//background-color: transparent;
|
83
|
+
box-shadow: none;
|
84
|
+
&::-moz-focus-inner {
|
85
|
+
border: none;
|
86
|
+
}
|
87
|
+
|
88
|
+
.ui-icon {
|
89
|
+
position: absolute;
|
90
|
+
top: 50%;
|
91
|
+
margin-top: -8px;
|
92
|
+
left: 50%;
|
93
|
+
margin-left: -8px;
|
94
|
+
}
|
95
|
+
|
96
|
+
&.ui-button-icon-only .ui-button-text {
|
97
|
+
display: block;
|
98
|
+
line-height: normal;
|
99
|
+
padding: .4em;
|
100
|
+
text-indent: -9999999px;
|
101
|
+
}
|
102
|
+
}
|
103
|
+
}
|
104
|
+
.ui-dialog-content {
|
105
|
+
border: 0; padding: .5em 1em; background: none; zoom: 1;
|
106
|
+
max-height: 600px; // Il max-height
|
107
|
+
position: relative;
|
108
|
+
.async_loading_iframe {
|
109
|
+
margin: -.5em 0 0 0;
|
110
|
+
}
|
111
|
+
}
|
112
|
+
.async_loading_iframe {
|
113
|
+
width: 100%;
|
114
|
+
height: 100%;
|
115
|
+
min-height: 100px;
|
116
|
+
position: absolute; left: 0
|
117
|
+
}
|
118
|
+
.ui-dialog-buttonpane {
|
119
|
+
text-align: center;
|
120
|
+
background-image: none;
|
121
|
+
margin: .5em 0 0 0;
|
122
|
+
border: none;
|
123
|
+
padding: .3em 0;
|
124
|
+
}
|
125
|
+
&.dialog_info .ui-dialog-titlebar {
|
126
|
+
background: none mix(@dialog-title-background-color, @blue, 50%);
|
127
|
+
}
|
128
|
+
&.dialog_warn .ui-dialog-titlebar {
|
129
|
+
background: none mix(@dialog-title-background-color, @red, 50%);
|
130
|
+
}
|
131
|
+
&.dialog_ok .ui-dialog-titlebar {
|
132
|
+
background: none mix(@dialog-title-background-color, @green, 50%);
|
133
|
+
}
|
134
|
+
&.dialog_standard_href .ui-dialog-content { // Dialog loaded using iframe (standard)
|
135
|
+
padding: 0;
|
136
|
+
min-height: 600px;
|
137
|
+
}
|
138
|
+
&.dialog_ajax_href .ui-dialog-content, &.dialog_standard_content .ui-dialog-content, &.dialog_standard_rel .ui-dialog-content {
|
139
|
+
overflow: auto;
|
140
|
+
}
|
141
|
+
&.no-close .ui-dialog-titlebar-close { display: none; }
|
142
|
+
//.ui-resizable-se { width: 14px; height: 14px; right: 3px; bottom: 3px; }
|
143
|
+
|
144
|
+
// Prevent dotted outline on full focused dialog on FF
|
145
|
+
&:focus, &:-moz-focusring {
|
146
|
+
outline: 0 none !important;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
//.ui-draggable .ui-dialog-titlebar { cursor: move; }
|
150
|
+
|
151
|
+
.ui-menu {
|
152
|
+
list-style: outside none none;
|
153
|
+
padding: 0px;
|
154
|
+
margin: 0px;
|
155
|
+
display: block;
|
156
|
+
outline: medium none;
|
157
|
+
.ui-menu-item {
|
158
|
+
position: relative;
|
159
|
+
margin: 0px; padding: 3px 1em 3px 0.4em;
|
160
|
+
cursor: pointer;
|
161
|
+
min-height: 0px;
|
162
|
+
&.ui-state-focus, &.ui-state-active {}
|
163
|
+
}
|
164
|
+
}
|
165
|
+
|
166
|
+
.ui-autocomplete {
|
167
|
+
position: absolute;
|
168
|
+
top: 0px;
|
169
|
+
left: 0px;
|
170
|
+
cursor: default;
|
171
|
+
|
172
|
+
.dropdown();
|
173
|
+
min-width: auto;
|
174
|
+
max-width: none;
|
175
|
+
margin: 0; padding: 0;
|
176
|
+
.ui-menu-item {
|
177
|
+
display: block;
|
178
|
+
padding: 0.5em; margin: 0;
|
179
|
+
font-weight: bold;
|
180
|
+
&.ui-state-focus, &.ui-state-active {
|
181
|
+
background-color: @button-background-color;
|
182
|
+
color: @button-text-color;
|
183
|
+
a {
|
184
|
+
color: @button-text-color;
|
185
|
+
}
|
186
|
+
}
|
187
|
+
}
|
188
|
+
}
|
189
|
+
|
190
|
+
.ui-tabs {
|
191
|
+
.ui-tabs-nav {
|
192
|
+
border-radius: 0;
|
193
|
+
}
|
194
|
+
}
|
195
|
+
|
196
|
+
/**
|
197
|
+
* JQUERY HORIZONTAL UI TABS
|
198
|
+
*/
|
199
|
+
.ui-tabs.tabs_horizontal {
|
200
|
+
> ul {
|
201
|
+
.tabs-style(~'.ui-state-active', false);
|
202
|
+
padding: 0px 0px 0px .5em;
|
203
|
+
}
|
204
|
+
.ui-tabs-panel {
|
205
|
+
margin-top: .5em;
|
206
|
+
&.ui-tabs-noscroll {
|
207
|
+
padding: 0;
|
208
|
+
}
|
209
|
+
}
|
210
|
+
}
|
211
|
+
.ui-tabs.tabs_horizontal.button_color {
|
212
|
+
> ul {
|
213
|
+
.tabs-style(~'.ui-state-active', true);
|
214
|
+
}
|
215
|
+
}
|
216
|
+
|
217
|
+
/**
|
218
|
+
* JQUERY VERTICAL UI TABS
|
219
|
+
*/
|
220
|
+
.ui-tabs.tabs_vertical {
|
221
|
+
position: relative;
|
222
|
+
margin: 1em 0;
|
223
|
+
> ul {
|
224
|
+
margin: 0;
|
225
|
+
padding: 0;
|
226
|
+
text-align: left;
|
227
|
+
float: left;
|
228
|
+
li {
|
229
|
+
width: @elysia_nodes_property_label-width + 1em;
|
230
|
+
list-style-type: none;
|
231
|
+
padding: .5em 1em;
|
232
|
+
margin: 0;
|
233
|
+
text-align: right;
|
234
|
+
&.ui-state-active {
|
235
|
+
background-color: @accent-color;
|
236
|
+
font-weight: bold;
|
237
|
+
border-radius: @standard-border-radius 0 0 @standard-border-radius;
|
238
|
+
a {
|
239
|
+
color: @text-color;
|
240
|
+
}
|
241
|
+
}
|
242
|
+
}
|
243
|
+
}
|
244
|
+
.ui-tabs-panel {
|
245
|
+
background: @background-color;
|
246
|
+
border: 1px solid @accent-color;
|
247
|
+
padding: .5em 1em;
|
248
|
+
margin: .5em 0;
|
249
|
+
overflow: auto;
|
250
|
+
&.ui-tabs-noscroll {
|
251
|
+
padding: 0;
|
252
|
+
}
|
253
|
+
}
|
254
|
+
}
|
255
|
+
|
256
|
+
.ui-tooltip { // TODO
|
257
|
+
.win();
|
258
|
+
max-width: 300px;
|
259
|
+
padding: .5em;
|
260
|
+
z-index: @zindex-tooltip;
|
261
|
+
}
|
262
|
+
|
263
|
+
.ui-spinner {
|
264
|
+
display: block;
|
265
|
+
margin: @input-margin-top 0 @input-margin-bottom 0; padding: 0;
|
266
|
+
position: relative;
|
267
|
+
|
268
|
+
// hides natives spinner on Chrome, FF and the "clear-cross" by IE10-11
|
269
|
+
input[type=number] {
|
270
|
+
&::-webkit-outer-spin-button,
|
271
|
+
&::-webkit-inner-spin-button {
|
272
|
+
-webkit-appearance: none;
|
273
|
+
margin: 0;
|
274
|
+
}
|
275
|
+
&::-ms-clear {
|
276
|
+
width: 0;
|
277
|
+
height: 0;
|
278
|
+
}
|
279
|
+
-moz-appearance:textfield;
|
280
|
+
}
|
281
|
+
.ui-spinner-input {
|
282
|
+
margin: 0;
|
283
|
+
margin-right: 2em;
|
284
|
+
// overlapping rounded corners
|
285
|
+
border-top-right-radius: 15px;
|
286
|
+
border-bottom-right-radius: 15px;
|
287
|
+
}
|
288
|
+
.ui-spinner-button {
|
289
|
+
width: 2.5em;
|
290
|
+
height: 50%;
|
291
|
+
min-height: inherit;
|
292
|
+
padding: 0; margin: 0;
|
293
|
+
position: absolute;
|
294
|
+
right: 0;
|
295
|
+
line-height: 1em;
|
296
|
+
cursor: pointer;
|
297
|
+
.ui-icon {
|
298
|
+
display: none;
|
299
|
+
}
|
300
|
+
}
|
301
|
+
.ui-spinner-up {
|
302
|
+
top: 0;
|
303
|
+
border-bottom: none;
|
304
|
+
border-radius: 0 @button-border-radius 0 0;
|
305
|
+
.ui-button-text:after {
|
306
|
+
font-family: FontAwesome;
|
307
|
+
font-weight: normal;
|
308
|
+
content: "\f0d8";
|
309
|
+
}
|
310
|
+
}
|
311
|
+
.ui-spinner-down {
|
312
|
+
bottom: 0;
|
313
|
+
border-top: none;
|
314
|
+
border-radius: 0 0 @button-border-radius 0;
|
315
|
+
.ui-button-text:after {
|
316
|
+
font-family: FontAwesome;
|
317
|
+
font-weight: normal;
|
318
|
+
content: "\f0d7";
|
319
|
+
}
|
320
|
+
}
|
321
|
+
}
|
322
|
+
|
323
|
+
.ui-icon {
|
324
|
+
font-family: FontAwesome;
|
325
|
+
background: none repeat scroll 0 0 transparent;
|
326
|
+
text-indent: 0;
|
327
|
+
width: auto; height: auto;
|
328
|
+
min-width: 16px;
|
329
|
+
|
330
|
+
vertical-align: middle;
|
331
|
+
margin-top: 0;
|
332
|
+
margin-right: .5em;
|
333
|
+
}
|
334
|
+
.ui-icon-closethick:before {
|
335
|
+
content: @fa-var-times;
|
336
|
+
}
|
337
|
+
|
338
|
+
.ui-draggable .ui-dialog-titlebar {
|
339
|
+
cursor: move;
|
340
|
+
}
|
341
|
+
.ui-draggable-handle, .ui-sortable-handle {
|
342
|
+
-ms-touch-action: none;
|
343
|
+
touch-action: none;
|
344
|
+
}
|
@@ -0,0 +1,406 @@
|
|
1
|
+
@ie8hackprop: ~"\9"; // Match solo di IE8
|
2
|
+
@ie10modernhack: ~"(-ms-high-contrast: active), (-ms-high-contrast: none), not screen\0"; // Match di IE10+ e altri browser moderni
|
3
|
+
|
4
|
+
@input-padding-v: 5px; // .35em
|
5
|
+
@input-padding-h: 7px; // .5em
|
6
|
+
@input-margin-top: 10px; // 0.7em;
|
7
|
+
@input-margin-bottom: 10px; // 0.7em;
|
8
|
+
@input-margin-right: 7px; // .5em
|
9
|
+
@input-border-size: 1px;
|
10
|
+
|
11
|
+
.input-button-common() {
|
12
|
+
font-size: 1.0em;
|
13
|
+
line-height: normal; // Firefox uses a "line-height: normal !important" for input elements, resulting in "1.2". If we use "1.2" on chrome we get bigger text (li has 1.25). Using "normal" works fine on both.
|
14
|
+
min-height: (18px + @input-border-size * 2 + @input-padding-v * 2); // Select size on Firefox is 18px, while another input is 16px, this creates differences fixed by min-height.
|
15
|
+
min-height: (18px + @input-border-size * 2 )@ie8hackprop; // IE8 ignores box-sizing for minheight, so we don't add @input-padding-v
|
16
|
+
vertical-align: middle;
|
17
|
+
}
|
18
|
+
|
19
|
+
.button-style() {
|
20
|
+
.input-button-common();
|
21
|
+
display: inline-block;
|
22
|
+
background-color: @button-background-color;
|
23
|
+
border: @input-border-size solid @button-border-color; // hidden, but declared to keep size consistency between input and buttons.
|
24
|
+
color: @button-text-color;
|
25
|
+
li & { color: @button-text-color; } // Buttons inside LI should preserve their color (declared for "li a")
|
26
|
+
border-radius: @button-border-radius;
|
27
|
+
font-weight: bold;
|
28
|
+
cursor: pointer;
|
29
|
+
padding: @input-padding-v @input-padding-h;
|
30
|
+
margin: @input-margin-top @input-margin-right @input-margin-bottom 0;
|
31
|
+
text-decoration: none;
|
32
|
+
white-space: nowrap;
|
33
|
+
text-align: center;
|
34
|
+
font-weight: bold;
|
35
|
+
img {
|
36
|
+
vertical-align: middle;
|
37
|
+
margin: 0 .2em;
|
38
|
+
}
|
39
|
+
&:hover, &.pressed, &.selected /*, &.active*/ {
|
40
|
+
text-decoration: none;
|
41
|
+
background-color: @button-hover-background-color;
|
42
|
+
}
|
43
|
+
&.disabled {
|
44
|
+
color: @button-text-color-disabled;
|
45
|
+
a, .link { // .link serve solo per poter fare l'import a style_elements_jquery.less
|
46
|
+
color: @button-text-color-disabled;
|
47
|
+
}
|
48
|
+
&:hover {
|
49
|
+
background-color: @button-background-color;
|
50
|
+
border: @input-border-size solid @button-border-color;
|
51
|
+
color: @button-text-color-disabled;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
.container-inline & {
|
55
|
+
// width: auto; // IE8 has issues with this
|
56
|
+
}
|
57
|
+
&.inline {
|
58
|
+
margin: 0 @input-margin-right 0 0;
|
59
|
+
}
|
60
|
+
&.primary {
|
61
|
+
color: @button-primary-text-color;
|
62
|
+
background-color: @button-primary-background-color;
|
63
|
+
border-color: @button-primary-border-color;
|
64
|
+
&:hover {
|
65
|
+
background-color: darken(@button-primary-background-color, 10%);
|
66
|
+
border-color: darken(@button-primary-border-color, 10%);
|
67
|
+
}
|
68
|
+
}
|
69
|
+
&.big {
|
70
|
+
font-size: 1.5em;
|
71
|
+
border-radius: @large-button-border-radius;
|
72
|
+
padding: @input-padding-v*1.5 @input-padding-h*1.5;
|
73
|
+
//margin: @input-margin-top @input-margin-right @input-margin-bottom 0;
|
74
|
+
.suffix_icon {
|
75
|
+
font-size: 55%; // 53.5%
|
76
|
+
vertical-align: middle;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
&.with_button_dropdown_split { // Have to be AFTER .big and .primary
|
80
|
+
padding-right: 1.2em;
|
81
|
+
&.big {
|
82
|
+
padding-right: 1.8em;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
&.loading {
|
86
|
+
opacity: .5;
|
87
|
+
background-image: none; // Removes base ".loading" style
|
88
|
+
/* interesting CONTENT REPLACING alternative
|
89
|
+
position: relative;
|
90
|
+
color: transparent;
|
91
|
+
background: none;
|
92
|
+
background-color: lighten(@button-background-color, 40%);
|
93
|
+
border-color: lighten(@button-background-color, 40%);
|
94
|
+
&:after {
|
95
|
+
position: absolute;
|
96
|
+
left: 0; right: 0; top: 0; bottom: 0;
|
97
|
+
padding: @input-padding-v @input-padding-h;
|
98
|
+
color: @background-color;
|
99
|
+
content: '...';
|
100
|
+
}*/
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
.buttonset-style() {
|
105
|
+
margin-right: @input-margin-right;
|
106
|
+
vertical-align: middle;
|
107
|
+
font-size: 0;
|
108
|
+
> .ui-button {
|
109
|
+
font-size: @base-font-size;
|
110
|
+
margin-right: 1px;
|
111
|
+
border-radius: 0;
|
112
|
+
&.ui-corner-left {
|
113
|
+
border-radius: @button-border-radius 0 0 @button-border-radius;
|
114
|
+
}
|
115
|
+
&.ui-corner-right {
|
116
|
+
border-radius: 0 @button-border-radius @button-border-radius 0;
|
117
|
+
}
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
.input-base() {
|
122
|
+
.input-button-common;
|
123
|
+
display: inline-block;
|
124
|
+
border: @input-border-size solid transparent;
|
125
|
+
height: auto;
|
126
|
+
padding: @input-padding-v @input-padding-h;
|
127
|
+
margin: @input-margin-top 0 @input-margin-bottom 0;
|
128
|
+
width: 100%;
|
129
|
+
}
|
130
|
+
|
131
|
+
.input-style() {
|
132
|
+
.input-base;
|
133
|
+
color: @input-text-color;
|
134
|
+
background: none @input-background-color;
|
135
|
+
border-radius: @standard-border-radius;
|
136
|
+
border-color: @input-border-color;
|
137
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
|
138
|
+
transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
|
139
|
+
|
140
|
+
&:focus {
|
141
|
+
border-color: @input-focus-border-color;
|
142
|
+
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px fade(@input-focus-border-color, 60);
|
143
|
+
outline: 0 none;
|
144
|
+
}
|
145
|
+
&.inline {
|
146
|
+
margin-right: .5em;
|
147
|
+
width: auto;
|
148
|
+
}
|
149
|
+
}
|
150
|
+
|
151
|
+
.input-select() {
|
152
|
+
@media @ie10modernhack {
|
153
|
+
position: relative;
|
154
|
+
select {
|
155
|
+
-webkit-appearance: none;
|
156
|
+
-moz-appearance: none;
|
157
|
+
|
158
|
+
// IE10 & 11 for appearance: none
|
159
|
+
&::-ms-expand {
|
160
|
+
display: none;
|
161
|
+
}
|
162
|
+
|
163
|
+
padding-right:30px;
|
164
|
+
|
165
|
+
.input-button-common;
|
166
|
+
// sovrapposizioni arrotondamenti
|
167
|
+
border-top-right-radius: 15px;
|
168
|
+
border-bottom-right-radius: 15px;
|
169
|
+
}
|
170
|
+
|
171
|
+
&:after {
|
172
|
+
.button-style();
|
173
|
+
margin: 0;
|
174
|
+
|
175
|
+
position: absolute;
|
176
|
+
top: 0;
|
177
|
+
right: 0;
|
178
|
+
bottom: 0;
|
179
|
+
line-height: 30px;
|
180
|
+
width: 28px;
|
181
|
+
margin-right: 0;
|
182
|
+
border-top-left-radius: 0;
|
183
|
+
border-bottom-left-radius: 0;
|
184
|
+
|
185
|
+
/*
|
186
|
+
content: "▼";
|
187
|
+
font-size: 60%;
|
188
|
+
*/
|
189
|
+
|
190
|
+
font-family: FontAwesome;
|
191
|
+
content: "\f0d7";
|
192
|
+
font-weight: normal;
|
193
|
+
|
194
|
+
// padding: 0 8px;
|
195
|
+
pointer-events:none;
|
196
|
+
// box-sizing: border-box;
|
197
|
+
}
|
198
|
+
}
|
199
|
+
}
|
200
|
+
|
201
|
+
.win() {
|
202
|
+
border-radius: @large-border-radius;
|
203
|
+
// IE8 border
|
204
|
+
border: 0px solid @shadow-color;
|
205
|
+
border-width: 1px@ie8hackprop;
|
206
|
+
border-color: fade(@shadow-color, 0%);
|
207
|
+
box-shadow: 0 2px 20px @shadow-color;
|
208
|
+
color: @helpwin-text-color;
|
209
|
+
background-color: @helpwin-background-color;
|
210
|
+
padding: 0;
|
211
|
+
overflow: hidden;
|
212
|
+
}
|
213
|
+
|
214
|
+
.wintitle() {
|
215
|
+
position: relative; padding: .5em 1em .3em;
|
216
|
+
|
217
|
+
color: @text-color;
|
218
|
+
.ui-icon {
|
219
|
+
color: @text-color;
|
220
|
+
}
|
221
|
+
background: none @dialog-title-background-color;
|
222
|
+
border: none;
|
223
|
+
font-weight: bold;
|
224
|
+
border-radius: 0;
|
225
|
+
}
|
226
|
+
|
227
|
+
.popup-links-style() {
|
228
|
+
> li, > .dropdown-container > li {
|
229
|
+
display: block;
|
230
|
+
padding: 0; margin: 0;
|
231
|
+
//background-color: @popup-background-color;
|
232
|
+
|
233
|
+
> a { // Reverting .button()
|
234
|
+
display: block;
|
235
|
+
border: none;
|
236
|
+
padding: .5em;
|
237
|
+
margin: 0;
|
238
|
+
border-radius: 0;
|
239
|
+
position: relative;
|
240
|
+
overflow: hidden; text-overflow: ellipsis; // nowrap is in the container (usually .dropdown)
|
241
|
+
font-weight: bold;
|
242
|
+
background-color: transparent;
|
243
|
+
color: @text-color;
|
244
|
+
img {
|
245
|
+
vertical-align: text-top;
|
246
|
+
margin: 0 .5em 0 0;
|
247
|
+
}
|
248
|
+
&.disabled {
|
249
|
+
color: @text-greyed-color !important;
|
250
|
+
&:hover {
|
251
|
+
border: none;
|
252
|
+
}
|
253
|
+
}
|
254
|
+
.badge {
|
255
|
+
position: absolute;
|
256
|
+
right: 0;
|
257
|
+
margin-left: 1em;
|
258
|
+
top: .6em;
|
259
|
+
}
|
260
|
+
}
|
261
|
+
> a when (@button-reversed = true) {
|
262
|
+
color: @link-color;
|
263
|
+
}
|
264
|
+
&:hover {
|
265
|
+
background-color: @button-background-color;
|
266
|
+
color: @button-text-color;
|
267
|
+
a {
|
268
|
+
color: @button-text-color;
|
269
|
+
}
|
270
|
+
}
|
271
|
+
// add a small border on cell_links inside rows for popup_links in dropdown
|
272
|
+
.cell_links > li > a {
|
273
|
+
border-color: mix(@popup-background-color, @text-color, 50%);
|
274
|
+
}
|
275
|
+
&.separator {
|
276
|
+
border-top: 1px solid @button-background-color;
|
277
|
+
margin: .5em 0;
|
278
|
+
}
|
279
|
+
}
|
280
|
+
&.table_columns {
|
281
|
+
> li, > .dropdown-container > li {
|
282
|
+
> a {
|
283
|
+
display: table-cell;
|
284
|
+
vertical-align: middle;
|
285
|
+
width: 100%;
|
286
|
+
}
|
287
|
+
> .table_column {
|
288
|
+
display: table-cell;
|
289
|
+
vertical-align: middle;
|
290
|
+
width: auto;
|
291
|
+
/*.button {
|
292
|
+
margin: 0 .5em;
|
293
|
+
color: @button-text-color;
|
294
|
+
}*/
|
295
|
+
}
|
296
|
+
}
|
297
|
+
}
|
298
|
+
}
|
299
|
+
|
300
|
+
@dropdown-padding-v: .5em;
|
301
|
+
@dropdown-padding-h: 1em;
|
302
|
+
|
303
|
+
.dropdown-style() {
|
304
|
+
position: absolute;
|
305
|
+
z-index: @zindex-popup;
|
306
|
+
margin: 0; // Basic margin for simple dropdown on simple link (button dropdown will declare their margin later)
|
307
|
+
padding: @dropdown-padding-v @dropdown-padding-h;
|
308
|
+
border-radius: @button-border-radius;
|
309
|
+
// IE8 border
|
310
|
+
border: 0px solid @shadow-color;
|
311
|
+
border-width: 1px@ie8hackprop;
|
312
|
+
// trasparented border for supporting browsers
|
313
|
+
border-color: fade(@shadow-color, 0%);
|
314
|
+
box-shadow: 0 4px 10px @shadow-color;
|
315
|
+
background-color: @popup-background-color;
|
316
|
+
// border: 0;
|
317
|
+
max-height: 300px;
|
318
|
+
overflow: auto;
|
319
|
+
min-width: 100%;
|
320
|
+
max-width: 25em;
|
321
|
+
white-space: normal; // dropdown-container inser a nowrap, but the dropdown content could be a simple div with text.
|
322
|
+
&.dropdown-right { right: 0; }
|
323
|
+
&.dropdown-bottom { bottom: 0; }
|
324
|
+
a.button + div.dropdown_spacer + &, .button_links &, .links.inline & {
|
325
|
+
margin: -.4em 0 0 0;
|
326
|
+
}
|
327
|
+
.cell_links &, .top_links &, .box_top_links &, .slide_links & /*, .slide_links a.button + div.dropdown_spacer + &*/ {
|
328
|
+
margin: .2em 0 0 0;
|
329
|
+
}
|
330
|
+
hr {
|
331
|
+
margin: .5em -@dropdown-padding-h;
|
332
|
+
border-top: 1px solid lighten(@button-background-color, 40%); // Like button.active
|
333
|
+
box-shadow: none;
|
334
|
+
}
|
335
|
+
.container-inline & {
|
336
|
+
display: block;
|
337
|
+
}
|
338
|
+
.dropdown_footer {
|
339
|
+
padding: @dropdown-padding-v 0 0 0; margin: 0;
|
340
|
+
}
|
341
|
+
}
|
342
|
+
|
343
|
+
.tabs-style(@activeclass: ~'.active', @buttonstyle: false) {
|
344
|
+
& when (@buttonstyle) {
|
345
|
+
background-color: @sidebar-background-color;
|
346
|
+
}
|
347
|
+
margin: 0;
|
348
|
+
border-bottom: @tabs-border-width solid @accent-color;
|
349
|
+
.clear-after;
|
350
|
+
li {
|
351
|
+
float: left;
|
352
|
+
list-style-type: none;
|
353
|
+
margin: .4em 0 -@tabs-border-width 0; // margin-top used to show good tabs when they wrap on multiple lines
|
354
|
+
display: block;
|
355
|
+
text-align: center;
|
356
|
+
> a {
|
357
|
+
display: block;
|
358
|
+
padding: .5em 1em;
|
359
|
+
margin: 0 .5em 0 0;
|
360
|
+
border-radius: @button-border-radius @button-border-radius 0 0;
|
361
|
+
& when (@buttonstyle) {
|
362
|
+
background-color: @button-background-color;
|
363
|
+
color: @button-text-color;
|
364
|
+
border: none;
|
365
|
+
font-weight: bold;
|
366
|
+
&:hover {
|
367
|
+
background-color: @button-hover-background-color;
|
368
|
+
}
|
369
|
+
}
|
370
|
+
& when not (@buttonstyle) {
|
371
|
+
background-color: @accent-color;
|
372
|
+
border: @tabs-border-width solid @accent-color;
|
373
|
+
}
|
374
|
+
}
|
375
|
+
a:focus {
|
376
|
+
outline: 0 none !important;
|
377
|
+
}
|
378
|
+
}
|
379
|
+
li@{activeclass} a {
|
380
|
+
border-bottom: @tabs-border-width solid @background-color;
|
381
|
+
background: transparent;
|
382
|
+
font-weight: bold;
|
383
|
+
& when(@buttonstyle) {
|
384
|
+
background-color: @background-color;
|
385
|
+
color: @text-color;
|
386
|
+
}
|
387
|
+
& when not (@buttonstyle) {
|
388
|
+
background-color: transparent;
|
389
|
+
color: @text-color;
|
390
|
+
}
|
391
|
+
}
|
392
|
+
|
393
|
+
}
|
394
|
+
|
395
|
+
|
396
|
+
.clear-after() {
|
397
|
+
&:after {
|
398
|
+
content: "";
|
399
|
+
display: table;
|
400
|
+
clear: both;
|
401
|
+
}
|
402
|
+
}
|
403
|
+
.no-focus() {
|
404
|
+
&:focus, &:-moz-focusring { outline: 0 none !important; }
|
405
|
+
&::-moz-focus-inner { border: none; }
|
406
|
+
}
|