Changeset 12764 for trunk/themes
- Timestamp:
- Dec 18, 2011, 10:46:24 PM (13 years ago)
- Location:
- trunk/themes
- Files:
-
- 1 added
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/themes/Sylvia/theme.css
r12671 r12764 250 250 color:#f70; 251 251 border:0; 252 background-color: transparent; 253 margin-left:125px; 254 padding:5px 0px 0pt 10pt; 255 min-height: 48px; 252 background:transparent url(icon/infos.png) no-repeat center right; 253 margin-left:40px; 256 254 text-align:left; 257 255 } … … 259 257 color:#f33; 260 258 border:0; 261 background: transparent url(icon/errors.png) no-repeat scroll right top; 262 margin-left:125px; 263 padding:5px 0px 0pt 10pt; 264 min-height: 48px; 259 background:transparent url(icon/errors.png) no-repeat center right; 260 margin-left:40px; 265 261 text-align:left; 266 262 font-weight:bold; -
trunk/themes/default/template/about.tpl
r10824 r12764 9 9 <h2>{'About'|@translate}</h2> 10 10 </div> 11 12 {include file='infos_errors.tpl'} 13 11 14 <div id="piwigoAbout"> 12 15 {$ABOUT_MESSAGE} -
trunk/themes/default/template/comments.tpl
r12479 r12764 10 10 <h2>{'User comments'|@translate}</h2> 11 11 </div> 12 13 {include file='infos_errors.tpl'} 12 14 13 15 <form class="filter" action="{$F_ACTION}" method="get"> -
trunk/themes/default/template/identification.tpl
r12479 r12764 11 11 </div> 12 12 13 {if isset($errors) } 14 <div class="errors"> 15 <ul> 16 {foreach from=$errors item=error} 17 <li>{$error}</li> 18 {/foreach} 19 </ul> 20 </div> 21 {/if} 13 {include file='infos_errors.tpl'} 22 14 23 15 <form action="{$F_LOGIN_ACTION}" method="post" name="login_form" class="properties"> -
trunk/themes/default/template/index.tpl
r12677 r12764 80 80 </div>{* <!-- titrePage --> *} 81 81 82 {include file='infos_errors.tpl'} 83 82 84 {if !empty($PLUGIN_INDEX_CONTENT_BEGIN)}{$PLUGIN_INDEX_CONTENT_BEGIN}{/if} 83 85 -
trunk/themes/default/template/nbm.tpl
r10824 r12764 10 10 </div> 11 11 12 {if not empty($errors)} 13 <div class="errors"> 14 <ul> 15 {foreach from=$errors item=error} 16 <li>{$error}</li> 17 {/foreach} 18 </ul> 19 </div> 20 {/if} 21 22 {if not empty($infos)} 23 <div class="infos"> 24 <ul> 25 {foreach from=$infos item=info} 26 <li>{$info}</li> 27 {/foreach} 28 </ul> 29 </div> 30 {/if} 12 {include file='infos_errors.tpl'} 31 13 32 14 </div> -
trunk/themes/default/template/notification.tpl
r11182 r12764 15 15 <h2>{'Notification'|@translate}</h2> 16 16 </div> 17 18 {include file='infos_errors.tpl'} 17 19 18 20 <div class="notification"> -
trunk/themes/default/template/password.tpl
r12479 r12764 13 13 </div> 14 14 15 {if count($errors)} 16 <div class="errors"> 17 <ul> 18 {foreach from=$errors item=error} 19 <li>{$error}</li> 20 {/foreach} 21 </ul> 22 </div> 23 {/if} 24 25 {if count($infos)} 26 <div class="infos"> 27 <ul> 28 {foreach from=$infos item=info} 29 <li>{$info}</li> 30 {/foreach} 31 </ul> 32 </div> 33 {/if} 15 {include file='infos_errors.tpl'} 34 16 35 17 {if $action ne 'none'} -
trunk/themes/default/template/picture.tpl
r12681 r12764 8 8 {/if} 9 9 10 {if isset($errors)} 11 <div class="errors"> 12 <ul> 13 {foreach from=$errors item=error} 14 <li>{$error}</li> 15 {/foreach} 16 </ul> 17 </div> 18 {/if} 19 {if isset($infos)} 20 <div class="infos"> 21 <ul> 22 {foreach from=$infos item=info} 23 <li>{$info}</li> 24 {/foreach} 25 </ul> 26 </div> 27 {/if} 10 {include file='infos_errors.tpl'} 28 11 29 12 {if !empty($PLUGIN_PICTURE_BEFORE)}{$PLUGIN_PICTURE_BEFORE}{/if} -
trunk/themes/default/template/profile.tpl
r10824 r12764 1 1 {if isset($MENUBAR)}{$MENUBAR}{/if} 2 2 <div id="content" class="content"> 3 4 {if isset($errors)}5 <div class="errors">6 <ul>7 {foreach from=$errors item=error}8 <li>{$error}</li>9 {/foreach}10 </ul>11 </div>12 {/if}13 3 14 4 <div class="titrePage"> … … 21 11 </div> 22 12 13 {include file='infos_errors.tpl'} 14 23 15 {$PROFILE_CONTENT} 24 16 </div> <!-- content --> -
trunk/themes/default/template/register.tpl
r12610 r12764 13 13 </div> 14 14 15 {if isset($errors)} 16 <div class="errors"> 17 <ul> 18 {foreach from=$errors item=error} 19 <li>{$error}</li> 20 {/foreach} 21 </ul> 22 </div> 23 {/if} 15 {include file='infos_errors.tpl'} 24 16 25 17 <form method="post" action="{$F_ACTION}" class="properties" name="register_form"> -
trunk/themes/default/template/search.tpl
r12693 r12764 31 31 </div> 32 32 33 {if isset($errors) } 34 <div class="errors"> 35 <ul> 36 {foreach from=$errors item=error} 37 <li>{$error}</li> 38 {/foreach} 39 </ul> 40 </div> 41 {/if} 33 {include file='infos_errors.tpl'} 42 34 43 35 <form class="filter" method="post" name="search" action="{$F_SEARCH_ACTION}"> -
trunk/themes/default/template/tags.tpl
r11431 r12764 20 20 <h2>{'Tags'|@translate}</h2> 21 21 </div> 22 23 {include file='infos_errors.tpl'} 22 24 23 25 {if isset($tags)} -
trunk/themes/default/theme.css
r12671 r12764 735 735 margin: 5px; 736 736 border: 1px solid red; 737 background: #ffe1e1 url(icon/errors.png) no-repeat topright;737 background: #ffe1e1 url(icon/errors.png) no-repeat center right; 738 738 padding: 10px 50px 10px 10px; 739 739 } … … 742 742 .infos { 743 743 color: #002000; 744 background: #98fb98 url(icon/infos.png) no-repeat topright;744 background: #98fb98 url(icon/infos.png) no-repeat center right; 745 745 margin: 5px; 746 746 padding: 10px 50px 10px 10px;
Note: See TracChangeset
for help on using the changeset viewer.