Font familly removed, so that the browser's default font will apply

This commit is contained in:
echarp 2016-11-08 15:07:32 +01:00
parent 2a4e71f7a9
commit ed8bbfb718
9 changed files with 75885 additions and 4 deletions

View File

@ -14,7 +14,7 @@ html
color: black
height: 100%
text-align: center
font-family: Palatino, 'URW Palladio L', 'dejavu serif', georgia, serif
font-family: sans-serif
background-color: #9CC5EE
// Integrating adl in another website
&.iframe
@ -125,7 +125,8 @@ main, body.mce-content-body
padding-left: 1em
list-style-position: inside
p
text-align: justify
text-align: left
line-height: 1.5
&.label
text-align: center
span.label:after

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

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-f2d72dc4c05dfe80ab6153117449d39205699b94442e7a074504ccdae8eb1eda.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);