Ignore:
Timestamp:
Mar 14, 2012, 2:54:29 PM (12 years ago)
Author:
plg
Message:

import theme Simple version 2.5.4

  • improve media-queries for small resolutions
  • limit width of descriptions - combine files
  • bugfix for the admin option
Location:
extensions/simple_themes/simple
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • extensions/simple_themes/simple/README.md

    r13558 r13559  
    4242Changelog
    4343---------
     44
     45### version 2.5.4 (23/01/2012)
     46
     47* improve media-queries for small resolutions
     48* limit with of descriptions - combine files
     49* bugfix for the admin option
    4450
    4551### version 2.5.3 (22/01/2012)
  • extensions/simple_themes/simple/admin/admin.inc.php

    r13558 r13559  
    33
    44global $conf;
    5 if (!isset($conf['stripped']))
     5if (!isset($conf['simple']))
    66{
    77  $conf['simple'] = serialize(array('albumDisplay' => 'column'));
  • extensions/simple_themes/simple/admin/admin.tpl

    r13558 r13559  
    1111            <span class="property">{'Album title and description'|@translate}</span>&nbsp;
    1212            <select name="albumDisplay" style="min-width:150px;">
    13               <option value="column" {if ($options.albumDisplay=="line")}selected="selected"{/if}>{'under the album thumbnail'|@translate}</option>
     13              <option value="column" {if ($options.albumDisplay=="column")}selected="selected"{/if}>{'under the album thumbnail'|@translate}</option>
    1414              <option value="line" {if ($options.albumDisplay=="line")}selected="selected"{/if}>{'next to the album thumbnail'|@translate}</option>
    1515            </select>
  • extensions/simple_themes/simple/content.css

    r13557 r13559  
    479479    margin: 1em;
    480480  }
    481 }
    482 
     481  .thumbnailCategories li {
     482    width: 45%;
     483  }
     484}
     485
     486@media only screen and (max-width: 520px) {
     487  .thumbnailCategories li {
     488    width: 95%;
     489  }
     490}
  • extensions/simple_themes/simple/theme.css

    r13549 r13559  
    5555}
    5656#thumbnails p {
    57   margin: 0;
     57  margin: 0 auto;
     58  max-width: 12em;
    5859}
    5960
  • extensions/simple_themes/simple/themeconf.inc.php

    r13558 r13559  
    22/*
    33Theme Name: Simple Grey
    4 Version: 2.5.3
     4Version: 2.5.4
    55Description: Simple Grey
    66Theme URI: http://piwigo.org/ext/extension_view.php?eid=308
     
    2929
    3030// debug - do not combine files
    31 $conf['template_combine_files'] = false;
     31// $conf['template_combine_files'] = false;
    3232
    3333if (!isset($conf['simple']))
Note: See TracChangeset for help on using the changeset viewer.