- Timestamp:
- Jul 22, 2008, 8:38:56 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/template/yoga/theme/admin/theme.css
r2446 r2449 2 2 /* text color */ 3 3 body, h3, dt, h2, .throw, .content, 4 input.rateButtonSelected /* <= why IE doesn't inherit this ? */ { 5 color:#ccc; } 4 input.rateButtonSelected /* <= why IE doesn't inherit this ? */ { color:#ccc; } 6 5 input.text, input.button, input.submit, input.reset, input.file, select, textarea { 7 6 color:#444; } 8 7 input.rateButton, legend, #theAdminPage h3 { color: #777; } 9 8 #theAdminPage h2 { color: #333; } 10 /* common */ 11 .content .infos { 12 color: #3f6; border:0pt none; background-color: transparent; 13 padding:5px 0px 0pt 10pt; min-height: 48px; text-align:left; } 9 10 .content .infos { color: #3f6; border:0pt none; background-color: transparent; 11 padding:5px 0px 0pt 10pt; min-height: 48px; text-align:left; } 14 12 .content .infos li, .content .errors li { list-style-type:none; } 15 .content .errors { 16 color: #f70; border:0pt none; font-weight:bold; background-color: transparent; 17 padding:5px 0px 0pt 10pt; min-height: 48px; text-align:left; } 13 .content .errors { color: #f70; border:0pt none; background-color: transparent; 14 padding:5px 0px 0pt 10pt; min-height: 48px; text-align:left; font-weight:bold; } 18 15 #copyright { color:#777; margin:60px auto 0px 240px; text-align:center; 19 padding-bottom: 15px; 20 /* background:transparent url(images/tuft_of_grass-bg.png) no-repeat scroll left bottom; */} 16 padding-bottom: 15px; } 21 17 .header_notes { 22 18 background: transparent url(../../../../../template/yoga/icon/note.png) no-repeat right top; … … 25 21 text-align:right; top:90px; width:550px; } 26 22 27 /* backgrounds */28 23 html, body { min-height: 100%; } 29 body { 30 background:#111111 url(images/bottom-left-bg.png) no-repeat fixed left bottom; 31 margin: 0; padding: 0; 32 } 33 #the_page { 34 border:0; display:block; margin: 0; padding-bottom: 0; z-index: 1; top:0px; 24 body { margin: 0; padding: 0; 25 background:#111111 url(images/bottom-left-bg.png) no-repeat fixed left bottom; } 26 #the_page { margin: 0; padding: 0; z-index: 1; top:0px; 35 27 padding-top: 0; min-height: 100%; width:100%; position:absolute; left:0px; } 36 #headbranch { 37 background:transparent url(images/top-left-bg.png) no-repeat scroll left top; 38 border:0; display:block; margin: 0; padding: 0; width: 233px; 39 height: 240px; position:absolute; left:0px; top:0px; z-index: 0; } 40 41 #theHeader { 42 background:transparent url(images/piwigo_logo_sombre_214x100.png) no-repeat scroll 245px top; 43 min-height:105px; } 28 #headbranch { width: 233px; height: 240px; margin: 0; padding: 0; 29 position:absolute; left:0px; top:0px; z-index: 0; 30 background:transparent url(images/top-left-bg.png) no-repeat scroll left top; } 31 #theHeader { min-height:105px; margin: 0; padding: 0; 32 background:transparent url(images/piwigo_logo_sombre_214x100.png) no-repeat scroll 245px top; } 44 33 h3, #imageToolBar a:hover, .row1, .content { background-color: #222; } 45 34 .row2 { background-color:#111; } -
trunk/plugins/SwiftThemeCreator/theme_creator.php
r2447 r2449 132 132 l10n('Header picture is not found, check its path and name.')); 133 133 134 // 5 - Width and Height control 134 // 5 - Expected Width and Height limits control 135 if ( !(is_numeric($_POST['picture_width']) and ($_POST['picture_width'] < 12 136 or $_POST['picture_width'] > 4096 )) ) 137 array_push($errors, 138 '['.$_POST['picture_width'].'] : ' 139 . l10n('incorrect width value [12-4096].')); 140 if ( !(is_numeric($_POST['picture_height']) and ($_POST['picture_height'] < 12 141 or $_POST['picture_height'] > 200 )) ) 142 array_push($errors, 143 '['.$_POST['picture_width'].'] : ' 144 . l10n('incorrect width value [12-4096].')); 145 135 146 // 6 - Generate missing colors values 136 147
Note: See TracChangeset
for help on using the changeset viewer.