Changeset 10780
- Timestamp:
- May 6, 2011, 8:35:01 AM (14 years ago)
- Location:
- extensions/gally/gally-cuise
- Files:
-
- 3 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/gally/gally-cuise/conf/default.conf
r8576 r10780 214 214 # The 'menuWidth' option can also take any positive integer value wich define a 215 215 # fixed width in pixels 216 menuWidth = " auto"216 menuWidth = "190" 217 217 218 218 # The 'menuMaxWidth' option is used when the 'menuWidth' option is set to "auto" … … 225 225 # 'menuMSIEMaxWidth' option you can force a maximum width only for this browser 226 226 # This option is not used when the 'menuAnimated' option is set to "noswitch" 227 menuMaxWidth = 0227 menuMaxWidth = 190 228 228 menuMSIEMaxWidth = 190 229 229 -
extensions/gally/gally-cuise/css/theme.css
r8576 r10780 1294 1294 1295 1295 } 1296 1296 #theImg{ 1297 height:600 ; 1298 } -
extensions/gally/gally-cuise/themeconf.inc.php
r8584 r10780 2 2 /* 3 3 Theme Name: Gally/Cuise 4 Version: 2.0.24 Version: auto 5 5 Description: Cuise theme 6 6 Theme URI: http://piwigo.org/ext/extension_view.php?eid=398 … … 9 9 */ 10 10 11 $themeconf = array( 11 if ( PHPWG_VERSION < "2.2.0" ) 12 { 13 $themeconf = array( 12 14 'name' => 'gally-cuise', 13 15 'theme' => 'gally-cuise', … … 15 17 'icon_dir' => 'themes/gally-cuise/icon', 16 18 'mime_icon_dir' => 'themes/gally-cuise/icon/mimetypes/', 17 19 'local_head' => realpath('head_1.tpl') 20 ); 21 } else { 22 $themeconf = array( 23 'name' => 'gally-cuise', 24 'theme' => 'gally-cuise', 25 'parent' => 'gally-default', 26 'icon_dir' => 'themes/gally-cuise/icon', 27 'mime_icon_dir' => 'themes/gally-cuise/icon/mimetypes/', 28 'local_head' => realpath('head_2.tpl') 29 18 30 ); 31 } 32 19 33 ?>
Note: See TracChangeset
for help on using the changeset viewer.