Changeset 20153


Ignore:
Timestamp:
Jan 14, 2013, 8:07:25 PM (11 years ago)
Author:
flop25
Message:

optimal size
switchlanguage style

todo lang file to spread

Location:
extensions
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • extensions/hr_glass_xl/theme.css

    r16380 r20153  
    7272        text-shadow: 0 0 2px #000;
    7373}
    74 
     74#languageSwitchBox{
     75        font-size: 11px;
     76        color: #000033 !important;
     77        text-shadow: 0 0 2px #ccc;
     78        padding: 4px 8px;
     79        border: 1px solid rgba(255,255,255,0.25);
     80        background-color: rgb(255,255,255) !important;
     81        background-color: rgba(255,255,255,0.92)!important;
     82        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#fff));
     83        border-radius: 3px;
     84        -webkit-border-radius: 3px;
     85        -moz-border-radius: 3px;
     86        box-shadow: 0 0 5px #555;
     87        -webkit-box-shadow: 0 0 5px #555;
     88        -moz-box-shadow: 0 0 5px #555;
     89}
     90#languageSwitchBox A {
     91        color: #000 !important;
     92}
     93
     94#languageSwitchBox A:hover {
     95        text-shadow: 0 0 2px #000 !important;
     96}
    7597
    7698/* Page
  • extensions/hr_glass_xl/themeconf.inc.php

    r16380 r20153  
    1616  'activable'     => true,
    1717);
    18 // Need upgrade?
    19   if (!isset($conf['hr_glass_xl']))
    20   {
    21     $config = array(
    22       'home'       => true,
    23       'categories' => true,
    24       'picture'    => false,
    25       'other'      => true,
    26       );
    27      
    28     $query = '
     18//// [update check]
     19if (!isset($conf['hr_glass_xl']))
     20{
     21  $config = array(
     22    'home'       => true,
     23    'categories' => true,
     24    'picture'    => false,
     25    'other'      => true,
     26    );
     27   
     28  $query = '
    2929INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment)
    3030VALUES ("hr_glass_xl" , "'.pwg_db_real_escape_string(serialize($config)).'" , "hr_glass_xl parameters");';
    3131
     32  pwg_query($query);
     33  load_conf_from_db();
     34}
     35if (isset($conf['derivatives']))  {   
     36  $new = @unserialize($conf['derivatives']);
     37  if(!isset($new['d']['Optimal']))
     38  {
     39    $new['d']['Optimal']=ImageStdParams::get_custom(900,9999);
     40    $query = '
     41        UPDATE '.CONFIG_TABLE.'
     42        SET value="'.addslashes(serialize($new)).'"
     43        WHERE param = "derivatives"
     44        LIMIT 1';
    3245    pwg_query($query);
    3346    load_conf_from_db();
    3447  }
     48}//// [/update check]
     49
     50
    3551
    3652// thx to P@t
     
    119135
    120136/************************************ picture.tpl ************************************/
    121 add_event_handler('render_element_content', 'hr_glass_xl_picture',  EVENT_HANDLER_PRIORITY_NEUTRAL, 20 );
     137//add_event_handler('render_element_content', 'hr_glass_xl_picture',  EVENT_HANDLER_PRIORITY_NEUTRAL, 20 );
    122138function hr_glass_xl_picture($content, $element_info)
    123139{
  • extensions/hr_os/theme.css

    r16380 r20153  
    7777#derivativeSwitchBox A:hover, #sortOrderBox A:hover {
    7878        text-shadow: 0 0 2px #000;
     79}
     80#languageSwitchBox{
     81        font-size: 11px;
     82        color: #000033 !important;
     83        text-shadow: 0 0 2px #ccc;
     84        padding: 4px 8px;
     85        border: 1px solid rgba(255,255,255,0.25);
     86        background-color: rgb(255,255,255) !important;
     87        background-color: rgba(255,255,255,0.92)!important;
     88        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#fff));
     89        border-radius: 3px;
     90        -webkit-border-radius: 3px;
     91        -moz-border-radius: 3px;
     92        box-shadow: 0 0 5px #555;
     93        -webkit-box-shadow: 0 0 5px #555;
     94        -moz-box-shadow: 0 0 5px #555;
     95}
     96#languageSwitchBox A {
     97        color: #000 !important;
     98}
     99
     100#languageSwitchBox A:hover {
     101        text-shadow: 0 0 2px #000 !important;
    79102}
    80103
  • extensions/hr_os/themeconf.inc.php

    r16380 r20153  
    1616  'activable'     => true,
    1717);
    18 // Need upgrade?
    19   if (!isset($conf['hr_os']))
    20   {
    21     $config = array(
    22       'home'       => true,
    23       'categories' => true,
    24       'picture'    => false,
    25       'other'      => true,
    26       );
    27      
    28     $query = '
     18//// [update check]
     19if (!isset($conf['hr_os']))
     20{
     21  $config = array(
     22    'home'       => true,
     23    'categories' => true,
     24    'picture'    => false,
     25    'other'      => true,
     26    );
     27   
     28  $query = '
    2929INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment)
    3030VALUES ("hr_os" , "'.pwg_db_real_escape_string(serialize($config)).'" , "hr_os parameters");';
    3131
     32  pwg_query($query);
     33  load_conf_from_db();
     34}
     35if (isset($conf['derivatives']))  {   
     36  $new = @unserialize($conf['derivatives']);
     37  if(!isset($new['d']['Optimal']))
     38  {
     39    $new['d']['Optimal']=ImageStdParams::get_custom(730,9999);
     40    $query = '
     41        UPDATE '.CONFIG_TABLE.'
     42        SET value="'.addslashes(serialize($new)).'"
     43        WHERE param = "derivatives"
     44        LIMIT 1';
    3245    pwg_query($query);
    3346    load_conf_from_db();
    3447  }
     48}
     49//// [/update check]
     50
     51
    3552// thx to P@t
    3653add_event_handler('loc_begin_page_header', 'set_hr_os_header');
     
    117134
    118135/************************************ picture.tpl ************************************/
    119 add_event_handler('render_element_content', 'hr_os_picture',  EVENT_HANDLER_PRIORITY_NEUTRAL, 20 );
     136//add_event_handler('render_element_content', 'hr_os_picture',  EVENT_HANDLER_PRIORITY_NEUTRAL, 20 );
    120137function hr_os_picture($content, $element_info)
    121138{
  • extensions/hr_os_xl/admin/maintain.inc.php

    r11027 r20153  
    2020    pwg_query($query);
    2121  }
     22  if (isset($conf['derivatives']))  {   
     23    $new = @unserialize($conf['derivatives']);
     24    $new['d']['Optimal']=ImageStdParams::get_custom(900,9999);
     25    $query = '
     26        UPDATE '.CONFIG_TABLE.'
     27        SET value="'.pwg_db_real_escape_string(serialize($new)).'"
     28        WHERE param = "derivatives"
     29        LIMIT 1';
     30    pwg_query($query);
     31    load_conf_from_db();
     32  }
     33
    2234}
    2335
    2436function theme_deactivate()
    2537{
    26   global $prefixeTable;
     38  global $prefixeTable, $conf;
    2739
    2840  $query = 'DELETE FROM ' . CONFIG_TABLE . ' WHERE param="hr_os_xl" LIMIT 1;';
    2941  pwg_query($query);
     42  if (isset($conf['derivatives']))  {   
     43    $new = @unserialize($conf['derivatives']);
     44    if( isset($new['d']['Optimal']))
     45    {
     46      unset($new['d']['Optimal']);
     47      $conf['derivatives']=serialize($new);
     48      $query = '
     49          UPDATE '.CONFIG_TABLE.'
     50          SET value="'.addslashes(serialize($new)).'"
     51          WHERE param = "derivatives"
     52          LIMIT 1';
     53      pwg_query($query);
     54    }
     55  }
     56
    3057}
    3158
  • extensions/hr_os_xl/theme.css

    r16380 r20153  
    5959        color: #FFF;
    6060}
    61 #derivativeSwitchBox, #sortOrderBox {
     61#languageSwitchBox, #derivativeSwitchBox, #sortOrderBox {
    6262        font-size: 11px;
    6363        color: #000033;
     
    7575        -moz-box-shadow: 0 0 5px #555;
    7676}
     77#languageSwitchBox{
     78        font-size: 11px;
     79        color: #000033 !important;
     80        text-shadow: 0 0 2px #ccc;
     81        padding: 4px 8px;
     82        border: 1px solid rgba(255,255,255,0.25);
     83        background-color: rgb(255,255,255) !important;
     84        background-color: rgba(255,255,255,0.92)!important;
     85        background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#fff));
     86        border-radius: 3px;
     87        -webkit-border-radius: 3px;
     88        -moz-border-radius: 3px;
     89        box-shadow: 0 0 5px #555;
     90        -webkit-box-shadow: 0 0 5px #555;
     91        -moz-box-shadow: 0 0 5px #555;
     92}
    7793#derivativeSwitchBox A, #sortOrderBox A {
    7894        color: #000;
     
    8197#derivativeSwitchBox A:hover, #sortOrderBox A:hover {
    8298        text-shadow: 0 0 2px #000;
     99}
     100#languageSwitchBox A {
     101        color: #000 !important;
     102}
     103
     104#languageSwitchBox A:hover {
     105        text-shadow: 0 0 2px #000 !important;
    83106}
    84107
  • extensions/hr_os_xl/themeconf.inc.php

    r16380 r20153  
    1616  'activable'     => true,
    1717);
    18   if (!isset($conf['hr_os_xl']))
    19   {
    20     $config = array(
    21       'home'       => true,
    22       'categories' => true,
    23       'picture'    => false,
    24       'other'      => true,
    25       );
    26      
    27     $query = '
     18//// [update check]
     19if (!isset($conf['hr_os_xl']))
     20{
     21  $config = array(
     22    'home'       => true,
     23    'categories' => true,
     24    'picture'    => false,
     25    'other'      => true,
     26    );
     27   
     28  $query = '
    2829INSERT INTO ' . CONFIG_TABLE . ' (param,value,comment)
    2930VALUES ("hr_os_xl" , "'.pwg_db_real_escape_string(serialize($config)).'" , "hr_os_xl parameters");';
    3031
     32  pwg_query($query);
     33  load_conf_from_db();
     34}
     35if (isset($conf['derivatives']))  {   
     36  $new = @unserialize($conf['derivatives']);
     37  if(!isset($new['d']['Optimal']))
     38  {
     39    $new['d']['Optimal']=ImageStdParams::get_custom(900,9999);
     40    $query = '
     41        UPDATE '.CONFIG_TABLE.'
     42        SET value="'.addslashes(serialize($new)).'"
     43        WHERE param = "derivatives"
     44        LIMIT 1';
    3145    pwg_query($query);
    3246    load_conf_from_db();
    3347  }
     48}
     49//// [/update check]
    3450
    3551// thx to P@t
     
    117133
    118134/************************************ picture.tpl ************************************/
    119 add_event_handler('render_element_content', 'hr_os_xl_picture',  EVENT_HANDLER_PRIORITY_NEUTRAL, 20 );
     135//add_event_handler('render_element_content', 'hr_os_xl_picture',  EVENT_HANDLER_PRIORITY_NEUTRAL, 20 );
    120136function hr_os_xl_picture($content, $element_info)
    121137{
Note: See TracChangeset for help on using the changeset viewer.