Region selector should be better displayed vertically

This commit is contained in:
echarp 2017-05-27 18:21:07 +02:00
parent bab8ba32ab
commit 323ec7d276
8 changed files with 91118 additions and 1 deletions

View File

@ -36,8 +36,10 @@
background-color: white
label
display: none
padding: 0.2em 0.5em
input:checked + label
display: inline
padding: 0.5em
&:hover .radios
z-index: 1000
position: absolute

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,23 @@
(function() {
$(document).on('turbolinks:load', function() {
return tinyMCE.init({
schema: 'html5',
height: '40em',
menubar: '',
branding: false,
language: 'fr_FR',
selector: 'input.description',
content_css: '/assets/application-fb17db3f760af6f9539d031a589f8cef79804da76167b26e7e272e5aee93c729.css',
entity_encoding: 'raw',
add_unload_trigger: true,
browser_spellcheck: true,
toolbar: [' cut copy paste | undo redo | searchreplace | link image media charmap table | code visualblocks preview fullscreen', ' removeformat | bold italic strikethrough | superscript subscript | bullist numlist | alignleft aligncenter alignright alignjustify alignnone | outdent indent'],
plugins: 'lists, advlist, autolink, link, image, charmap, paste, print, preview, table, fullscreen, searchreplace, media, insertdatetime, visualblocks, wordcount, contextmenu, code'
});
});
$(document).on('turbolinks:before-cache', function() {
return tinymce.remove();
});
}).call(this);