Revision`s Differences

Transkrypt

Revision`s Differences
Dokumentacja zmian plików graficznych
Wersja zmian: 1.0.16 - 1.0.18
Pliki .tpl
boxes/Slider/box.tpl
+1
+2
+3
+4
+5
+6
+7
+8
+9
+ 10
+ 11
+ 12
+ 13
+ 14
+ 15
+ 16
{if count($boxNs->$box_id->images)}
<div class="box" id="box_slider">
<div class="pageslider animation_{$boxNs->$box_id->animation|escape} {if $boxNs->$box_id->auto}animaton_auto{/i
f} {$boxNs->$box_id->bulletsclass}">
<ul class="slides"{if $boxNs->$box_id->height > 0} style="height: {$boxNs->$box_id->height}px;"{/if}>
{foreach from=$boxNs->$box_id->images item=img}
<li><a href="{$img->href|escape}">
<img src="{baseDir}/{$img->src|escape}" />
</a></li>
{/foreach}
</ul>
<ul class="pages">
</ul>
</div>
<div class="floatfix"></div>
</div>
{/if}
boxes/ProductFilter/box.tpl
16
17
18
+ 19
20
21
22
<input type="hidden" name="ProductFilter" value="1" />
<div class="pricegroup">
{strip}
<span class="pricelabel">{translate key='Price:'}</span>
<div class="shaded_inputwrap pricefrom">
<input type="text" name="pricefrom" value="{$productfilter_from|escape}" class="shaded_text short" />
24
25
26
+ 27
28
29
30
<div class="shaded_inputwrap priceto">
<input type="text" name="priceto" value="{$productfilter_to|escape}" class="shaded_text short" />
</div>
{/strip}
</div>
{if count($boxNs->$box_id->producers) > 0}
Copyright© Shoper.pl 2011. All rights reserved.
Strona 1/24
boxes/Bestsellers/box.tpl
1
-2
+2
3
4
5
ox_id->list)}
<div class="box" id="box_bestsellers">
<div class="box {if $boxNs->$box_id->format == 3} slider{/if}" id="box_bestsellers">
<div class="topbar"> <div class="leftcorner"></div> <div class="rightcorner"></div> </div>
<div class="boxhead">
<div class="leftside"></div>
9
10
11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
<div class="innerbox">
<div class="leftside"></div>
{if $boxNs->$box_id->text}<h5 class="boxintro">{$boxNs->$box_id->text}</h5>{/if}
{switch expr=$boxNs->$box_id->format}
{case expr=1}
<ol class="producticons">
{foreach from=$boxNs->$box_id->list item=bs_product name=list}
<li>
{if $smarty.foreach.list.index > 0}<hr class="productseparator" />{/if}
<a href="{route function='product' key=$bs_product->getIdentifier() productName=$bs_product->translation->name productId
=$bs_product->getIdentifier()
}" title="{$bs_product->translation->name|escape}" class="spanhover">
<span class="productname">{$bs_product->translation->name|escape}</span>
<span class="boximgsize">
<img src="{imageUrl type='productGfx' width=120 height=120 image=$bs_product->mainImageName() overlay=1}" alt=""
/>
</span>
</a>
{if $showprices}
{if $bs_product->specialOffer}
<del>{currency value=$bs_product->defaultStock->getPrice()}</del>
<em class="color">{currency value=$bs_product->specialOffer->getProductPrice()}</em>
{else}
<em>{currency value=$bs_product->defaultStock->getPrice()}</em>
{/if}
{/if}
</li>
{/foreach}
</ol>
{/case}
{case expr=2}
<ol class="productlist">
{foreach from=$boxNs->$box_id->list item=bs_product name=list}
<li><a href="{route function='product' key=$bs_product->getIdentifier() productName=$bs_product->translation->name productId
=$bs_product->getIdentifier()
}" title="{$bs_product->translation->name|escape}">{$bs_product->translation->name|escape}</a></li>
{/foreach}
</ol>
{/case}
{/switch}
{if $boxNs->$box_id->format == 2}
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
+ 12
Copyright© Shoper.pl 2011. All rights reserved.
Strona 2/24
+ 13
+ 14
+ 15
+ 16
+ 17
+ 18
+ 19
+ 20
+ 21
+ 22
+ 23
+ 24
+ 25
+ 26
+ 27
+ 28
+ 29
+ 30
+ 31
+ 32
+ 33
+ 34
+ 35
+ 36
+ 37
+ 38
+ 39
+ 40
41
42
43
<ol class="productlist">
{foreach from=$boxNs->$box_id->list item=bs_product name=list}
<li><a href="{route function='product' key=$bs_product->getIdentifier() productName=$bs_product->translation->name productI
d=$bs_product->getIdentifier()
}" title="{$bs_product->translation->name|escape}">{$bs_product->translation->name|escape}</a></li>
{/foreach}
</ol>
{else}
{foreach from=$boxNs->$box_id->list item=bs_product name=list}
{if $smarty.foreach.list.index > 0}<hr class="productseparator" />{/if}
<div class="product">
<a href="{route function='product' key=$bs_product->getIdentifier() productName=$bs_product->translation->name productId=
$bs_product->getIdentifier()}"
title="{$bs_product->translation->name|escape}" class="spanhover">
<span class="productname">{$bs_product->translation->name|escape}</span>
<span class="boximgsize">
<img src="{imageUrl type='productGfx' width=120 height=120 image=$bs_product->mainImageName() overlay=1}" alt="
" />
</span>
</a>
{if $showprices}
{if $bs_product->specialOffer}
<del>{currency value=$bs_product->defaultStock->getPrice()}</del>
<em class="color">{currency value=$bs_product->specialOffer->getProductPrice()}</em>
{else}
<em>{currency value=$bs_product->defaultStock->getPrice()}</em>
{/if}
{/if}
</div>
{/foreach}
{/if}
<div class="rightside"></div>
</div>
<div class="bottombar"> <div class="leftcorner"></div> <div class="rightcorner"></div> </div>
boxes/Banner/box.tpl
3
4
5
-6
-7
+6
+7
8
9
10
from=$boxNs->$box_id->banners item=banner}
'swf' == substr($banner->banner->file, -3)}
<!--[if !IE]> -->
<object type="application/x-shockwave-flash" data="{baseDir}/{$banner->getUrl()}?clickTag={$banner->banner->link|escape}" width="{$banne
r->banner->width|escape}" height="{$banner->banner->height|escape}" title="{$banner->banner->name|escape}">
<param name="movie" value="{baseDir}/{$banner->getUrl()}?clickTag={$banner->banner->link|escape}" />
<object type="application/x-shockwave-flash" data="{baseDir}/{$banner->getUrl()}?clickTag={$banner->clickTagLink()|escape}" width="{$ban
ner->banner->width|escape}" height="{$banner->banner->height|escape}" title="{$banner->banner->name|escape}">
<param name="movie" value="{baseDir}/{$banner->getUrl()}?clickTag={$banner->clickTagLink()|escape}" />
<param name="loop" value="true" />
<param name="menu" value="false" />
<param name="wmode" value="transparent" />
Copyright© Shoper.pl 2011. All rights reserved.
Strona 3/24
12
13
14
- 15
+ 15
16
17
18
<!-- <![endif]-->
<!--[if IE]>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.
cab#version=6,0,0,0" width="{$banner->banner->width|escape}" height="{$banner->banner->height|escape}">
<param name="movie" value="{baseDir}/{$banner->getUrl()}?clickTag={$banner->banner->link|escape}" />
<param name="movie" value="{baseDir}/{$banner->getUrl()}?clickTag={$banner->clickTagLink()|escape}" />
<param name="loop" value="true" />
<param name="menu" value="false" />
<param name="wmode" value="transparent" />
boxes/Basket/box.tpl
11
12
13
- 14
{if $boxNs->$box_id->text}<h5 class="boxintro">{$boxNs->$box_id->text}</h5>{/if}
<p class="products">{translate key="products:"} <em>{$user->basket->countProducts()}</em></p>
<p class="sum">{translate key="value:"} <em>{currency value=$user->basket->sumProducts()}</em></p>
<p class="basket"><a href="{route key='basket'}" title="Basket" rel="nofollow">{translate key="go to the basket"} &raquo;</a></p
>
+ 14
15
16
17
<p class="basket"><a href="{route key='basket'}" title="{translate key='Basket'}" rel="nofollow">{translate key="go to the baske
t"} &raquo;</a></p>
<div class="rightside"></div>
</div>
<div class="bottombar"> <div class="leftcorner"></div> <div class="rightcorner"></div> </div>
boxes/Custom/box.tpl
1
2
3
+4
5
6
7
8
9
+ 10
11
12
13
<div class="box box_custom" id="{if $boxNs->$box_id->css}{$boxNs->$box_id->css|escape}{else}box_custom{$box_id|escape}{/if}">
{if 1 == $boxNs->$box_id->border}
<div class="topbar"> <div class="leftcorner"></div> <div class="rightcorner"></div> </div>
{if $boxNs->$box_id->title}
<div class="boxhead">
<div class="leftside"></div>
<h3><img src="{baseDir}/public/images/1px.gif" alt="" />{$boxNs->$box_id->title|escape}</h3>
<div class="rightside"></div>
</div>
{/if}
<div class="innerbox">
<div class="leftside"></div>
{/if}
25
26
27
+ 28
29
30
31
<param name="movie" value="{baseDir}/{$boxNs->$box_id->img}" />
<param name="loop" value="true" />
<param name="menu" value="false" />
<param name="wmode" value="transparent" />
</object>
<!-- <![endif]-->
<!--[if IE]>
Copyright© Shoper.pl 2011. All rights reserved.
Strona 4/24
32
33
34
+ 35
36
37
38
<param name="movie" value="{baseDir}/{$boxNs->$box_id->img}" />
<param name="loop" value="true" />
<param name="menu" value="false" />
<param name="wmode" value="transparent" />
</object>
<![endif]-->
{else}
boxes/News/box.tpl
9
10
- 11
12
+ 12
13
- 14
- 15
+ 14
+ 15
+ 16
+ 17
+ 18
+ 19
+ 20
+ 21
+ 22
+ 23
24
25
- 26
+ 26
27
- 28
- 29
+ 28
+ 29
30
31
32
<div class="leftside"></div>
{if $boxNs->$box_id->text}<h5 class="boxintro">{$boxNs->$box_id->text}</h5>{/if}
{foreach from=$boxNs->$box_id->list item=article name=list}
{foreach from=$boxNs->$box_id->list item=box_article name=list}
{if $smarty.foreach.list.index > 0}<hr class="separator" />{/if}
<h2 class="article_name">{$article->article->name|escape}</h2>
<h5 class="article_date">{date value=$article->article->date format='Zend_Date::DATE_MEDIUM'}{if $article->
article->author}, {$article->article->author|escape}{/if}</h5>
<h4 class="article_name">
{if $box_article->article->content|strlen > 0}
<a href="{route function='news' key=$box_article->getIdentifier() newsId=$box_article->getIdentifier()}">
{$box_article->article->name|escape}
</a>
{else}
{$box_article->article->name|escape}
{/if}
</h4>
<h5 class="article_date">{date value=$box_article->article->date format='Zend_Date::DATE_MEDIUM'}{if $box_a
rticle->article->author}, {$box_article->article->author|escape}{/if}</h5>
<div class="floatfix"></div>
{if 2 == $boxNs->$box_id->format}
<span class="resetcss">{$article->article->short_content}</span>
<span class="resetcss">{$box_article->article->short_content}</span>
{/if}
{if $article->article->short_content != $article->article->content}
<a class="readmore" href="{route function='news' key=$article->getIdentifier() newsId=$article->getIdentifi
er()}">{translate key="more"} &raquo;</a>
{if $box_article->article->content|strlen > 0 && $box_article->article->short_content != $box_article->arti
cle->content}
<a class="readmore" href="{route function='news' key=$box_article->getIdentifier() newsId=$box_article->get
Identifier()}">{translate key="more"} &raquo;</a>
{/if}
{/foreach}
boxes/NewProducts/box.tpl
1
-2
ox_id->list)}
<div class="box" id="box_lastadded">
Copyright© Shoper.pl 2011. All rights reserved.
Strona 5/24
+2
3
4
5
<div class="box {if $boxNs->$box_id->format == 3} slider{/if}" id="box_lastadded">
<div class="topbar"> <div class="leftcorner"></div> <div class="rightcorner"></div> </div>
<div class="boxhead">
<div class="leftside"></div>
9
10
11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
<div class="innerbox">
<div class="leftside"></div>
{if $boxNs->$box_id->text}<h5 class="boxintro">{$boxNs->$box_id->text}</h5>{/if}
{switch expr=$boxNs->$box_id->format}
{case expr=1}
<ol class="producticons">
{foreach from=$boxNs->$box_id->list item=newproduct name=list}
<li>
{if $smarty.foreach.list.index > 0}<hr class="productseparator" />{/if}
<a href="{route function='product' key=$newproduct->getIdentifier() productName=$newproduct->translation->name productId
=$newproduct->getIdentifier()
}" title="{$newproduct->translation->name|escape}" class="spanhover">
<span class="productname">{$newproduct->translation->name|escape}</span>
<span class="boximgsize">
<img src="{imageUrl type='productGfx' width=120 height=120 image=$newproduct->mainImageName() overlay=1}" alt=""
/>
</span>
</a>
{if $showprices}
{if $newproduct->specialOffer}
<del>{currency value=$newproduct->defaultStock->getPrice()}</del>
<em class="color">{currency value=$newproduct->specialOffer->getProductPrice()}</em>
{else}
<em>{currency value=$newproduct->defaultStock->getPrice()}</em>
{/if}
{/if}
</li>
{/foreach}
</ol>
{/case}
{case expr=2}
<ol class="productlist">
{foreach from=$boxNs->$box_id->list item=newproduct name=list}
<li><a href="{route function='product' key=$newproduct->getIdentifier() productName=$newproduct->translation->name productId
=$newproduct->getIdentifier()
}" title="{$newproduct->translation->name|escape}">{$newproduct->translation->name|escape}</a></li>
{/foreach}
</ol>
{/case}
{/switch}
{if $boxNs->$box_id->format == 2}
<ol class="productlist">
{foreach from=$boxNs->$box_id->list item=newproduct name=list}
<li><a href="{route function='product' key=$newproduct->getIdentifier() productName=$newproduct->translation->name productI
d=$newproduct->getIdentifier()
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
+ 12
+ 13
+ 14
+ 15
Copyright© Shoper.pl 2011. All rights reserved.
Strona 6/24
+ 16
+ 17
+ 18
+ 19
+ 20
+ 21
+ 22
+ 23
+ 24
+ 25
+ 26
+ 27
+ 28
+ 29
+ 30
+ 31
+ 32
+ 33
+ 34
+ 35
+ 36
+ 37
+ 38
+ 39
+ 40
41
42
43
}" title="{$newproduct->translation->name|escape}">{$newproduct->translation->name|escape}</a></li>
{/foreach}
</ol>
{else}
{foreach from=$boxNs->$box_id->list item=newproduct name=list}
{if $smarty.foreach.list.index > 0}<hr class="productseparator" />{/if}
<div class="product">
<a href="{route function='product' key=$newproduct->getIdentifier() productName=$newproduct->translation->name productId=$
newproduct->getIdentifier()
}" title="{$newproduct->translation->name|escape}" class="spanhover">
<span class="productname">{$newproduct->translation->name|escape}</span>
<span class="boximgsize">
<img src="{imageUrl type='productGfx' width=120 height=120 image=$newproduct->mainImageName() overlay=1}" alt="
" />
</span>
</a>
{if $showprices}
{if $newproduct->specialOffer}
<del>{currency value=$newproduct->defaultStock->getPrice()}</del>
<em class="color">{currency value=$newproduct->specialOffer->getProductPrice()}</em>
{else}
<em>{currency value=$newproduct->defaultStock->getPrice()}</em>
{/if}
{/if}
</div>
{/foreach}
{/if}
<div class="floatfix"></div>
<div class="rightside"></div>
</div>
scripts/product/index.tpl
436
437
438
- 439
+ 439
<label for="commentuser">{translate key="Nick:"}</label>
<div class="shaded_inputwrap">
<input name="user" type="text" id="commentuser" value="{if $user_logged}{$user->user->getName()|escape}{/if}" size="30" />
<input name="user" type="text" id="commentuser" value="{if $user_logged}{$user->user->getName()|escape}{else}{$data.user|escape}
{/if}" size="30" />
440
</div>
441
{if $data_error.user}
442
<ul class="input_error">
448
449
450
- 451
+ 451
452
453
454
<label for="comment">{translate key="Your opinion:"}</label>
<div class="shaded_textareawrap">
<textarea name="comment" id="comment" rows="5" cols="30"></textarea>
<textarea name="comment" id="comment" rows="5" cols="30">{$data.comment|escape}</textarea>
</div>
{if $data_error.comment}
<ul class="input_error">
Copyright© Shoper.pl 2011. All rights reserved.
Strona 7/24
scripts/product/tableofproducts.tpl
3
4
5
-6
+6
7
8
9
48
49
50
51
+ 52
+ 53
+ 54
+ 55
+ 56
+ 57
+ 58
+ 59
60
+ 61
+ 62
+ 63
+ 64
+ 65
+ 66
+ 68
67
69
70
71
120
121
122
- 123
+ 123
124
125
- 126
+ 126
127
128
+ 130
129
+ 131
n_settings->$settingsgroup->columns > 1}
class="fewperrow">
{foreach from=$products item=product name=prodlist}
<td class="{if $smarty.foreach.prodlist.index % 2}odd{else}even{/if}">
<td class="{if $smarty.foreach.prodlist.index % 2}odd{else}even{/if} col{$skin_settings->$settingsgroup->columns}">
<div class="product" id="product_{$product->product->product_id|escape}">
<a class="details spanhover" href="{route function='product' key=$product->product->product_id productName=$product->translation
->name
productId=$product->product->product_id}" title="{$product->translation->name|escape}">
{if 'full' == $view || 'desc' == $view}<div class="description resetcss">{$product->translation->short_description}</div>{/if}
{if 1 == (int) $skin_settings->$settingsgroup->showavailability || 1 == (int) $skin_settings->$settingsgroup->showdelivery}
<dl class="availanddeliv">
{if 1 == (int) $skin_settings->$settingsgroup->showavailability && $product->defaultStock->availability && $product->defaultStoc
k->availability->translation}
<dt class="availability">{translate key="Availability:"}</dt>
<dd class="availability">{if $product->defaultStock->availability->availability->photo}
<img src="{baseDir}/{$product->defaultStock->availability->getUrl()}" alt="" /> {/if
}{$product->defaultStock->availability->translation->name}</dd>
{/if}
{if 1 == (int) $skin_settings->$settingsgroup->showdelivery && $product->defaultStock->delivery}
<dt class="delivery">{translate key="Shipment date:"}</dt>
<dd class="delivery">{$product->defaultStock->delivery->translation->name|escape}</dd>
{/if}
</dl>
{/if}
{if $product->specialOffer || $product->isNew()}
<ul class="tags">
{if $product->specialOffer}<li class="promo">{translate key="promotion"}</li>{/if}
<div class="description resetcss">
<a class="details spanhover prodimage" href="{route function='product' key=$product->product->product_id productName=$produc
t->translation->name
productId=$product->product->product_id}" title="{$product->translation->name|escape}" rel="nofollow">
<div class="{$settingsgroup}imgsize">
<span class="{$settingsgroup}imgsize">
<img src="{imageUrl type='productGfx' width=$skin_settings->$settingsgroup->imgwidth height=$skin_settings->$setting
sgroup->imgheight
image=$product->mainImageName() overlay=1}" alt="{$product->translation->name|escape}" />
</div>
</span>
</a>
{$product->translation->short_description}
{if 1 == (int) $skin_settings->$settingsgroup->showavailability || 1 == (int) $skin_settings->$settingsgroup->showdelivery}
<dl class="availanddeliv">
Copyright© Shoper.pl 2011. All rights reserved.
Strona 8/24
+ 132
+ 133
+ 134
+ 135
+ 136
+ 137
+ 138
139
+ 140
+ 141
+ 142
+ 143
+ 144
145
146
147
148
149
- 150
+ 150
151
152
- 153
+ 153
154
155
156
- 157
+ 157
+ 158
+ 159
+ 160
+ 161
+ 162
+ 163
+ 164
+ 165
+ 166
+ 167
168
+ 169
+ 170
+ 171
+ 172
+ 173
+ 174
+ 175
+ 176
{if 1 == (int) $skin_settings->$settingsgroup->showavailability && $product->defaultStock->availability && $product->def
aultStock->availability->translation}
<dt class="availability">{translate key="Availability:"}</dt>
<dd class="availability">{if $product->defaultStock->availability->availability->photo}
<img src="{baseDir}/{$product->defaultStock->availability->getUrl()}" alt="" /> {/if
}{$product->defaultStock->availability->translation->name}</dd>
{/if}
{if 1 == (int) $skin_settings->$settingsgroup->showdelivery && $product->defaultStock->delivery}
<dt class="delivery">{translate key="Shipment date:"}</dt>
<dd class="delivery">{$product->defaultStock->delivery->translation->name|escape}</dd>
{/if}
</dl>
{/if}
</div>
{else}
{if 'phot' == $view}
<a class="details spanhover prodimage" href="{route function='product' key=$product->product->product_id productName=$product->t
ranslation->name
productId=$product->product->product_id}" title="{$product->translation->name|escape}" rel="nofollow">
<div class="{$settingsgroup}imgsize">
<span class="{$settingsgroup}imgsize">
<img src="{imageUrl type='productGfx' width=$skin_settings->$settingsgroup->imgwidth height=$skin_settings->$settingsgro
up->imgheight
image=$product->mainImageName() overlay=1}" alt="{$product->translation->name|escape}" />
</div>
</span>
</a>
{/if}
{if 'desc' == $view}
<div class="description resetcss">{$product->translation->short_description}</div>
<div class="description resetcss">
{$product->translation->short_description}
{if 1 == (int) $skin_settings->$settingsgroup->showavailability || 1 == (int) $skin_settings->$settingsgroup->showdelivery}
<dl class="availanddeliv">
{if 1 == (int) $skin_settings->$settingsgroup->showavailability && $product->defaultStock->availability && $product->def
aultStock->availability->translation}
<dt class="availability">{translate key="Availability:"}</dt>
<dd class="availability">{if $product->defaultStock->availability->availability->photo}
<img src="{baseDir}/{$product->defaultStock->availability->getUrl()}" alt="" /> {/if
}{$product->defaultStock->availability->translation->name}</dd>
{/if}
{if 1 == (int) $skin_settings->$settingsgroup->showdelivery && $product->defaultStock->delivery}
<dt class="delivery">{translate key="Shipment date:"}</dt>
<dd class="delivery">{$product->defaultStock->delivery->translation->name|escape}</dd>
{/if}
</dl>
{/if}
</div>
{else}
{if 1 == (int) $skin_settings->$settingsgroup->showavailability || 1 == (int) $skin_settings->$settingsgroup->showdelivery}
Copyright© Shoper.pl 2011. All rights reserved.
Strona 9/24
+ 177
+ 178
+ 179
+ 180
+ 181
+ 182
+ 183
184
+ 185
+ 186
+ 187
+ 188
+ 189
190
+ 191
192
193
194
<dl class="availanddeliv">
{if 1 == (int) $skin_settings->$settingsgroup->showavailability && $product->defaultStock->availability && $product->default
Stock->availability->translation}
<dt class="availability">{translate key="Availability:"}</dt>
<dd class="availability">{if $product->defaultStock->availability->availability->photo}
<img src="{baseDir}/{$product->defaultStock->availability->getUrl()}" alt="" /> {/if
}{$product->defaultStock->availability->translation->name}</dd>
{/if}
{if 1 == (int) $skin_settings->$settingsgroup->showdelivery && $product->defaultStock->delivery}
<dt class="delivery">{translate key="Shipment date:"}</dt>
<dd class="delivery">{$product->defaultStock->delivery->translation->name|escape}</dd>
{/if}
</dl>
{/if}
{/if}
{/if}
{if $product->specialOffer || $product->isNew()}
scripts/header.tpl
21
22
23
- 24
- 25
26
27
+ 28
+ 29
30
31
32
46
47
48
+ 49
+ 50
51
52
<script type="text/javascript" src="{$path}js/main.js"></script>
true == $jsgallery}
<script type="text/javascript" src="{baseDir}/public/milkbox/milkbox-yc.js"></script>
}
true == $user_js}
<script type="text/javascript" src="{$path}js/user.js"></script>
}
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
$body_background}
body {literal}{{/literal} background: {$body_background}; {literal}}{/literal}
}
.pagewidth {literal}{{/literal} width: {$skin_settings->global->width|escape}; {literal}}{/literal}
.leftcolwidth {literal}{{/literal} width: {$layout->layout->left_col_width|escape}; {literal}}{/literal}
.rightcolwidth {literal}{{/literal} width: {$layout->layout->right_col_width|escape}; {literal}}{/literal}
} height: {$skin_settings->productdetails->minigalleryimgheight|escape}px;{/if} {literal}}{/literal}
/*]]>*/-->
</style>
{if true == $user_js}
<script type="text/javascript" src="{$path}js/user.js"></script>
{/if}
{$snippet_head}
</head>
scripts/info/index.tpl
37
38
39
- 40
+ 40
</div>
<div class="innerbox">
<div class="leftside"></div>
<span class="resetcss">{$page->page->content}</span>
<span class="resetcss">{$page->getContent()}</span>
Copyright© Shoper.pl 2011. All rights reserved.
Strona 10/24
41
42
43
<div class="rightside"></div>
</div>
<div class="bottombar"> <div class="leftcorner"></div> <div class="rightcorner"></div> </div>
scripts/panel/favourites.tpl
61
62
63
- 64
+ 64
65
66
67
- 68
+ 68
69
70
71
<td class="price">{currency value=$product->getPrice()}</td>
<td class="sum">{float value=$product->stock->stock}</td>
<td class="actions">
<a href="{route key='basketAdd' stockId=$id}" class="addtobasket spanhover">
<a href="{route key='basketAdd' stockId=$id}" title="{translate key='add to the basket'}" class="addtobasket spanhover">
<img src="{baseDir}/public/images/1px.gif" alt="" />
<span>{translate key='add to the basket'}</span>
</a>
<a href="{route key='panelRemoveFavourite' stockId=$id}" class="remove spanhover">
<a href="{route key='panelRemoveFavourite' stockId=$id}" title="{translate key='remove'}" class="remove spanhover">
<img src="{baseDir}/public/images/1px.gif" alt="" />
<span>{translate key='remove'}</span>
</a>
scripts/panel/index.tpl
64
65
66
- 67
+ 67
68
69
70
90
91
92
- 93
+ 93
94
95
96
103
104
- 105
106
+ 106
107
108
<td class="sum">{currency value=$order->sumOrder()}</td>
<td class="status">
<span>{$order->status->translation->name|escape}</span>
{if $order->sumOrder() > $order->order->paid && $order->hasOnlinePayment()}<a href="{route key='panelPayment' orderId=$id}">{tra
nslate key='pay'}</a>{/if}
{if $order->sumOrder()*100 > $order->order->paid*100 && $order->hasOnlinePayment()}<a href="{route key='panelPayment' orderId=$i
d}">{translate key='pay'}</a>{/if}
</td>
<td class="parcels">
{if count($order->parcels) > 0}
{/if}
{/if}
<h4 class="separator">{translate key='Account settings'}</h4>
<h4 class="separator no-border">{translate key='Account settings'}</h4>
<p class="name">{if $user->user->userinfo->firstname || $user->user->userinfo->lastname
}{$user->user->userinfo->firstname|escape} {$user->user->userinfo->lastname|escape}{/if}</p>
<p class="mail">{$user->user->userinfo->email|escape}</p>
<span>{translate key='Change your password'}</span>
</a>
<h4 class="separator">{translate key='Invoicing and delivery addresses'}</h4>
<h4 class="separator">{translate key='Addresses'}</h4>
<ul class="address">
<li>
Copyright© Shoper.pl 2011. All rights reserved.
Strona 11/24
109
<b>{translate key='Invoicing address'}</b>
scripts/panel/address-edit.tpl
115
<img src="{baseDir}/public/images/1px.gif" alt="" />
116
<span>&laquo; {translate key='Wstecz'}</span>
117 </button>
- 118 <button type="submit" name="button2" value="button2" class="important save">
+ 118 <button type="submit" name="button2" value="button2" class="button important save">
119
<img src="{baseDir}/public/images/1px.gif" alt="" />
120
{if $address_id > 0}
121
<span>{translate key='Save'}</span>
scripts/panel/order.tpl
63
64
65
- 66
+ 66
67
68
69
<dd class="payment">{$order->payment->translation->title|escape}</dd>
<dt class="shipping">{translate key='Delivery'}</dt>
<dd class="shipping">{$order->shipping->shipping->name|escape}</dd>
{if 1 || true == $show_invoice}
{if true == $show_invoice}
<dt class="invoice">{translate key='Invoice'}</dt>
<dd class="invoice"><a href="{baseDir}/console/invoices/pdf/id/{$order->invoice->invoice->invoice_id}">{translate key='display'}</a>
</dd>
{/if}
155
{/foreach}
156
</tbody>
157 </table>
- 158 {if $order->sumOrder() > $order->order->paid && $order->hasOnlinePayment()}
+ 158 {if $order->sumOrder()*100 > $order->order->paid*100 && $order->hasOnlinePayment()}
159
<form action="{route key='panelPayment' orderId=$id}" method="get" class="pay">
160
<fieldset>
161
<button class="important pay" type="submit">
scripts/basket/index.tpl
44
45
46
- 47
- 48
+ 47
+ 48
+ 49
+ 50
51
52
ad>
<tr>
<td class="img"></td>
<td class="name">{translate key="Product"}</td>
<td class="time">{translate key="Order delivery date"}</td>
<td class="name" {if !$showDelivery}colspan="2"{/if}>{translate key="Product"}</td>
{if $showDelivery}
<td class="time">{translate key="Order delivery date"}</td>
{/if}
<td class="quantity">{translate key="Amount"}</td>
<td class="price">{translate key="Price"}</td>
Copyright© Shoper.pl 2011. All rights reserved.
Strona 12/24
53
56
57
58
- 59
- 60
+ 59
+ 60
61
62
63
228
229
230
- 231
+ 231
232
233
234
235
- 236
+ 236
+ 237
+ 238
239
240
241
<td class="sum">{translate key="Value"}</td>
class="recount">
<td colspan="2" />
<td colspan="2" class="button">
<td colspan="{if $showDelivery}2{else}3{/if}"/>
<td colspan="2"class="button">
<input type="hidden" name="recount" value="1" />
<button type="submit" name="button" value="button" class="button">
<img alt="" src="{baseDir}/public/images/1px.gif" />
<td class="img">
<img src="{imageUrl type='productGfx' width=75 height=75 image=$basket_product->stock->mainImageName() overlay=1}" alt="{$basket
_product->product->translation->name|escape}" />
</td>
<td class="name">
<td class="name" {if !$showDelivery}colspan="2"{/if}>
<a href="{route function='product' key=$basket_product->product->product->product_id productName=$basket_product->product->trans
lation->name
productId=$basket_product->product->product->product_id}" title="{$basket_product->product->translation->name|escape}">{
$basket_product->product->translation->name|escape}</a>
<span class="variant">{$basket_product->stock->getName()|escape}</span>
</td>
<td class="time">{$basket_product->stock->delivery->translation->name|escape}</td>
{if $showDelivery}
<td class="time">{$basket_product->stock->delivery->translation->name|escape}</td>
{/if}
<td class="quantity">{assign var=id value=$basket_product->getIdentifier()}
<div class="shaded_inputwrap{if true == $quantity_error.$id} shaded_error{/if}"><input name="quantity_{$id}" value="{float preci
sion=$QUANTITY_PRECISION value=$quantity.$id trim=true noformat=true}" type="text" class="short center" /></div>
{$basket_product->product->unit->translation->name|escape}
scripts/basket/step3.tpl
36
37
38
- 39
- 40
+ 39
+ 40
+ 41
+ 42
43
44
45
ad>
<tr>
<td class="img" />
<td class="name">{translate key="Product"}</td>
<td class="time">{translate key="Order delivery date"}</td>
<td class="name" {if !$showDelivery}colspan="2"{/if}>{translate key="Product"}</td>
{if $showDelivery}
<td class="time">{translate key="Order delivery date"}</td>
{/if}
<td class="quantity">{translate key="Amount"}</td>
<td class="price">{translate key="Price"}</td>
<td class="sum">{translate key="Value"}</td>
Copyright© Shoper.pl 2011. All rights reserved.
Strona 13/24
50
51
52
- 53
+ 53
54
55
56
57
- 58
+ 58
+ 59
+ 60
61
62
63
111
112
113
- 114
- 115
+ 114
+ 115
+ 116
+ 117
118
119
120
<td class="img">
<img src="{imageUrl type='productGfx' width=75 height=75 image=$basket_product->stock->mainImageName() overlay=1}" alt="{$basket
_product->product->translation->name|escape}" />
</td>
<td class="name">
<td class="name" {if !$showDelivery}colspan="2"{/if}>
<a href="{route function='product' key=$basket_product->product->product->product_id productName=$basket_product->product->trans
lation->name
productId=$basket_product->product->product->product_id}" title="{$basket_product->product->translation->name|escape}">{
$basket_product->product->translation->name|escape}</a>
<span class="variant">{$basket_product->stock->getName()|escape}</span>
</td>
<td class="time">{$basket_product->stock->delivery->translation->name|escape}</td>
{if $showDelivery}
<td class="time">{$basket_product->stock->delivery->translation->name|escape}</td>
{/if}
<td class="quantity">
{assign var=id value=$basket_product->getIdentifier()}
{float precision=$QUANTITY_PRECISION value=$basket_product->basket->quantity trim=true}
<dd class="delivery">{$shipping->shipping->name|escape}</dd>
<dt class="payment">{translate key='Selected form of payment:'}</dt>
<dd class="payment">{$payment->translation->title|escape}</dd>
<dt class="payment">{translate key='Granted discount:'}</dt>
<dd class="payment">{float value=$discount}%</dd>
{if $discount > 0}
<dt class="payment">{translate key='Granted discount:'}</dt>
<dd class="payment">{float value=$discount}%</dd>
{/if}
{if $data.comment}
<dt class="comment">{translate key='Comments:'}</dt>
<dd class="comment">{$data.comment|escape}</dd>
scripts/news/index.tpl
39
40
41
+ 42
43
44
45
<div class="innerbox">
<div class="leftside"></div>
<span class="resetcss">{$article->article->content}</span>
<div class="floatfix"></div>
<div class="rightside"></div>
</div>
<div class="bottombar"> <div class="leftcorner"></div> <div class="rightcorner"></div> </div>
scripts/news/listofarticles.tpl
13
14
<h5 class="article_date">{date value=$article->article->date format='Zend_Date::DATE_MEDIUM'}{if $article->article->author},
{$article->article->author|escape}{/if}</h5>
<div class="floatfix"></div>
Copyright© Shoper.pl 2011. All rights reserved.
Strona 14/24
15
- 16
+ 16
17
18
+ 19
20
21
22
<span class="resetcss">{$article->article->short_content}</span>
{if $article->article->short_content != $article->article->content}
{if $article->article->content|strlen > 0 && $article->article->short_content != $article->article->content}
<a class="readmore" href="{route function='news' key=$article->getIdentifier() newsId=$article->getIdentifier()}">{translate
key="more"} &raquo;</a>
{/if}
<div class="floatfix"></div>
{/foreach}
<div class="rightside"></div>
</div>
scripts/body_head.tpl
40
41
42
- 43
+ 43
44
45
46
if $user->basket->countProducts()}{translate key="Value:"} <b class="sum">{currency value=$user->basket->sumProducts()}</b>.{/if
}</span>
</li>
<li class="goto">
<a href="{route key='basket'}" title="Basket" class="spanhover goto">
<a href="{route key='basket'}" title="{translate key='Basket'}" class="spanhover goto">
<img src="{baseDir}/public/images/1px.gif" alt="" />
<span>{translate key="Go to the basket"} &raquo;</span>
</a>
104
from=$banners item=banner}
105 'swf' == substr($banner->banner->file, -3)}
106 <!--[if !IE]> -->
- 107 <object type="application/x-shockwave-flash" data="{baseDir}/{$banner->getUrl()}?clickTag={$banner->banner->link|escape}" width="{$banne
r->banner->width|escape}" height="{$banner->banner->height|escape}" title="{$banner->banner->name|escape}">
- 108
<param name="movie" value="{baseDir}/{$banner->getUrl()}?clickTag={$banner->banner->link|escape}" />
+ 107 <object type="application/x-shockwave-flash" data="{baseDir}/{$banner->getUrl()}?clickTag={$banner->clickTagLink()|escape}" width="{$ban
ner->banner->width|escape}" height="{$banner->banner->height|escape}" title="{$banner->banner->name|escape}">
+ 108
<param name="movie" value="{baseDir}/{$banner->getUrl()}?clickTag={$banner->clickTagLink()|escape}" />
109
<param name="loop" value="true" />
110
<param name="menu" value="false" />
111
<param name="wmode" value="transparent" />
113 <!-- <![endif]-->
114 <!--[if IE]>
115 <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.
cab#version=6,0,0,0" width="{$banner->banner->width|escape}" height="{$banner->banner->height|escape}">
- 116
<param name="movie" value="{baseDir}/{$banner->getUrl()}?clickTag={$banner->banner->link|escape}" />
+ 116
<param name="movie" value="{baseDir}/{$banner->getUrl()}?clickTag={$banner->clickTagLink()|escape}" />
117
<param name="loop" value="true" />
118
<param name="menu" value="false" />
119
<param name="wmode" value="transparent" />
Copyright© Shoper.pl 2011. All rights reserved.
Strona 15/24
Pliki .css
styles/main.css
1
2
3
-4
+4
5
6
+7
+8
+9
+ 10
+ 11
+ 12
+ 13
+ 14
+ 15
+ 16
+ 17
18
19
20
21
- 22
23
24
25
364
365
366
+ 367
+ 368
+ 369
370
+ 371
+ 372
+ 373
+ 374
375
376
377
499
500
501
- 502
- 503
- 504
html,body,div,span,img,applet,embed,canvas,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,ins,kbd,q,
samp,small,strike,strong,sub,sup,tt,var,b,u,i,s,center,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,button,table,caption,tbody,tfoot,thead,tr,th,td {
fieldset,form,label,legend,button {
margin:0; padding:0; border:0; outline:0 none; font-size:100%; background:transparent;
}
table,caption,tbody,tfoot,thead,tr,th,td {
background:transparent;
border-collapse: collapse;
border-color: none;
border-spacing: none;
border-width: none;
font-size: 100%;
margin: 0;
outline: 0;
padding: 0;
}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:'';content:none;}
ins{text-decoration:none;}
del{text-decoration:line-through;}
table{border-collapse:collapse;border-spacing:0}
html{height:100%}
body{height:100%;word-wrap:break-word}
h1,h2,h3,h4,h5,h6,h7{font-weight: normal;}
vertical-align: top;
}
* html .menu li h3 a span {
cursor: pointer;
}
*:first-child+html .menu li h3 a span {
cursor: pointer;
}
.menu a {
font-size: 100%;
font-weight: normal;
padding-bottom: 1000px;
}
.footer .innerfooter li.col2 { width: 49.8%; }
.footer .innerfooter li.col3 { width: 33.2%; }
.footer .innerfooter li.col4 { width: 24.8%; }
Copyright© Shoper.pl 2011. All rights reserved.
Strona 16/24
+ 502
+ 503
+ 504
+ 505
+ 506
+ 507
+ 508
+ 509
+ 510
+ 511
+ 512
+ 513
514
515
516
.footer .innerfooter li.col2,
#box_mainproducts .innerbox table.products tr.fewperrow td.col2 {
width: 49.8%;
}
.footer .innerfooter li.col3,
#box_mainproducts .innerbox table.products tr.fewperrow td.col3 {
width: 33.2%;
}
.footer .innerfooter li.col4,
#box_mainproducts .innerbox table.products tr.fewperrow td.col4 {
width: 24.8%;
}
.footer .innerfooter li.col5 { width: 19.8%; }
.footer .innerfooter li.col6 { width: 16.6%; }
705 }
706
707 .main .box .boxhead {
- 708
background: #ebebeb url('../images/box_head.png') 0 0 repeat-x;
+ 708
background: #f5f5f5 url('../images/box_head.png') 0 0 repeat-x;
709
min-height: 37px;
710
height: auto !important;
711
height: 37px;
1212
1213
1214
+ 1215
+ 1216
+ 1217
+ 1218
1219
1220
1221
1441
1442
1443
+ 1444
+ 1445
+ 1446
+ 1447
+ 1448
1449
+ 1450
+ 1451
+ 1452
+ 1453
+ 1454
1455
+ 1456
+ 1457
min-width: 30px;
}
.main #box_basketlist .shaded_inputwrap input.short {
width: 40px;
}
.main .innerbox .shaded_inputwrap input.center {
text-align: center;
}
display: none;
}
#box_mainproducts .innerbox table.products tr.fewperrow .product .availanddeliv {
font-size: 0.9em;
margin: 0 10px;
clear: both;
}
#box_mainproducts .innerbox table.products tr .product .availanddeliv {
display: block;
margin-top: 3em;
}
#box_mainproducts .innerbox table.products tr .product .description .availanddeliv {
margin-top: 10px;
}
Copyright© Shoper.pl 2011. All rights reserved.
Strona 17/24
+ 1458
1459
+ 1460
+ 1461
+ 1462
+ 1463
+ 1464
1465
+ 1466
+ 1467
+ 1468
1469
1470
1471
1458
1459
1460
+ 1461
+ 1462
+ 1463
+ 1464
1465
1466
1467
1645
1646
- 1644
1647
+ 1647
+ 1648
+ 1649
+ 1650
+ 1651
1652
1653
1654
- 1655
+ 1655
+ 1656
+ 1657
+ 1658
+ 1659
1660
1661
1662
1663
1664
- 1665
+ 1665
+ 1666
+ 1667
1668
1669
1670
#box_mainproducts .innerbox table.products tr .product .availanddeliv dt {
font-weight: bold;
float: left;
padding: 2px 5px 2px 0;
}
#box_mainproducts .innerbox table.products tr .product .availanddeliv dd {
padding: 2px 0;
}
#box_mainproducts .innerbox table.products tr.oneperrow .product {
padding: 10px;
position: relative;
clear: left;
}
#box_mainproducts .innerbox table.products tr.oneperrow .product a.prodimage span.productlistimgsize {
display: block;
}
* html #box_mainproducts .innerbox table.products tr.oneperrow .product a.prodimage div { /* IE6 */
display: inline;
}
#box_productoftheday .innerbox, #box_specialoffer .innerbox, #box_recent .innerbox {
#box_productoftheday .innerbox,
#box_specialoffer .innerbox,
#box_recent .innerbox,
#box_bestsellers .innerbox,
#box_lastadded .innerbox {
text-align: center;
}
#box_productoftheday .innerbox ol, #box_specialoffer .innerbox ol, #box_recent .innerbox ol {
#box_productoftheday .innerbox ol,
#box_specialoffer .innerbox ol,
#box_recent .innerbox ol,
#box_bestsellers .innerbox ol,
#box_lastadded .innerbox ol {
text-align: left;
}
#box_productoftheday .innerbox .arrow_left,
#box_recent .innerbox .arrow_left,
#box_specialoffer .innerbox .arrow_left {
#box_specialoffer .innerbox .arrow_left,
#box_bestsellers .innerbox .arrow_left,
#box_lastadded .innerbox .arrow_left {
position : absolute;
left : 0;
cursor : pointer;
Copyright© Shoper.pl 2011. All rights reserved.
Strona 18/24
1665
1666
1667
- 1668
+ 1668
+ 1669
+ 1670
1671
1672
1673
2247
2248
2249
- 2250
+ 2250
2251
2252
2253
2254
- 2255
+ 2255
2256
2257
2258
2260
2261
2262
+ 2263
+ 2264
+ 2265
+ 2267
2266
+ 2268
+ 2269
2270
+ 2271
+ 2272
+ 2273
+ 2275
2274
+ 2276
+ 2277
+ 2278
2279
2280
2281
#box_productoftheday .innerbox .arrow_right,
#box_recent .innerbox .arrow_right,
#box_specialoffer .innerbox .arrow_right {
#box_specialoffer .innerbox .arrow_right,
#box_bestsellers .innerbox .arrow_right,
#box_lastadded .innerbox .arrow_right {
position : absolute;
right : 0;
cursor : pointer;
}
#box_productfull
width: 80%;
width: 100%;
}
#box_productfull
width: 50%;
line-height:
line-height:
}
#box_productfull
.basket .stocks table {
.basket .stocks td {
1.5em;
1;
.basket .stocks label {
margin-right: 10px;
}
#box_productfull .basket .stocks select {
max-width: 120px;
}
#box_productfull .basket .stocks td.select {
padding-top: 5px;
}
* html #box_productfull .basket .stocks select { /* IE6 */
width: 120px;
}
*:first-child+html #box_productfull .basket .stocks select { /* IE7 */
width: 120px;
}
@media screen and (-webkit-min-device-pixel-ratio:0) { /* Chrome */
#box_productfull .basket .stocks dl dd {
float: left;
3447
clear: both;
3448 }
3449 #box_article .boxhead h3 {
- 3450
- 3451
width: 75%;
+ 3450 #box_article .boxhead h3, #box_article .boxhead h1 {
+ 3451
float: left;
Copyright© Shoper.pl 2011. All rights reserved.
Strona 19/24
3452
3453
3454
- 3455
3456
3457
- 3458
- 3459
+ 3458
3459
3460
3461
}
#box_article .boxhead h5.article_date {
position: absolute;
font-size: 0.9em;
font-weight: bold;
top: 0px;
right: 10px;
float: right;
}
/* News END */
4203
4204
+ 4202
4205
4206
+ 4207
+ 4208
+ 4209
+ 4210
4211
+ 4212
+ 4213
+ 4214
+ 4215
+ 4216
4217
+ 4218
+ 4219
+ 4220
+ 4221
+ 4222
+ 4223
+ 4224
+ 4225
+ 4226
+ 4227
+ 4228
+ 4229
+ 4230
+ 4231
+ 4232
+ 4233
+ 4234
+ 4235
+ 4236
+ 4237
+ 4238
+ 4239
+ 4240
+ 4241
+ 4242
+ 4243
+ 4244
+ 4245
/* Page Slider */
#box_slider .pageslider {
position: relative;
}
#box_slider .pageslider ul.slides {
position: relative;
display: block;
left: 0;
overflow: hidden;
}
#box_slider .pageslider ul.slides li {
float: left;
padding: 0 20px 0 0;
}
#box_slider .pageslider ul.pages {
position: absolute;
height: 28px;
bottom: 0;
}
#box_slider .pageslider ul.pages li {
float: left;
padding: 2px 0px;
}
#box_slider .pageslider.bullets ul.pages li a {
display: block;
width: 24px;
height: 24px;
background: url('../images/dot.png') transparent 0 0 no-repeat;
}
#box_slider .pageslider.bullets ul.pages li a:hover {
background-image: url('../images/dot_over.png');
}
#box_slider .pageslider.bullets ul.pages li.current a {
Copyright© Shoper.pl 2011. All rights reserved.
Strona 20/24
+ 4246
+ 4247
+ 4248
+ 4249
+ 4250
+ 4251
+ 4252
+ 4253
+ 4254
+ 4255
+ 4256
+ 4257
+ 4258
+ 4259
+ 4260
+ 4261
+ 4262
+ 4263
+ 4264
+ 4265
+ 4266
+ 4267
+ 4268
+ 4269
+ 4270
+ 4271
+ 4272
+ 4273
+ 4274
+ 4275
+ 4276
+ 4277
+ 4278
+ 4279
+ 4280
+ 4281
+ 4282
+ 4283
+ 4284
+ 4285
+ 4286
+ 4287
+ 4288
+ 4289
+ 4290
+ 4291
+ 4292
+ 4293
+ 4294
+ 4295
background-image: url('../images/dot_active.png');
}
#box_slider .pageslider.bullets ul.pages li span {
display: none;
}
#box_slider .pageslider.numbers ul.pages li {
background: #fff;
}
#box_slider .pageslider.numbers ul.pages li a {
display: block;
min-width: 16px;
width: auto;
height: 16px;
padding: 0 2px;
margin: 2px 4px 2px 0;
}
#box_slider .pageslider.numbers ul.pages li:first-child a {
margin-left: 4px;
}
* html #box_slider .pageslider.numbers ul.pages li a {
width: 16px;
}
#box_slider .pageslider.numbers ul.pages li span {
font-size: 11px;
display: block;
margin: 0 auto;
text-align: center;
color: #df1717;
position: relative;
top: 1px;
}
#box_slider .pageslider.numbers ul.pages li.current a {
background: none #df0000;
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d70f0f', endColorstr='#ec6724');
background: -webkit-gradient(linear, center top, center bottom, from(#d70f0f), to(#ec6724));
background: -moz-linear-gradient(center top, #d70f0f, #ec6724);
}
#box_slider .pageslider.numbers ul.pages li.current a span {
font-weight: bold;
color: #fff;
}
Copyright© Shoper.pl 2011. All rights reserved.
Strona 21/24
+ 4296 /* END Page Slider */
+ 4297
+ 4298
+ 4299
+ 4300
+ 4301
+ 4302
+ 4303
4304 /* CSS restore */
4305
4306 .resetcss ul {
4213
4214
4215
- 4216
+ 4216
4217
4218
4219
4220
4221
4222
+ 4223
+ 4224
+ 4225
+ 4226
+ 4227
+ 4228
+ 4229
+ 4230
4231
4232
4233
4234
- 4235
+ 4235
4236
+ 4237
+ 4238
+ 4239
+ 4240
4241
4242
4243
- 4244
+ 4244
4245
4246
4247
.resetcss fieldset, .resetcss h1, .resetcss h2, .resetcss h3,
.resetcss h4, .resetcss h5, .resetcss ul, .resetcss ol,
.resetcss li, .resetcss table, .resetcss dl, .resetcss dd,
.resetcss li, .resetcss dl, .resetcss dd,
.resetcss dt, .resetcss p {
margin: auto;
padding: auto;
border: auto;
}
.resetcss p {
margin: 1em 0;
}
.resetcss > p {
margin-top: 0;
}
.resetcss ul, .resetcss ol {
padding-left: 40px;
}
.resetcss table {
.resetcss table, .resetcss th, .resetcss td {
border-collapse: separate;
border-color: auto;
border-spacing: auto;
border-width: auto;
table-layout: auto;
}
.resetcss td {
vertical-align: baseline;
padding: 1px;
}
.resetcss em {
4251 .imagezoom {
4252
z-index: 50;
4253
position: absolute;
Copyright© Shoper.pl 2011. All rights reserved.
Strona 22/24
- 4254
+ 4254
4255
4256
4257
4280
4281
4282
+ 4283
+ 4284
+ 4285
+ 4286
+ 4287
+ 4288
+ 4289
+ 4290
background: #fff;
background: #fff url('../images/loading.gif') center center no-repeat;
overflow: hidden;
cursor: move;
border: 1px solid #e1e1e1;
border: 0px;
display: block;
}
* html .productlistimgsize { /* IE6 */
margin: 0;
}
*:first-child+html .productlistimgsize { /* IE7 */
margin: 0;
}
Pliki .js
js/main.js
226
227
228
- 229
- 230
+ 229
+ 230
231
232
233
outterdiv._max = innerdiv.getChildren('.product').length - 1;
outterdiv._inner = innerdiv;
outterdiv._fx = new Fx.Tween(innerdiv, {
duration: 600,
transition : 'bounce:out'
duration: 200,
transition : 'linear'
});
416
417
418
+ 419
+ 420
+ 421
+ 422
+ 423
+ 424
+ 425
+ 426
+ 427
+ 428
+ 429
+ 430
});
new FoldenBox(el);
}
},
registration : {
selector : '#box_register input[name=address_type]',
domready : function(el) {
el.addEvent('change', function() {
var c = !!$$('#box_register input[name=address_type][value=2]').get('checked')[0];
var r1 = $$('#box_register input[name=coname] ! tr')[0];
var r2 = $$('#box_register input[name=nip] ! tr')[0];
if(true == c) {
if(r1) r1.removeClass('none');
if(r2) r2.removeClass('none');
Copyright© Shoper.pl 2011. All rights reserved.
Strona 23/24
+ 431
+ 432
+ 433
+ 434
+ 435
+ 436
+ 437
+ 438
+ 439
+ 440
+ 441
+ 442
443
444
445
596
597
598
+ 599
+ 600
+ 601
+ 602
+ 603
+ 604
+ 605
606
607
608
641
642
643
+ 644
+ 645
+ 646
647
648
649
} else {
if(r1) r1.addClass('none');
if(r2) r2.addClass('none');
}
});
if(2 == el.get('value')) {
el.fireEvent('change');
}
if(Browser.ie) {
el.addEvent('click', function(e) { this.blur(); this.fireEvent('change', e); });
}
}
}
},
return true;
}
if($chk($('box_basketsummary'))) {
Shop.basketHandler.options = {
step : 3
};
return true;
}
return false;
}
}
Shop.pageSlider.condition = function() {
return !!( $$('.pageslider ul.slides li').length > 0 );
}
652
653 window.addEvent('domready', function() {
+ 651
654
655
656
if(!$chk(Shop.useroptions.prevent) || true != Shop.useroptions.prevent) {
657
window.ShopInstance = new Shop();
Copyright© Shoper.pl 2011. All rights reserved.
Strona 24/24

Podobne dokumenty