Changeset 29453


Ignore:
Timestamp:
Sep 10, 2014, 10:28:54 AM (10 years ago)
Author:
JanisV
Message:

Removed unused elements

Location:
extensions/stripped_responsive
Files:
21 edited

Legend:

Unmodified
Added
Removed
  • extensions/stripped_responsive/admin/admin.inc.php

    r29449 r29453  
    1212
    1313        $config['themeStyle']=$_POST['f_themeStyle'];
    14         $config['hideMenu']=isset($_POST['f_hideMenu']);
    15         $config['animatedMenu']=isset($_POST['f_animatedMenu']);
    1614        $config['noLowercase']=!isset($_POST['f_forceLowercase']);
    17         $config['albumType']=$_POST['f_albumType'];
    1815        $config['albumFrame']=isset($_POST['f_albumFrame']);
    1916        $config['thumbFrame']=isset($_POST['f_thumbFrame']);
    2017        $config['showThumbLegend']=isset($_POST['f_showThumbLegend']);
     18        $config['menuOnRight']=isset($_POST['f_menuOnRight']);
    2119
    2220        $config['showTitleOnBrowsePath']=isset($_POST['f_showTitleOnBrowsePath']);
  • extensions/stripped_responsive/admin/admin.tpl

    r29449 r29453  
    1717                                </label></li>
    1818                                <li><label>
    19                                         <span class="property">{'Hide menu by default on category page'|@translate}</span>&nbsp;
    20                                         <input type="checkbox" name="f_hideMenu" {if $options.hideMenu}checked{/if}>
    21                                 </label></li>
    22                                 <li><label>
    23                                         <span class="property">{'Animate menu'|@translate}</span>&nbsp;
    24                                         <input type="checkbox" name="f_animatedMenu" {if $options.animatedMenu}checked{/if}>
    25                                 </label></li>
    26                                 <li><label>
    2719                                        <span class="property">{'Force text to lowercase'|@translate}</span>&nbsp;
    2820                                        <input type="checkbox" name="f_forceLowercase" {if !($options.noLowercase)}checked{/if}>
    2921                                </label></li>
    3022                                <li><label>
    31                                         <span class="property">{'Album list layout'|@translate}</span>&nbsp;
    32                                         <select name="f_albumType" style="min-width:150px;">
    33                                                 <option value="responsive" {if ($options.albumType=="responsive")}selected{/if}>{'Responsive (description beside thumbnail)'|@translate}</option>
    34                                                 <option value="small" {if ($options.albumType=="small")}selected{/if}>{'5 albums per row (no album description)'|@translate}</option>
    35                                                 <option value="3perline" {if ($options.albumType=="3perline")}selected{/if}>{'3 albums per row (description below thumbnail)'|@translate}</option>
    36                                                 <option value="2perline" {if ($options.albumType=="2perline")}selected{/if}>{'2 albums per row (description beside thumbnail)'|@translate}</option>
    37                                                 <option value="1perline" {if ($options.albumType=="1perline")}selected{/if}>{'1 album per row (description beside thumbnail)'|@translate}</option>
    38                                         </select>
    39                                 </label></li>
    40                                 <li><label>
    4123                                        <span class="property">{'Display frame around albums'|@translate}</span>&nbsp;
    4224                                        <input type="checkbox" name="f_albumFrame" {if $options.albumFrame}checked{/if}>
     
    4931                                        <span class="property">{'Show thumbnail caption'|@translate}</span>&nbsp;
    5032                                        <input type="checkbox" name="f_showThumbLegend" {if $options.showThumbLegend}checked{/if}>
     33                                </label></li>
     34                                <li><label>
     35                                        <span class="property">{'Menu on the right'|@translate}</span>&nbsp;
     36                                        <input type="checkbox" name="f_menuOnRight" {if $options.menuOnRight}checked{/if}>
    5137                                </label></li>
    5238                        </ul>
  • extensions/stripped_responsive/admin/maintain.inc.php

    r29449 r29453  
    1010        'paramVersion'                                  => '2.3',
    1111       
    12         'themeStyle'                                    => 'black',
    13         'hideMenu'                                              => true,
    14         'animatedMenu'                                  => true,
     12        'themeStyle'                                    => 'original',
    1513        'noLowercase'                                   => false,
    16         'albumType'                                             => 'responsive',
    17         'albumFrame'                                    => true,
    18         'thumbFrame'                                    => true,
     14        'albumFrame'                                    => false,
     15        'thumbFrame'                                    => false,
    1916        'showThumbLegend'                               => false,
     17    'menuOnRight'                   => true,
    2018
    2119        'showTitleOnBrowsePath'                 => false,
  • extensions/stripped_responsive/fix-ie5-ie6.css

    r29449 r29453  
    1717
    1818/* Issues in IE from 5 to 6 only not to be used with IE7 */
    19 
    20 #menuswitcher {
    21         display:none;
    22 }
    2319
    2420#the_page,
  • extensions/stripped_responsive/js/scripts-tcp.js

    r29449 r29453  
    33// scripts Category Page ------------------------------------------------------------------------------------------------------------
    44
    5         // menu switcher script from Simple Theme
    6        
    7         var delay;
    8         var animation_webkit = true;
    9         if (options.animatedMenu) {
    10                 delay = "slow";
    11         } else {
    12                 delay = 0;
    13         }
    14 
    15         jQuery("#menuswitcher").click(function(){
    16                 if (jQuery("#menubar").is(":hidden")) {
    17                         if (delay == 0) {
    18                                 jQuery("#menubar").show();
    19                                 tnb_resize();
    20                         } else {
    21                                 if (animation_webkit) {
    22                                         jQuery("#menubar").show("blind",{},delay, function (){tnb_resize();});
    23                                 } else {
    24                                         jQuery("#menubar").show(delay, function (){tnb_resize();});
    25                                 }
    26                         }
    27                         jQuery.cookie('side-menu', 'showing', {path: "/"});
    28                         if (jQuery("#thumbnails_block2").length != 0) tnb_resize();
    29                         return false;
    30                 } else {
    31                                 if (animation_webkit) {
    32                                         jQuery("#menubar").hide("blind",{},delay, function (){tnb_resize();});
    33                                 } else {
    34                                         jQuery("#menubar").hide(delay, function (){tnb_resize();});
    35                                 }
    36                         jQuery.cookie('side-menu', 'hiding', {path: "/"});
    37                 return false;
    38                 }
    39         });
    40 
    41         // creates a variable with the contents of the cookie side-menu
    42         var sidemenu = jQuery.cookie('side-menu');
    43        
    44         // if cookie says the menu is hiding, keep it hidden!
    45         if (sidemenu == 'hiding') {
    46                 jQuery("#menubar").hide();
    47         }
    48         if (sidemenu == 'showing') {
    49                 jQuery("#menubar").show();
    50         }
    51  
    525        // resize thumbnail block
    536        jQuery(window).resize(function() { tnb_resize(); });
  • extensions/stripped_responsive/template/about.tpl

    r29449 r29453  
    22        <div class="browsePath">
    33                <h2>
    4                         {if isset($MENUBAR)}
    5                                 <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    6                         {/if}
    74                        <a href="{$U_HOME}">{'Home'|@translate}</a>
    85                        {$LEVEL_SEPARATOR}{'About'|@translate}
     
    118</div>
    129<div id="content">
    13         {if isset($MENUBAR)}{$MENUBAR}{/if}
     10    {if !$stripped_responsive.menuOnRight}
     11          {if isset($MENUBAR)}{$MENUBAR}{/if}
     12    {/if}
    1413        <div id="content_cell">
    1514                {include file='infos_errors.tpl'}
     
    2827                </div>
    2928        </div>
     29    {if $stripped_responsive.menuOnRight}
     30          {if isset($MENUBAR)}{$MENUBAR}{/if}
     31    {/if}
    3032        <div style="clear: both;"></div>
    3133</div>
  • extensions/stripped_responsive/template/comments.tpl

    r29449 r29453  
    22        <div class="browsePath">
    33                <h2>
    4                         {if isset($MENUBAR)}
    5                                 <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    6                         {/if}
    74                        <a href="{$U_HOME}">{'Home'|@translate}</a>
    85                        {$LEVEL_SEPARATOR}{'User comments'|@translate}
     
    118</div>
    129<div id="content">
    13         {if isset($MENUBAR)}{$MENUBAR}{/if}
     10    {if !$stripped_responsive.menuOnRight}
     11          {if isset($MENUBAR)}{$MENUBAR}{/if}
     12    {/if}
    1413        <div id="content_cell">
    1514                <div class="content_block">
     
    6564                </div>
    6665        </div>
     66    {if $stripped_responsive.menuOnRight}
     67          {if isset($MENUBAR)}{$MENUBAR}{/if}
     68    {/if}
    6769</div> <!-- content -->
  • extensions/stripped_responsive/template/header.tpl

    r29449 r29453  
    6161        {if !$stripped_responsive.thumbFrame} ntf{/if}
    6262        {if !$stripped_responsive.albumFrame} naf{/if}
    63         {if ($stripped_responsive.albumType == 'small')} ats{else} atd{/if}
    64         {if ($stripped_responsive.albumType == '1perline')} at1{/if}
    65         {if ($stripped_responsive.albumType == '2perline')} at2{/if}
    66         {if ($stripped_responsive.albumType == '3perline')} at3{/if}
    67         {if ($stripped_responsive.albumType == 'responsive')} atr{/if}
     63        atd atr
    6864"{/strip}>
    6965<div id="the_page">
  • extensions/stripped_responsive/template/identification.tpl

    r29449 r29453  
    22        <div class="browsePath">
    33                <h2>
    4                         {if isset($MENUBAR)}
    5                                 <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    6                         {/if}
    74                        <a href="{$U_HOME}">{'Home'|@translate}</a>
    85                        {$LEVEL_SEPARATOR}{'Identification'|@translate}
     
    118</div>
    129<div id="content">
    13         {if isset($MENUBAR)}{$MENUBAR}{/if}
     10    {if !$stripped_responsive.menuOnRight}
     11          {if isset($MENUBAR)}{$MENUBAR}{/if}
     12    {/if}
    1413        <div id="content_cell">
    1514                <div class="content_block">
     
    5756                </div>
    5857        </div>
     58    {if $stripped_responsive.menuOnRight}
     59          {if isset($MENUBAR)}{$MENUBAR}{/if}
     60    {/if}
    5961</div> <!-- content -->
  • extensions/stripped_responsive/template/index.tpl

    r29449 r29453  
    11<div class="titrePage">
    22        <div class="browsePath">
    3                 <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    43                <h2>{$TITLE}</h2>
    54        </div>
     
    2726        {if ($GMaps_loaded)}<div id="text_gmaps" style="display:none">{'GMap'|@translate}</div>{/if}
    2827</div>
    29 <div id="content" {if !$stripped_responsive.hideMenu}class="menuShown"{/if}>
    30         {$MENUBAR}
     28<div id="content" class="menuShown">
     29    {if !$stripped_responsive.menuOnRight}
     30          {$MENUBAR}
     31    {/if}
    3132        <div id="content_cell">
    3233                {include file='infos_errors.tpl'}
     
    101102                {if !empty($PLUGIN_INDEX_CONTENT_AFTER)}<div class="subcontent">{$PLUGIN_INDEX_CONTENT_AFTER}</div>{/if}
    102103        </div>
     104    {if $stripped_responsive.menuOnRight}
     105          {$MENUBAR}
     106    {/if}
    103107        <div style="clear: both;"></div>
    104108</div>
  • extensions/stripped_responsive/template/nbm.tpl

    r29449 r29453  
    22        <div class="browsePath">
    33                <h2>
    4                         {if isset($MENUBAR)}
    5                                 <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    6                         {/if}
    74                        <a href="{$U_HOME}">{'Home'|@translate}</a>
    85                        {$LEVEL_SEPARATOR}{'Notification'|@translate}
     
    118</div>
    129<div id="content">
    13         {if isset($MENUBAR)}{$MENUBAR}{/if}
     10    {if !$stripped_responsive.menuOnRight}
     11          {if isset($MENUBAR)}{$MENUBAR}{/if}
     12    {/if}
    1413        <div id="content_cell">
    1514                <div class="content_block">
     
    1716                </div>
    1817        </div>
     18    {if $stripped_responsive.menuOnRight}
     19          {if isset($MENUBAR)}{$MENUBAR}{/if}
     20    {/if}
    1921</div>
  • extensions/stripped_responsive/template/notification.tpl

    r29449 r29453  
    66        <div class="browsePath">
    77                <h2>
    8                         {if isset($MENUBAR)}
    9                                 <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    10                         {/if}
    118                        <a href="{$U_HOME}">{'Home'|@translate}</a>
    129                        {$LEVEL_SEPARATOR}{'Notification'|@translate}
     
    1512</div>
    1613<div id="content">
    17         {if isset($MENUBAR)}{$MENUBAR}{/if}
     14    {if !$stripped_responsive.menuOnRight}
     15          {if isset($MENUBAR)}{$MENUBAR}{/if}
     16    {/if}
    1817        <div id="content_cell">
    1918                <div class="content_block notification">
     
    2524                </div>
    2625        </div>
     26    {if $stripped_responsive.menuOnRight}
     27          {if isset($MENUBAR)}{$MENUBAR}{/if}
     28    {/if}
    2729</div>
  • extensions/stripped_responsive/template/password.tpl

    r29449 r29453  
    22        <div class="browsePath">
    33                <h2>
    4                         {if isset($MENUBAR)}
    5                                 <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    6                         {/if}
    74                        <a href="{$U_HOME}">{'Home'|@translate}</a>
    85                        {$LEVEL_SEPARATOR}{$title}
     
    118</div>
    129<div id="content">
    13         {if isset($MENUBAR)}{$MENUBAR}{/if}
     10    {if !$stripped_responsive.menuOnRight}
     11          {if isset($MENUBAR)}{$MENUBAR}{/if}
     12    {/if}
    1413        <div id="content_cell">
    1514                <div class="content_block">
     
    5857                </div>
    5958        </div>
     59    {if $stripped_responsive.menuOnRight}
     60          {if isset($MENUBAR)}{$MENUBAR}{/if}
     61    {/if}
    6062</div> <!-- content -->
  • extensions/stripped_responsive/template/profile.tpl

    r29449 r29453  
    22        <div class="browsePath">
    33                <h2>
    4                         {if isset($MENUBAR)}
    5                                 <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    6                         {/if}
    74                        <a href="{$U_HOME}">{'Home'|@translate}</a>
    85                        {$LEVEL_SEPARATOR}{'Profile'|@translate}
     
    118</div>
    129<div id="content">
    13         {if isset($MENUBAR)}{$MENUBAR}{/if}
     10    {if !$stripped_responsive.menuOnRight}
     11          {if isset($MENUBAR)}{$MENUBAR}{/if}
     12    {/if}
    1413        <div id="content_cell">
    1514                <div class="content_block">
     
    1817                </div>
    1918        </div>
     19    {if $stripped_responsive.menuOnRight}
     20          {if isset($MENUBAR)}{$MENUBAR}{/if}
     21    {/if}
    2022</div> <!-- content -->
  • extensions/stripped_responsive/template/register.tpl

    r29449 r29453  
    22 <div class="browsePath">
    33  <h2>
    4    {if isset($MENUBAR)}
    5     <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    6    {/if}
    74   <a href="{$U_HOME}">{'Home'|@translate}</a>
    85   {$LEVEL_SEPARATOR}{'Registration'|@translate}
     
    118</div>
    129<div id="content">
    13  {if isset($MENUBAR)}{$MENUBAR}{/if}
     10    {if !$stripped_responsive.menuOnRight}
     11          {if isset($MENUBAR)}{$MENUBAR}{/if}
     12    {/if}
    1413 <div id="content_cell">
    1514  <div class="content_block">
     
    6059  </div>
    6160 </div>
     61    {if $stripped_responsive.menuOnRight}
     62          {if isset($MENUBAR)}{$MENUBAR}{/if}
     63    {/if}
    6264</div> <!-- content -->
  • extensions/stripped_responsive/template/search.tpl

    r29449 r29453  
    22        <div class="browsePath">
    33                <h2>
    4                         {if isset($MENUBAR)}
    5                                 <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    6                         {/if}
    74                        <a href="{$U_HOME}">{'Home'|@translate}</a>
    85                        {$LEVEL_SEPARATOR}{'Search'|@translate}
     
    1815</div>
    1916<div id="content">
    20         {if isset($MENUBAR)}{$MENUBAR}{/if}
     17    {if !$stripped_responsive.menuOnRight}
     18          {if isset($MENUBAR)}{$MENUBAR}{/if}
     19    {/if}
    2120        <div id="content_cell">
    2221                <div class="content_block">
     
    127126                </div>
    128127        </div>
     128    {if $stripped_responsive.menuOnRight}
     129          {if isset($MENUBAR)}{$MENUBAR}{/if}
     130    {/if}
    129131</div> <!-- content -->
  • extensions/stripped_responsive/template/tags.tpl

    r29449 r29453  
    22        <div class="browsePath">
    33                <h2>
    4                         {if isset($MENUBAR)}
    5                                 <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
    6                         {/if}
    74                        <a href="{$U_HOME}">{'Home'|@translate}</a>
    85                        {$LEVEL_SEPARATOR}{'Tags'|@translate}
     
    2219</div>
    2320<div id="content">
    24         {if isset($MENUBAR)}{$MENUBAR}{/if}
     21    {if !$stripped_responsive.menuOnRight}
     22          {if isset($MENUBAR)}{$MENUBAR}{/if}
     23    {/if}
    2524        <div id="content_cell">
    2625                <div class="content_block">
     
    5958                </div>
    6059        </div>
     60    {if $stripped_responsive.menuOnRight}
     61          {if isset($MENUBAR)}{$MENUBAR}{/if}
     62    {/if}
    6163</div> <!-- content -->
  • extensions/stripped_responsive/theme-black.css

    r29449 r29453  
    2727.content_block a:hover          { color:#fff;}
    2828
    29 /* Menubar ------------------------------------------------------------------------------------- */
    30 
    31 #menuswitcher                   { color: #999;}
    32 #menuswitcher:hover             { color: #ccc;}
    33 
    3429/* Category thumbnails ------------------------------------------------------------------------- */
    3530.atr .thumbnailCategory .description {
     
    4439
    4540.thumbnailCategories li                                 { color:#999;}
    46 .ats .thumbnailCategories li                    { background: transparent url(images/back_30.png) 0 0 no-repeat;}
    47 .at3 .thumbnailCategories li                    { background: transparent url(images/m_back_30.png) 0 0 no-repeat;}
    48 .at2 .thumbnailCategories li                    { background: transparent url(images/l_back_30.png) 0 0 no-repeat;}
    49 .at1 .thumbnailCategories li                    { background: transparent url(images/xl_back_30.png) 0 0 no-repeat;}
    5041
    5142.thumbnailCategories li:hover           { color:#666;}
    52 .ats .thumbnailCategories li:hover      { background: transparent url(images/back_30.png) 0 -170px no-repeat;}
    53 .at3 .thumbnailCategories li:hover      { background: transparent url(images/m_back_30.png) 0 -290px no-repeat;}
    54 .at2 .thumbnailCategories li:hover      { background: transparent url(images/l_back_30.png) 0 -170px no-repeat;}
    55 .at1 .thumbnailCategories li:hover      { background: transparent url(images/xl_back_30.png) 0 -170px no-repeat;}
    5643
    5744.thumbnailCategory .illustration img                    { border: 1px solid #555;}
  • extensions/stripped_responsive/theme-original.css

    r29449 r29453  
    2727.content_block a:hover  { color:#fff;}
    2828
    29 /* Menubar ------------------------------------------------------------------------------------- */
    30 
    31 #menuswitcher                   { color: #999;}
    32 #menuswitcher:hover             { color: #ccc;}
    33 
    3429/* Category thumbnails ------------------------------------------------------------------------- */
    3530
     
    4540
    4641.thumbnailCategories li                                 { color:#999;}
    47 .ats .thumbnailCategories li                    { background: transparent url(images/back_30.png) 0 0 no-repeat;}
    48 .at3 .thumbnailCategories li                    { background: transparent url(images/m_back_30.png) 0 0 no-repeat;}
    49 .at2 .thumbnailCategories li                    { background: transparent url(images/l_back_30.png) 0 0 no-repeat;}
    50 .at1 .thumbnailCategories li                    { background: transparent url(images/xl_back_30.png) 0 0 no-repeat;}
    5142
    5243.thumbnailCategories li:hover           { color:#666;}
    53 .ats .thumbnailCategories li:hover      { background: transparent url(images/back_30.png) 0 -170px no-repeat;}
    54 .at3 .thumbnailCategories li:hover      { background: transparent url(images/m_back_30.png) 0 -290px no-repeat;}
    55 .at2 .thumbnailCategories li:hover      { background: transparent url(images/l_back_30.png) 0 -170px no-repeat;}
    56 .at1 .thumbnailCategories li:hover      { background: transparent url(images/xl_back_30.png) 0 -170px no-repeat;}
    5744
    5845.thumbnailCategory .illustration img                    { border: 1px solid #555;}
  • extensions/stripped_responsive/theme-white.css

    r29449 r29453  
    2626.content_block a                        {color:#222;}
    2727.content_block a:hover  {color:#00;}
    28 
    29 /* Menubar ------------------------------------------------------------------------------------- */
    30 
    31 #menuswitcher           { color: #666;}
    32 #menuswitcher:hover     { color: #111;}
    3328
    3429/* Category thumbnails ------------------------------------------------------------------------- */
  • extensions/stripped_responsive/theme.css

    r29451 r29453  
    287287/* Menubar ------------------------------------------------------------------------------------- */
    288288
    289 #menuswitcher {
    290         cursor: pointer;
    291         display:none;
    292 }
    293 
    294 .js #menubar {
    295 /*      display:none;*/
    296 }
    297 .js .menuShown #menubar {
    298         display: block;
    299 }
    300 
    301289#menubar {
    302290        width:159px;
     
    386374}
    387375
    388 /*.ats ul.thumbnailCategories li { width: 170px; height: 170px;}*/
    389 /*.at3 ul.thumbnailCategories li { width: 290px; height: 290px;}*/
    390 .at2 ul.thumbnailCategories li { width: 440px; height: 170px;}
    391 .at1 ul.thumbnailCategories li { width: 890px; height: 170px;}
    392376.atr ul.thumbnailCategories li { width: 300px; height: 300px;}
    393377@media (min-width: 778px) {
     
    401385}
    402386
    403 .ats .stuffs_block .personal_block ul.thumbnailCategories li { width:170px!important;}
    404 .at3 .stuffs_block .personal_block ul.thumbnailCategories li { width:273px!important; height:273px;}
    405 .at2 .stuffs_block .personal_block ul.thumbnailCategories li { width:415px!important;}
    406 .at1 .stuffs_block .personal_block ul.thumbnailCategories li { width:840px!important;}
    407387.atr .stuffs_block .personal_block ul.thumbnailCategories li { width:273px!important; height:273px;}
    408388
     
    420400}
    421401
    422 .ats .thumbnailCategory .illustration { height:130px;}
    423 .at3 .thumbnailCategory .illustration { height:130px;}
    424 .at2 .thumbnailCategory .illustration { height:170px;}
    425 .at1 .thumbnailCategory .illustration { height:170px;}
    426 .at2 .thumbnailCategory .illustration, .at1 .thumbnailCategory .illustration  { float: left;}
    427 .at3 .thumbnailCategory .illustration a { width:280px;height:280px;}
    428 .at3 .stuffs_block .thumbnailCategory .illustration a { width:263px;}
    429 .at3 .thumbnailCategory .illustration a  { vertical-align:bottom;}
    430402.atr .thumbnailCategory .illustration a { width:280px;height:280px;}
    431403.atr .stuffs_block .thumbnailCategory .illustration a { width:263px;}
    432404.atr .thumbnailCategory .illustration a  { vertical-align:bottom;}
    433405
    434 .ats .thumbnailCategory .illustration { margin:5px 0 0;}
    435 .at3 .thumbnailCategory .illustration { margin:5px 5px 0 5px;}
    436 .at2 .thumbnailCategory .illustration { margin:0 5px;}
    437 .at1 .thumbnailCategory .illustration { margin:0 10px;}
    438406.atr .thumbnailCategory .illustration { margin:5px 5px 0 5px;}
    439407
     
    452420}
    453421
    454 .ats .thumbnailCategory .illustration img { max-height:128px;}
    455 .at3 .thumbnailCategory .illustration img { max-height:128px;}
    456 .at2 .thumbnailCategory .illustration img { max-height:160px;}
    457 .at1 .thumbnailCategory .illustration img { max-height:160px;}
    458422.atr .thumbnailCategory .illustration img { max-height:286px;}
    459423@media (min-width: 778px) {
     
    476440}
    477441
    478 .ats .thumbnailCategory .description p { display:none!important;}
    479442.atd .thumbnailCategory .description .text p.dates { display:none!important;}
    480443
     
    498461}       
    499462
    500 .ats .thumbnailCategory .description {
    501         overflow: hidden;
    502         display: table-cell;
    503         vertical-align:middle;
    504         width:150px;
    505         height:35px;
    506         padding:0 5px;
    507 }
    508 
    509 .at3 .thumbnailCategory .description {
    510         overflow: hidden;
    511         display: inline-block;
    512         width: 266px;
    513 /*      height: 150px;*/
    514         height: 75px;
    515         margin: -76px 7px 15px 6px;
    516         padding: 0 5px;
    517     position: relative;
    518 }
    519463.atr .thumbnailCategory .description {
    520464        overflow: hidden;
     
    543487}
    544488
    545 .at3 .stuffs_block .thumbnailCategory .description { width:263px;}
    546489.atr .stuffs_block .thumbnailCategory .description { width:263px;}
    547490
    548 .at2 .thumbnailCategory .description {
    549         overflow: hidden;
    550         display: inline-block;
    551         width: 250px;
    552         height: 155px;
    553         margin: 10px 10px 5px 0;
    554         padding:0;
    555 }
    556 
    557 .at1 .thumbnailCategory .description {
    558         overflow: hidden;
    559         display: inline-block;
    560         width: 680px;
    561         height: 155px;
    562         margin: 10px 0;
    563         padding:0;
    564 }
    565 
    566 .at3 .stuffs_block .personal_block .thumbnailCategory .description { width:263px;}
    567 .at2 .stuffs_block .personal_block .thumbnailCategory .description { width:225px;}
    568 .at1 .stuffs_block .personal_block .thumbnailCategory .description { width:630px;}
    569491.atr .stuffs_block .personal_block .thumbnailCategory .description { width:263px;}
    570492
     
    574496        font-variant:normal;
    575497}
    576 
    577 .ats .thumbnailCategory .description h3 {
    578         font-size:107.692%;
    579         line-height:16px;
    580 }
    581 
    582 .at2 .thumbnailCategory .description h3 { text-align:left;}
    583 .at1 .thumbnailCategory .description h3 { text-align:left;}
    584498
    585499.atd .thumbnailCategory .description h3 {
     
    606520        word-wrap: break-word;
    607521}
    608 
    609 .at1 li.odd1 .thumbnailCategory .illustration {float:right;}
    610 .at1 li.odd0 .thumbnailCategory .description {margin-right:15px;}
    611 .at1 li.odd1 .thumbnailCategory .description {margin-left:15px;}
    612522
    613523/* Images Thumbnails --------------------------------------------------------------------------- */
Note: See TracChangeset for help on using the changeset viewer.