diff --git a/CHANGES.md b/CHANGES.md index cbf0a9b..788f348 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,9 +2,15 @@ ## Version 4.5.03 de Deltacms - Modifications : - + - Mise à jour des icônes, + - Gabarits de page : Color box, une boîte colorée sans marge en petit écran, couleurs paramétrables dans l'éditeur CSS, + - Album 4.5 : + - Form 5.0 : Saisie et mise en forme des messages avec Tinymce, - Corrections : - + - Form 5.0 : la longueur des messages n'est plus limitée à 500 caractères. +- Sur le site : + - Bonus / Vidéos pour le module album photo, + - Bonus / Scripts : Script dans head ou dans body limité à certaines pages. ## Version 4.5.02 de Deltacms - Modifications : diff --git a/core/module/theme/resource/custom.css b/core/module/theme/resource/custom.css index 03b7ad9..c1437a9 100644 --- a/core/module/theme/resource/custom.css +++ b/core/module/theme/resource/custom.css @@ -1,17 +1,16 @@ /** - * Voici une feuille de style type, bien entendu vous pouvez ajouter - * ou supprimer des propriétés CSS en fonction de vos besoins. - */ + * Voici une feuille de style type, bien entendu vous pouvez ajouter ou supprimer des propriétés CSS en fonction de vos besoins.*/ +/* Here is a typical style sheet, of course you can add or remove CSS properties according to your needs.*/ + +/* Pour activer la popup de recherche positionner le curseur dans la zone d'édition puis Ctrl + F ou Cmd + F */ +/* To activate the search popup position the cursor in the editing area then Ctrl + F or Cmd + F */ /** * Éléments principaux */ -/* -* Grille du site -* Barres et page -*/ +/* Grille du site, barres et page */ #contentLeft { } #contentRight { @@ -43,8 +42,7 @@ nav a:hover { nav a.active { } -/* Menu latéral */ -/* aspect des puces */ +/* Menu latéral, aspect des puces */ ul #menuSide { } /* Block menu à droite */ @@ -54,7 +52,6 @@ ul #menuSide { #menuSideLeft { } - /* Bas de page */ footer { } @@ -85,10 +82,7 @@ footer #footersiteRight, #footerbodyRight { */ /* Titres */ -h1, -h2, -h3, -h4 { +h1, h2, h3, h4 { } /* Liens */ @@ -146,39 +140,26 @@ select:hover, textarea:hover { } -/* Modules News et Blog */ - -.blogDate { +/* Titre sous image Caption */ +/* +figure.image { + display: inline-block; + border: 1px solid gray; + margin: 0 6px; + background-color: #f5f2f0; } -.blogPicture { +figure.image img { + margin: 0; } -.blogPicture img { -} - -.blogComment { -} - -.blogTitle { -} - -.blogContent { -} - -.newsTitle { - /*background-color: grey;*/ -} - -.newsContent { -} - -.newsSignature { - color: #404040; +figure.image figcaption { + margin: 4px; + text-align: center; } +*/ /* Consentement aux cookies */ - /* #cookieConsent { width: 80%; @@ -204,40 +185,62 @@ textarea:hover { background: rgba(0,50,255,1); color: rgba(255,255,255,1); } - */ -/* Titre sous image */ - -/* -figure.image { - display: inline-block; - border: 1px solid gray; - margin: 0 6px; - background-color: #f5f2f0; +/* Gabarit Color box */ +.colorbox-0 { + color: #F7F6CF; + background-color: #5784BA; +} +.colorbox-0 a { + color: #FFBF66; +} +.colorbox-0 h2, .colorbox-0 h3{ + color: #F4CFDF; } -figure.image img { - margin: 0; -} -figure.image figcaption { - margin: 4px; - text-align: center; -} -*/ +/** + * Modules de page par ordre alphabétique + */ + /* Module Agenda : grille de l'agenda */ -.fc-unthemed th, .fc-unthemed td, .fc-unthemed thead, .fc-unthemed tbody, .fc-unthemed .fc-divider, .fc-unthemed .fc-row, .fc-unthemed .fc-content, .fc-unthemed .fc-popover, .fc-unthemed .fc-list-view, .fc-unthemed .fc-list-heading td, .fc .fc-row .fc-content-skeleton td{ +.fc-unthemed th, .fc-unthemed td, .fc-unthemed thead, .fc-unthemed tbody, .fc-unthemed .fc-divider, +.fc-unthemed .fc-row, .fc-unthemed .fc-content, .fc-unthemed .fc-popover, .fc-unthemed .fc-list-view, +.fc-unthemed .fc-list-heading td, .fc .fc-row .fc-content-skeleton td{ border-color: rgba(146, 52, 101, 1); } -/* Module Album photo */ -/* Cases contenant les vignettes */ +/* Module Album photo : Cases contenant les vignettes */ .galleryPicture, .galleryGalleryPicture { /*exemple background-color: green;*/ } .galleryPicture:hover, .galleryGalleryPicture:hover { /*exemple background-color: yellow;*/ } + +/* Module Blog */ +.blogDate { +} +.blogPicture { +} +.blogPicture img { +} +.blogComment { +} +.blogTitle { +} +.blogContent { +} + +/* Module News */ +.newsTitle { + /*background-color: grey;*/ +} +.newsContent { +} +.newsSignature { + color: #404040; +} diff --git a/core/vendor/tinymce/init.js b/core/vendor/tinymce/init.js index 3725b22..c3ef561 100644 --- a/core/vendor/tinymce/init.js +++ b/core/vendor/tinymce/init.js @@ -45,6 +45,11 @@ var templatesList = [ url: baseUrl + "core/vendor/tinymce/templates/4blocks.html", description: "4 blocs de texte, de même hauteur, avec un titre en ligne." }, + { + title: "Color box", + url: baseUrl + "core/vendor/tinymce/templates/colorbox.html", + description: "Boîte colorée sans marge en petit écran." + }, { title: "Effet accordéon : 2", url: baseUrl + "core/vendor/tinymce/templates/accordion.html", diff --git a/core/vendor/tinymce/plugins/codemirror/codemirror/jsbody.inc.json b/core/vendor/tinymce/plugins/codemirror/codemirror/jsbody.inc.json index 2bcad1c..a9588fa 100644 --- a/core/vendor/tinymce/plugins/codemirror/codemirror/jsbody.inc.json +++ b/core/vendor/tinymce/plugins/codemirror/codemirror/jsbody.inc.json @@ -6,5 +6,7 @@ "mode/javascript/javascript.js", "mode/php/php.js", "mode/xml/xml.js", - "init.js" + "init.js", + "addon/search/search.js", + "addon/search/searchcursor.js" ] \ No newline at end of file diff --git a/core/vendor/tinymce/templates/colorbox.html b/core/vendor/tinymce/templates/colorbox.html new file mode 100644 index 0000000..cf8f4ad --- /dev/null +++ b/core/vendor/tinymce/templates/colorbox.html @@ -0,0 +1,9 @@ +
+
+

Vous pouvez paramétrer les couleurs de la boîte dans l'éditeur CSS accessible depuis la personnalisation des thèmes.

+

You can configure the colors of the box in the CSS editor accessible from the theme customization.

+

Lien

+

h2

h3

+
+
+

Conserver jusqu'à la fin de la mise en page pour faciliter les insertions.

\ No newline at end of file