no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
— | en:2.0:aenderungshistorie_fuer_themes_23 [2015/10/28 17:34] (current) – created thomas-rcv | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Change history for Themes in Version 2.3 ====== | ||
+ | This page lists all changes in the Theme folder inside the Version 2.3. If you update to a new version, so you have update all the changes from your previous version to your new version Admidio, | ||
+ | The changes shown here always refer to both of our standard themes. Did you make changes here, so you have to consider when assigning these adjustments if necessary. This can, for example, be the case with colors. | ||
+ | |||
+ | ===== Renaming of variables ===== | ||
+ | In version 2.3, we have renamed some variables. If you have made adjustments to the Theme itself or to other parts in Admidio, where PHP code is used, you may have to replace the following Varialben by its new name: | ||
+ | |||
+ | ^ Previous Name ^ New Name ^ | ||
+ | | $g_current_organization | ||
+ | | $g_current_session | ||
+ | | $g_current_user | ||
+ | | $g_db | $gDb | ||
+ | | $g_homepage | ||
+ | | $g_l10n | ||
+ | | $g_layout | ||
+ | | $g_preferences | ||
+ | | $g_valid_login | ||
+ | |||
+ | |||
+ | |||
+ | ===== Version 2.3.0 ===== | ||
+ | When updating from version 2.2.1 or later, the following files need to be adjusted in the Theme folder. Changes to version 2.2.0, check out [[aenderungshistorie_fuer_themes_22|Change history of 2.2]]\\ | ||
+ | (if you have not made changes, you can also upload the entire folders and just only adjust the CSS folder manually) | ||
+ | |||
+ | * The following files must //be replaced// in the appropriate folders: | ||
+ | **my_body_bottom.php (or manual adjustment of the variables) **\\ | ||
+ | **images/ | ||
+ | **css/ | ||
+ | |||
+ | |||
+ | * The following files must //be removed// in the appropriate folders: | ||
+ | **ecard_templates/ | ||
+ | **ecard_templates/ | ||
+ | **ecard_templates/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | |||
+ | |||
+ | * The following files must //be added// in the appropriate folders: | ||
+ | **css/ | ||
+ | **ecard_templates/ | ||
+ | **ecard_templates/ | ||
+ | **ecard_templates/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **icons/ | ||
+ | **images/ | ||
+ | |||
+ | |||
+ | == Replace block in css/ | ||
+ | <code css>/* Einstellung fuer die Thumbnailtabellenzeilen */ | ||
+ | .photoThumbnailRow{ | ||
+ | text-align: center; | ||
+ | list-style-type: | ||
+ | clear: left; | ||
+ | }</ | ||
+ | with: <code css>/* Einstellung fuer die Thumbnailtabellenzeilen */ | ||
+ | .photoThumbnailRows{ | ||
+ | padding: 0px; | ||
+ | list-style-type: | ||
+ | } | ||
+ | |||
+ | .photoThumbnailRow{ | ||
+ | clear: left; | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | == Replace block in css/ | ||
+ | <code css> | ||
+ | color: | ||
+ | font-family: | ||
+ | font-size: | ||
+ | background-color: | ||
+ | text-align: | ||
+ | }</ | ||
+ | with: <code css> | ||
+ | color: | ||
+ | font-family: | ||
+ | font-size: | ||
+ | background-color: | ||
+ | text-align: | ||
+ | margin: | ||
+ | }</ | ||
+ | |||
+ | == Replace block in css/ | ||
+ | <code css> | ||
+ | color: | ||
+ | background-color: | ||
+ | border: | ||
+ | padding: | ||
+ | text-align: | ||
+ | margin-top: | ||
+ | }</ | ||
+ | with: <code css> | ||
+ | color: | ||
+ | background-color: | ||
+ | border: | ||
+ | padding: | ||
+ | text-align: | ||
+ | margin-top: | ||
+ | }</ | ||
+ | |||
+ | == Delete block in css/ | ||
+ | <code css> | ||
+ | font-size: | ||
+ | } | ||
+ | |||
+ | .bigFontSize { | ||
+ | font-size: | ||
+ | }</ | ||
+ | |||
+ | == Add block in css/ | ||
+ | <code css> | ||
+ | font-family: | ||
+ | font-size: | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | == Delete block in css/ | ||
+ | <code css> | ||
+ | background-color: | ||
+ | border-width: | ||
+ | } | ||
+ | |||
+ | textarea { | ||
+ | font-family: | ||
+ | font-size: | ||
+ | } | ||
+ | |||
+ | /* Hack fuer IE6, damit dieser lange Buttons vernuenftig darstellt */ | ||
+ | html.* button { | ||
+ | padding: | ||
+ | width: | ||
+ | overflow: | ||
+ | }</ | ||
+ | |||
+ | == Replace block in css/ | ||
+ | <code css> | ||
+ | display: | ||
+ | text-align: | ||
+ | } | ||
+ | .formFieldList li dl { | ||
+ | padding: | ||
+ | margin: | ||
+ | } | ||
+ | .formFieldList li dl dt { | ||
+ | text-align: | ||
+ | float: | ||
+ | } | ||
+ | .formFieldList li dl dd { | ||
+ | margin-left: | ||
+ | text-align: | ||
+ | }</ | ||
+ | with: <code css> | ||
+ | text-align: | ||
+ | } | ||
+ | .formFieldList > li > dl, | ||
+ | .formFieldList > li > div { | ||
+ | padding: | ||
+ | margin: | ||
+ | } | ||
+ | .formFieldList > li > dl > dt { | ||
+ | text-align: | ||
+ | float: | ||
+ | } | ||
+ | .formFieldList > li > dl > dd { | ||
+ | margin-left: | ||
+ | text-align: | ||
+ | }</ | ||
+ | |||
+ | == Replace block in css/ | ||
+ | <code css> | ||
+ | width: | ||
+ | color: | ||
+ | font-size: | ||
+ | background-color: | ||
+ | border: | ||
+ | margin: | ||
+ | }</ | ||
+ | with: <code css> | ||
+ | width: | ||
+ | color: | ||
+ | font-size: | ||
+ | background-color: | ||
+ | border: | ||
+ | margin: | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | == Replace block in css/ | ||
+ | <code css> | ||
+ | border: | ||
+ | vertical-align: | ||
+ | padding-right: | ||
+ | }</ | ||
+ | with: <code css> | ||
+ | border: | ||
+ | vertical-align: | ||
+ | padding-right: | ||
+ | width: | ||
+ | height: | ||
+ | }</ | ||
+ | |||
+ | == Replace block in css/ | ||
+ | <code css> | ||
+ | border: | ||
+ | vertical-align: | ||
+ | margin: | ||
+ | }</ | ||
+ | with: <code css> | ||
+ | border: | ||
+ | vertical-align: | ||
+ | margin: | ||
+ | width: | ||
+ | height: | ||
+ | }</ | ||
+ | |||
+ | == Replace block in css/ | ||
+ | <code css> | ||
+ | cursor: | ||
+ | vertical-align: | ||
+ | margin-left: | ||
+ | margin-right: | ||
+ | }</ | ||
+ | with: <code css> | ||
+ | cursor: | ||
+ | vertical-align: | ||
+ | margin-left: | ||
+ | margin-right: | ||
+ | width: | ||
+ | height: | ||
+ | }</ | ||
+ | |||
+ | == Replace block in css/ | ||
+ | <code css> | ||
+ | border: | ||
+ | cursor: | ||
+ | vertical-align: | ||
+ | margin: | ||
+ | }</ | ||
+ | with: <code css> | ||
+ | border: | ||
+ | cursor: | ||
+ | vertical-align: | ||
+ | margin-left: | ||
+ | width: | ||
+ | height: | ||
+ | }</ | ||
+ | |||
+ | == Replace block in css/ | ||
+ | <code css># | ||
+ | margin-top: | ||
+ | margin-bottom: | ||
+ | } | ||
+ | |||
+ | # | ||
+ | margin-left: | ||
+ | }</ | ||
+ | with: <code css># | ||
+ | margin-top: | ||
+ | margin-bottom: | ||
+ | } | ||
+ | |||
+ | # | ||
+ | margin-left: | ||
+ | }</ | ||
+ | |||
+ | |||
+ | == Add Block in css/ | ||
+ | <code css>/* spezielle Anpassung fuer die Profilseite */ | ||
+ | # | ||
+ | min-height: | ||
+ | }</ |