Skip to content
Extraits de code Groupes Projets
Valider bc81a2fb rédigé par echarp's avatar echarp
Parcourir les fichiers

Event calendar better displayed on small screens: past events only visible...

Event calendar better displayed on small screens: past events only visible when hovering over the current month
parent ce956fcd
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
Affichage de
avec 75879 ajouts et 5 suppressions
...@@ -70,12 +70,18 @@ ...@@ -70,12 +70,18 @@
margin: 1px margin: 1px
display: block display: block
font-size: larger font-size: larger
min-height: 0.8em min-height: 1em
border-width: 1px !important border-width: 1px !important
&.prev-month, &.next-month &.prev-month, &.next-month, &.current-month.past
display: none display: none
.day_number .day_number
float: right font-size: initial
.event a
padding: 0.4em 1em
header
&:active, &:hover
& + table tr td.current-month.past
display: block
&.versions, &.orgas &.versions, &.orgas
table tbody table tbody
......
Fichier ajouté
(function() {
$(document).on('turbolinks:load', function() {
return tinyMCE.init({
schema: 'html5',
menubar: false,
language: 'fr_FR',
selector: 'textarea.description',
content_css: '/assets/application-b9b99ff20b9d59898b90e2588c9c2dcdbd5d469360d5ed4e7009177b89f183da.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);
Fichier ajouté
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter