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/hr_glass_xl
Files:
2 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{
Note: See TracChangeset for help on using the changeset viewer.