The css to position legend markers was overriden by the vendor styles...

This commit is contained in:
echarp 2016-05-23 01:54:46 +02:00
parent 1d5eac21f2
commit f16f7c780c
9 changed files with 93205 additions and 5 deletions

View File

@ -24,9 +24,9 @@
form.leaflet-control-layers-list label form.leaflet-control-layers-list label
text-align: left text-align: left
.awesome-marker .awesome-marker
height: auto height: auto !important
display: inline-block display: inline-block !important
position: relative position: relative !important
html.iframe #map html.iframe #map
width: 100% width: 100%

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).ready(function() {
return tinyMCE.init({
schema: 'html5',
menubar: false,
language: 'fr_FR',
selector: 'textarea.description',
content_css: '/assets/application-80267254eb940edca206faebfaaef536c10bb76d2332249a101cb05f18e6f833.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('page:receive', function() {
return tinymce.remove();
});
}).call(this);