Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:2.0:aenderungshistorie_fuer_themes_42 [2023/01/29 15:34] – [Change history for themes in version 4.2] fasseen:2.0:aenderungshistorie_fuer_themes_42 [2023/07/09 20:25] (current) fasse
Line 5: Line 5:
  
 If your changes are bigger and you don't want to simply replace the theme folder, all changes are documented here and you have to add them to your theme yourself. Check which version of Admidio you have used so far and look for an entry that corresponds to this version or higher. You have to update all documented changes from this entry on. If your changes are bigger and you don't want to simply replace the theme folder, all changes are documented here and you have to add them to your theme yourself. Check which version of Admidio you have used so far and look for an entry that corresponds to this version or higher. You have to update all documented changes from this entry on.
 +
 +===== Version 4.2.10 =====
 +  * The following file must be //replaced// into the corresponding theme folder: 
 +    * ''adm_themes/your-theme-folder/templates/sys-template-parts/form.multiline.tpl''
 +
 +  * Add the following block in the file ''adm_themes/your-theme-folder/css/admidio.css'':<code css>.admidio-img-presenter img {
 +    max-width: 100%;
 +    height: auto;
 +}</code>
 +
 +  * Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 218):<code css>@media (max-width: 767px)
 +{
 +    .btn-group {
 +        display: block;
 +    }</code> Replace the block with this code:<code css>@media (max-width: 500px)
 +{
 +    .btn-group {
 +        display: block;
 +    }</code> 
 +
 +===== Version 4.2.8 =====
 +  * Remove the following block within the file ''adm_themes/your-theme-folder/css/admidio.css'' (around line 150):<code css>h6, h5 {
 +    font-weight: bold;
 +}</code>
 +  * Remove the following block within the file ''adm_themes/your-theme-folder/css/admidio.css'' (around line 572):<code css>.admidio-plugin-content ul {
 +    padding-left: 15px;
 +}
 +
 +#plugin-latest-documents-files hr {
 +    margin: 5px 0px;
 +}</code>
 +
 +===== Version 4.2.7 =====
 +  * The following file must be //replaced// into the corresponding theme folder: 
 +    * ''adm_themes/your-theme-folder/templates/sys-template-parts/form.multiline.tpl''
 +    * ''adm_themes/your-theme-folder/templates/sys-template-parts/parts/form.part.iconhelp.tpl''
 +  * Remove the following block within the file ''adm_themes/your-theme-folder/css/admidio.css'' (around line 554):<code css>.admidio-attachment {
 +    margin-left: 20px;
 +}</code>
 +
 +===== Version 4.2.5 =====
 +  * Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 318):<code css>.datetime-date-control {
 +    display: inline;
 +}
 +
 +.datetime-time-control {
 +    width: 110px !important;
 +    margin-left: 20px;
 +}</code> Replace the block with this code:<code css>.datetime-date-control {
 +    display: inline-block;
 +}
 +
 +.datetime-time-control {
 +    display: inline-block;
 +    width: 110px !important;
 +    margin-left: 20px;
 +}</code> 
 +
 +===== Version 4.2.3 =====
 +  * The following file must be //replaced// into the corresponding theme folder: 
 +    * ''adm_themes/your-theme-folder/templates/sys-template-parts/form.button.tpl''
  
 ===== Version 4.2.0 ===== ===== Version 4.2.0 =====
Line 55: Line 116:
 }</code>  }</code> 
  
-  * Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 318):<code css>.datetime-time-control {+  * Search within the file ''adm_themes/dein-ausgewähltes-Theme/css/admidio.css'' the following code (around line 318):<code css>.datetime-date-control { 
 +    display: inline; 
 +
 + 
 +.datetime-time-control {
     width: 100px !important;     width: 100px !important;
     margin-left: 20px;     margin-left: 20px;
-}</code> Replace the block with this code:<code css>.datetime-time-control {+}</code> Replace the block with this code:<code css>.datetime-date-control { 
 +    display: inline-block; 
 +
 + 
 +.datetime-time-control { 
 +    display: inline-block;
     width: 110px !important;     width: 110px !important;
     margin-left: 20px;     margin-left: 20px;
  • en/2.0/aenderungshistorie_fuer_themes_42.1675002875.txt.gz
  • Last modified: 2023/01/29 15:34
  • by fasse