Better tag cloud display
This commit is contained in:
parent
690cee92c3
commit
179ec98cf0
@ -6,13 +6,13 @@ p.tags a:last-child:after
|
|||||||
content: ''
|
content: ''
|
||||||
|
|
||||||
.css1
|
.css1
|
||||||
font-size: 1.0em
|
font-size: 0.8em
|
||||||
.css2
|
.css2
|
||||||
font-size: 1.2em
|
font-size: 1.0em
|
||||||
.css3
|
.css3
|
||||||
font-size: 1.4em
|
font-size: 1.4em
|
||||||
.css4
|
.css4
|
||||||
font-size: 1.6em
|
font-size: 1.8em
|
||||||
|
|
||||||
.tagsinput
|
.tagsinput
|
||||||
border: none !important
|
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
Binary file not shown.
File diff suppressed because one or more lines are too long
Binary file not shown.
@ -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);
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user