Better tag cloud display

This commit is contained in:
echarp 2016-12-17 22:49:01 +01:00
parent 690cee92c3
commit 179ec98cf0
8 changed files with 77802 additions and 4 deletions

View File

@ -6,13 +6,13 @@ p.tags a:last-child:after
content: ''
.css1
font-size: 1.0em
font-size: 0.8em
.css2
font-size: 1.2em
font-size: 1.0em
.css3
font-size: 1.4em
.css4
font-size: 1.6em
font-size: 1.8em
.tagsinput
border: none !important

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,21 @@
(function() {
$(document).on('turbolinks:load', function() {
return tinyMCE.init({
schema: 'html5',
menubar: false,
language: 'fr_FR',
selector: 'textarea.description',
content_css: '/assets/application-1ea0f88318a587e6ca20994d21c9db4627195434bcc8a52f59e75be21b50f937.css',
entity_encoding: 'raw',
add_unload_trigger: true,
browser_spellcheck: true,
toolbar: [' bold italic strikethrough | bullist numlist outdent indent | alignleft aligncenter alignright alignjustify | link image media insertdatetime charmap table | undo redo | searchreplace | code visualblocks preview fullscreen'],
plugins: 'lists, advlist, autolink, link, image, charmap, paste, print, preview, table, fullscreen, searchreplace, media, insertdatetime, visualblocks, visualchars, wordcount, contextmenu, code'
});
});
$(document).on('turbolinks:before-cache', function() {
return tinymce.remove();
});
}).call(this);