Changeset 3018 for branches/2.2/phpgwapi


Ignore:
Timestamp:
07/08/10 17:52:20 (14 years ago)
Author:
amuller
Message:

Ticket #1135 - Aplicando alterações do branches 2.0 no branches 2.2

Location:
branches/2.2/phpgwapi
Files:
18 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/phpgwapi/inc/class.common.inc.php

    r1576 r3018  
    12641264                        $tpl->set_var('app_css', $app_css); 
    12651265 
    1266                         // search for app specific css file 
    1267                         if(@isset($GLOBALS['phpgw_info']['flags']['currentapp'])) 
    1268                         { 
    1269                                 $appname = $GLOBALS['phpgw_info']['flags']['currentapp']; 
    1270  
    1271                                 if(file_exists(PHPGW_SERVER_ROOT . SEP . $appname . SEP 
    1272                                         . 'templates' . SEP . $GLOBALS['phpgw_info']['server']['template_set'] 
    1273                                         . SEP . 'app.css') 
    1274                                 ) 
    1275                                 { 
    1276                                         $tpl->set_var('css_file', '<LINK href="'.$GLOBALS['phpgw_info']['server']['webserver_url'] 
    1277                                                 . "/$appname/templates/".$GLOBALS['phpgw_info']['server']['template_set'] 
    1278                                                 . "/app.css".'" type=text/css rel=StyleSheet>'); 
    1279                                 } 
    1280                                 elseif(file_exists(PHPGW_SERVER_ROOT . SEP . $appname . SEP 
    1281                                         . 'templates' . SEP . 'default' 
    1282                                         . SEP . 'app.css') 
    1283                                 ) 
    1284                                 { 
    1285                                         $tpl->set_var('css_file', '<LINK href="'.$GLOBALS['phpgw_info']['server']['webserver_url'] 
    1286                                         ."/$appname/templates/default/app.css".'" type=text/css rel=StyleSheet>'); 
    1287                                 } 
    1288                         } 
    1289  
    1290                         return $tpl->subst('css'); 
     1266                        // search for app specific css filie 
     1267                        if ( @ isset( $GLOBALS[ 'phpgw_info' ][ 'flags' ][ 'currentapp' ] ) )  
     1268                        {  
     1269                                $css = "/%s/templates/%s/%s.css";  
     1270 
     1271                                global $path, $link, $template;  
     1272 
     1273                                $path = PHPGW_SERVER_ROOT . str_replace( '/', SEP, $css );  
     1274 
     1275                                $link = '<LINK href="%s" type="text/css" rel="StyleSheet">';  
     1276                                $link = sprintf( $link,  
     1277                                        "{$GLOBALS[ 'phpgw_info' ][ 'server' ][ 'webserver_url' ]}{$css}"  
     1278                                );  
     1279 
     1280                                $template = $GLOBALS[ 'phpgw_info' ][ 'server' ][ 'template_set' ];  
     1281 
     1282                                function _css( $module, $css )  
     1283                                {  
     1284                                        global $link, $path, $template;  
     1285 
     1286                                        if ( file_exists( sprintf( $path, $module, $template, str_replace( '/', SEP, $css ) ) ) )  
     1287                                                return sprintf( $link, $module, $template, $css );  
     1288 
     1289                                        if ( file_exists( sprintf( $path, $module, 'default', str_replace( '/', SEP, $css ) ) ) )  
     1290                                                return sprintf( $link, $module, 'default', $css );  
     1291 
     1292                                        return '';  
     1293                                }  
     1294 
     1295                                $css = _css( 'phpgwapi', 'css/base' );  
     1296                                $css .= _css( 'phpgwapi', "css/{$GLOBALS[ 'phpgw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'theme' ]}" );  
     1297                                $css .= _css( $GLOBALS[ 'phpgw_info' ][ 'flags' ][ 'currentapp' ], "css/{$GLOBALS[ 'phpgw_info' ][ 'user' ][ 'preferences' ][ 'common' ][ 'theme' ]}" );  
     1298                                $css .= _css( $GLOBALS[ 'phpgw_info' ][ 'flags' ][ 'currentapp' ], 'app' );  
     1299 
     1300                                if ( $css )  
     1301                                        $tpl -> set_var( 'css_file', $css );  
     1302                        }  
     1303 
     1304                        return $tpl -> subst('css');  
     1305 
    12911306                } 
    12921307 
  • branches/2.2/phpgwapi/inc/class.sessions.inc.php

    r1464 r3018  
    343343                        } 
    344344 
    345                         /* ExpressoLivre 
    346                            Necessário comentar para que o redirecionamento de uma sessão 
    347                            https para uma http funcionasse atrás de um proxy 
    348                         */ 
    349  
    350                         /* 
    351                         if (@$GLOBALS['phpgw_info']['server']['sessions_checkip']) 
    352                         { 
    353                                 if((PHP_OS != 'Windows') && (PHP_OS != 'WINNT') && 
    354                                         (!$GLOBALS['phpgw_info']['user']['session_ip'] || $GLOBALS['phpgw_info']['user']['session_ip'] != $this->getuser_ip()) 
    355                                 ) 
    356                                 { 
    357                                         //echo "IP do cliente com https   ---->  ".$GLOBALS['phpgw_info']['user']['session_ip']; 
    358                                         //echo "<BR>IP do cliente com http ---->  ".$this->getuser_ip(); 
    359                                         if(is_object($GLOBALS['phpgw']->log)) 
    360                                         { 
    361                                                 // This needs some better wording 
    362                                                 $GLOBALS['phpgw']->log->message(array( 
    363                                                         'text' => 'W-VerifySession, IP %1 doesn\'t match IP %2 in session table', 
    364                                                         'p1'   => $this->getuser_ip(), 
    365                                                         'p2'   => $GLOBALS['phpgw_info']['user']['session_ip'], 
    366                                                         'line' => __LINE__, 
    367                                                         'file' => __FILE__ 
    368                                                 )); 
    369                                                 $GLOBALS['phpgw']->log->commit(); 
    370                                         } 
    371                                         return False; 
    372                                 } 
    373                         } 
    374                         */ 
    375  
     345                         
    376346                        $GLOBALS['phpgw']->acl->acl($this->account_id); 
    377347                        $GLOBALS['phpgw']->accounts->accounts($this->account_id); 
     
    408378                function getuser_ip() 
    409379                { 
    410                 /* 
    411                         if (getenv(HTTP_X_FORWARDED_FOR)) 
    412                         { 
    413                                 if (getenv(HTTP_CLIENT_IP)) 
    414                                 { 
    415                                         $ip=getenv(HTTP_CLIENT_IP); 
    416                                 } 
    417                                 else 
    418                                 { 
    419                                         $ip=getenv(HTTP_X_FORWARDED_FOR); 
    420                                 } 
    421                                 $ip_proxy=getenv(REMOTE_ADDR); 
    422                         } 
    423                         else 
    424                         { 
    425                                 $ip=getenv(REMOTE_ADDR); 
    426                         } 
    427                         return $ip; 
    428                 */ 
    429                         return (isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR']); 
     380                        return (isset($_SERVER['HTTP_X_FORWARDED_FOR']) ? $_SERVER['HTTP_X_FORWARDED_FOR']."," : "").$_SERVER['REMOTE_ADDR'];  
    430381                } 
    431382 
  • branches/2.2/phpgwapi/inc/class.sessions_php4.inc.php

    r2 r3018  
    125125                        else 
    126126                        { 
    127                                 $sessions = $this->list_sessions(0,'','',True); 
    128                                  
    129                                 if (isset($sessions[$sessionid])) 
    130                                 { 
    131                                         //echo "<p>session_php4::destroy($session_id): unlink('".$sessions[$sessionid]['php_session_file'].")</p>\n"; 
    132                                         @unlink($sessions[$sessionid]['php_session_file']); 
     127                                if(@opendir($path = ini_get('session.save_path'))){  
     128                                        $session_file = $path."/sess_".$sessionid;  
     129                                        if (file_exists($session_file))  
     130                                                @unlink($session_file);  
    133131                                } 
    134132                        } 
     
    199197                function list_sessions($start,$order,$sort,$all_no_sort = False) 
    200198                { 
    201                         //echo "<p>session_php4::list_sessions($start,'$order','$sort',$all)</p>\n"; 
    202                         $session_cache = $this->appsession('php4_session_cache','phpgwapi'); 
    203199 
    204200                        $values = array(); 
     
    211207                        while ($file = readdir($dir)) 
    212208                        { 
    213                                 if (substr($file,0,5) != 'sess_') 
     209                                if (substr($file,0,5) != 'sess_' || !is_readable($path. '/' . $file)) 
    214210                                { 
    215211                                        continue; 
    216212                                } 
    217                                 if (isset($session_cache[$file]))       // use copy from cache 
    218                                 { 
    219                                         $session = $session_cache[$file]; 
    220  
    221                                         if ($session['session_flags'] == 'A' || !$session['session_id'] || 
    222                                                 $session['session_install_id'] != $GLOBALS['phpgw_info']['server']['install_id']) 
    223                                         { 
    224                                                 continue;       // no anonymous sessions or other domains or installations 
    225                                         } 
    226                                         if (!$all_no_sort)      // we need the up-to-date data --> unset and reread it 
    227                                         { 
    228                                                 unset($session_cache[$file]); 
    229                                         } 
    230                                 } 
    231                                 if (!isset($session_cache[$file]))      // not in cache, read and cache it 
    232                                 { 
    233                                         if (!is_readable($path. '/' . $file)) 
    234                                         { 
    235                                                 continue;       // happens if webserver runs multiple user-ids 
    236                                         } 
    237                                         $session = ''; 
    238                                         if (($fd = fopen ($path . '/' . $file,'r'))) 
    239                                         { 
    240                                                 $session = ($size = filesize ($path . '/' . $file)) ? @fread ($fd, $size) : 0; 
    241                                                 fclose ($fd); 
    242                                         } 
    243                                         if (substr($session,0,14) != 'phpgw_session|') 
    244                                         { 
    245                                                 continue; 
    246                                         } 
    247                                         $session = unserialize(substr($session,14)); 
    248                                         unset($session['phpgw_app_sessions']);  // not needed, saves memory 
    249                                         $session_cache[$file] = $session; 
    250                                 } 
    251                                 if($session['session_flags'] == 'A' || !$session['session_id'] || 
    252                                         $session['session_install_id'] != $GLOBALS['phpgw_info']['server']['install_id']) 
    253                                 { 
    254                                         continue;       // no anonymous sessions or other domains or installations 
    255                                 } 
    256                                 //echo "file='$file'=<pre>"; print_r($session); echo "</pre>";  
    257  
    258                                 $session['php_session_file'] = $path . '/' . $file; 
     213                                $session = '';  
     214                                if (($fd = fopen ($path . '/' . $file,'r')))  
     215                                {  
     216                                        $session = ($size = filesize ($path . '/' . $file)) ? @fread ($fd, $size) : 0;  
     217                                        fclose ($fd);  
     218                                }  
     219                                $session = unserialize(substr($session,14));  
    259220                                $values[$session['session_id']] = $session; 
    260221                        } 
     
    280241                                reset($values); 
    281242                        } 
    282                         $this->appsession('php4_session_cache','phpgwapi',$session_cache); 
    283243 
    284244                        return $values; 
  • branches/2.2/phpgwapi/inc/class.setup.inc.php

    r1322 r3018  
    863863                                } 
    864864                                /* Load up some configured values */ 
    865                                 $this->db->query("SELECT config_name,config_value FROM phpgw_config " 
    866                                         . "WHERE config_name LIKE 'ldap%' OR config_name LIKE 'account_%' OR config_name LIKE '%encryption%'",__LINE__,__FILE__); 
     865                                $this->db->query("SELECT config_name,config_value,config_app FROM phpgw_config "  
     866                                        . "WHERE config_app = 'phpgwapi' AND (config_name LIKE 'ldap%' OR config_name LIKE 'account_%' OR config_name LIKE '%encryption%')",__LINE__,__FILE__);  
    867867                                while($this->db->next_record()) 
    868868                                { 
  • branches/2.2/phpgwapi/inc/functions.inc.php

    r1463 r3018  
    2929 
    3030        error_reporting(error_reporting() & ~E_NOTICE); 
    31  
    32         if (!function_exists('version_compare'))//version_compare() is only available in PHP4.1+ 
    33         { 
    34                 echo 'eGroupWare requires PHP 4.1 or greater.<br>'; 
    35                 echo 'Please contact your System Administrator'; 
    36                 exit; 
    37         } 
    38  
     31         
    3932        include(PHPGW_API_INC.'/common_functions.inc.php'); 
    4033         
     
    378371                reset($GLOBALS['phpgw_info']['flags']); 
    379372 
     373 
     374                if(!include(PHPGW_SERVER_ROOT . '/phpgwapi/themes/default.theme'))   
     375                {   
     376                        /* Hope we don't get to this point.  Better then the user seeing a */   
     377                        /* complety back screen and not know whats going on                */   
     378                        echo '<body bgcolor="FFFFFF">';   
     379                        $GLOBALS['phpgw']->log->write(array('text'=>'F-Abort, No themes found'));   
     380 
     381                        exit;   
     382                }   
     383 
    380384                /*************************************************************************\ 
    381385                * These lines load up the templates class                                 * 
     
    390394                } 
    391395 
    392                 /*************************************************************************\ 
    393                 * These lines load up the themes                                          * 
    394                 \*************************************************************************/ 
    395                 if (! $GLOBALS['phpgw_info']['user']['preferences']['common']['theme']) 
    396                 { 
    397                         if (@$GLOBALS['phpgw_info']['server']['template_set'] == 'user_choice') 
    398                         { 
    399                                 $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = 'default'; 
    400                         } 
    401                         else 
    402                         { 
    403                                 $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = $GLOBALS['phpgw_info']['server']['template_set']; 
    404                         } 
    405                 } 
    406                 if (@$GLOBALS['phpgw_info']['server']['force_theme'] == 'user_choice') 
    407                 { 
    408                         if (!isset($GLOBALS['phpgw_info']['user']['preferences']['common']['theme'])) 
    409                         { 
    410                                 $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = 'default'; 
    411                         } 
    412                 } 
    413                 else 
    414                 { 
    415                         if (isset($GLOBALS['phpgw_info']['server']['force_theme'])) 
    416                         { 
    417                                 $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] = $GLOBALS['phpgw_info']['server']['force_theme']; 
    418                         } 
    419                 } 
    420  
    421                 if(@file_exists(PHPGW_SERVER_ROOT . '/phpgwapi/themes/' . $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] . '.theme')) 
    422                 { 
    423                         include(PHPGW_SERVER_ROOT . '/phpgwapi/themes/' . $GLOBALS['phpgw_info']['user']['preferences']['common']['theme'] . '.theme'); 
    424                 } 
    425                 elseif(@file_exists(PHPGW_SERVER_ROOT . '/phpgwapi/themes/default.theme')) 
    426                 { 
    427                         include(PHPGW_SERVER_ROOT . '/phpgwapi/themes/default.theme'); 
    428                 } 
    429                 else 
    430                 { 
    431                         /* Hope we don't get to this point.  Better then the user seeing a */ 
    432                         /* complety back screen and not know whats going on                */ 
    433                         echo '<body bgcolor="FFFFFF">'; 
    434                         $GLOBALS['phpgw']->log->write(array('text'=>'F-Abort, No themes found')); 
    435  
    436                         exit; 
    437                 } 
    438                 unset($theme_to_load); 
    439396 
    440397                /*************************************************************************\ 
     
    488445                } 
    489446 
    490                 /*************************************************************************\ 
    491                 * Load the app include files if the exists                                * 
    492                 \*************************************************************************/ 
    493                 /* Then the include file */ 
    494                 if (PHPGW_APP_INC != "" && 
    495                    ! preg_match ("/phpgwapi/i", PHPGW_APP_INC) && 
    496                    file_exists(PHPGW_APP_INC . '/functions.inc.php') && 
    497                    !isset($_GET['menuaction'])) 
    498                 { 
    499                         include(PHPGW_APP_INC . '/functions.inc.php'); 
    500                 } 
    501                 if (!@$GLOBALS['phpgw_info']['flags']['noheader'] && 
    502                         !@$GLOBALS['phpgw_info']['flags']['noappheader'] && 
    503                         file_exists(PHPGW_APP_INC . '/header.inc.php') && !isset($_GET['menuaction'])) 
    504                 { 
    505                         include(PHPGW_APP_INC . '/header.inc.php'); 
    506                 } 
    507         } 
     447        } 
  • branches/2.2/phpgwapi/templates/classic/css/celepar.css

    r1532 r3018  
    352352.dsused 
    353353{ 
    354                 background-image: url(../../../../expressoMail1_2/templates/default/images/dsused_classic.gif) !important; 
     354        background-image: url(../../../../expressoMail1_2/templates/default/images/dsused_classic.gif) !important; 
    355355} 
    356356#fmLocation 
     
    413413        background-color:white; 
    414414} 
     415 
     416.toolbar 
     417{ 
     418       background-image:url(../../../../phpgwapi/templates/default/images/fundo_topo.gif); 
     419       position:absolute; 
     420} 
     421 
     422.logo_expresso 
     423{ 
     424 
     425        background:transparent url(../../../../phpgwapi/templates/default/images/logo_expresso_classic.png) no-repeat scroll right 0px; 
     426        right:0px; 
     427        position:absolute; 
     428        width:191px; 
     429} 
     430 
     431.navbar_but 
     432{ 
     433        background-image: url(../../../../phpgwapi/templates/default/images/back_app_classic.png) !important; 
     434        width: 40px !important; 
     435        height: 40px !important; 
     436        padding: 0 19px 0 13px !important; 
     437        vertical-align: center !important; 
     438        text-align: center !important; 
     439} 
     440 
     441.navbar_butOver 
     442{ 
     443        background-image: url(../../../../phpgwapi/templates/default/images/back_app_classic.png) !important; 
     444        width: 40px !important; 
     445        height: 40px !important; 
     446        vertical-align: center !important; 
     447        text-align: center !important; 
     448        padding: 0 19px 0 13px !important; 
     449 
     450} 
     451 
     452.navbar_butOut 
     453{ 
     454        background-image: url(../../../../phpgwapi/templates/default/images/back_app_classic.png) !important; 
     455        width: 40px !important; 
     456        height: 40px !important; 
     457        vertical-align: center !important; 
     458        text-align: center !important; 
     459        padding: 0 19px 0 13px !important; 
     460 
     461 
     462} 
     463#expressoAdmin12id, 
     464#adminid, 
     465#homeid, 
     466#contactcenterid, 
     467#expressoMail12id, 
     468#newsadminid, 
     469#calendarid, 
     470#jabberitmessengerid, 
     471#logout_id 
     472{ 
     473        width: 32px !important; 
     474        height: 32px !important; 
     475 
     476} 
     477 
     478table.inboxElements th, 
     479.table_elements_tr_header, 
     480.message_header{ 
     481        background-color: #CCCCCC !important; 
     482} 
     483 
     484.table_message_header_box{ 
     485        width: 100% !important; 
     486        color: black !important; 
     487        border-style: solid !important; 
     488        border-width: 0px !important; 
     489        border-collapse: collapse !important; 
     490        border-color: #bbbbbb !important; 
     491        font-family: Arial !important; 
     492        font-size: 13px !important; 
     493        cursor: pointer !important; 
     494} 
     495.font-menu 
     496{ 
     497    text-decoration: none !important; 
     498    text-align: center !important; 
     499    font: bold 13px Lucidatypewriter,monospace !important; 
     500    color: #505050 !important; 
     501} 
     502.font-menu-sel 
     503{ 
     504    text-decoration: none !important; 
     505    text-align: center !important; 
     506    font: bold 11px Lucidatypewriter,monospace !important; 
     507    color:#0000FF !important; 
     508} 
     509 
     510.menu-sel 
     511{ 
     512    text-decoration: none !important; 
     513    text-align: center !important; 
     514    font: bold 11px Lucidatypewriter,monospace !important; 
     515    color:#0000FF !important; 
     516    height: 20px !important; 
     517    background-color: #F7F7F7 !important; 
     518    margin-bottom: 0px !important; 
     519    border-left: 1px solid #000000 !important; 
     520    border-top: 1px solid #000000 !important; 
     521    border-right: 1px solid #000000 !important; 
     522    padding:0px 5px 0px 0px !important; 
     523    -moz-border-radius: 9px 9px 0px 0px !important; 
     524    -moz-user-select: none !important; 
     525    cursor: pointer !important; 
     526} 
     527 
     528.menu 
     529{ 
     530    text-decoration: none !important; 
     531    text-align: center !important; 
     532    color: #505050 !important; 
     533    height: 20px !important; 
     534    background-color:#E5E5E5 !important; 
     535    margin-bottom: 0px !important; 
     536    border-left: 1px solid #c0c0c0 !important; 
     537    border-top: 1px solid #c0c0c0 !important; 
     538    border-right: 1px solid #c0c0c0 !important; 
     539    border-bottom: 1px solid #000000 !important; 
     540    padding:0px 5px 0px 0px !important; 
     541    -moz-border-radius: 9px 9px 0px 0px !important; 
     542    -moz-user-select: none !important; 
     543    cursor: pointer !important; 
     544} 
     545 
     546.last_menu 
     547{ 
     548        border-bottom: 1px solid #000000 !important; 
     549        -moz-border-radius: 0px 0px 0px 0px !important; 
     550} 
     551.conteudo { 
     552    font-family: Verdana, Arial, Helvetica, sans-serif !important; 
     553    font-size: 10px !important; 
     554    font-weight: normal !important; 
     555    color: #000033 !important; 
     556        padding: 1px !important; 
     557    border-color: gray gray gray gray !important; 
     558 
     559        border-right: 1px solid #000000 !important; 
     560        border-left: 1px solid #000000 !important; 
     561        border-bottom: 1px solid #000000 !important; 
     562        width:99.5% !important; 
     563    -moz-border-radius: 0px 0px 6px 6px !important; 
     564} 
     565 
     566.table_message{ 
     567        background-color: #CCCCCC !important; 
     568                background-image: none !important; 
     569        padding: 1px !important; 
     570        cursor: default !important; 
     571        border-width: 1px 1px 1px 1px !important; 
     572        border-spacing: 0px 1px !important; 
     573        border-style: outset outset outset outset !important; 
     574        border-color: gray gray gray gray !important; 
     575        border-collapse: separate !important; 
     576        -moz-border-radius: 3px 3px 3px 3px !important; 
     577} 
     578 
     579.image-menu { 
     580        padding: 3px 0px 3px 5px !important; 
     581        border-top: 1px solid #000000 !important; 
     582        border-right: 1px solid #000000 !important; 
     583        border-left: 1px solid #000000 !important; 
     584        border-bottom: 1px solid #000000 !important; 
     585        -moz-border-radius: 9px 9px 9px 9px !important; 
     586} 
     587 
     588.image-menu, 
     589.menu-degrade 
     590{ 
     591        background-image: none !important; 
     592} 
     593 
     594.content-menu-td { 
     595        border: 1px solid #f7f7f7 !important; 
     596} 
     597 
     598.content-menu { 
     599        background: none !important; 
     600        padding: 4px !important; 
     601        width:162px !important; 
     602        border-top: 1px solid #000000 !important; 
     603        border-right: 1px solid #000000 !important; 
     604        border-left: 1px solid #000000 !important; 
     605        border-bottom: 1px solid #000000 !important; 
     606        -moz-border-radius: 9px 9px 9px 9px !important; 
     607        position: relative !important; 
     608        overflow: auto !important; 
     609} 
     610 
     611.message_options_trash, 
     612.message_options_import, 
     613.message_options_inactive, 
     614.message_options_export, 
     615.message_options_move, 
     616.message_options_print, 
     617.message_options_active, 
     618.message_options, 
     619.message_options_over 
     620{ 
     621        color:blue !important; 
     622        font-weight: normal !important; 
     623        background-image: none !important; 
     624        padding:0 7 0 0 !important; 
     625} 
     626.l{ 
     627        background-image: none !important; 
     628        color: #666666 !important; 
     629 
     630} 
     631.sl 
     632{ 
     633        background-image: none !important; 
     634        color: blue !important; 
     635} 
     636.linha0,  
     637.tr_msg_read2, 
     638.tr_msg_read { 
     639-moz-user-select:none !important; 
     640background-color:#FFFFFF !important; 
     641border-bottom:1px solid #CFCFCF !important; 
     642color:black !important; 
     643} 
  • branches/2.2/phpgwapi/templates/classic/head.tpl

    r1151 r3018  
    1313                <link rel="icon" href="{img_icon}" type="image/x-ico" /> 
    1414                <link rel="shortcut icon" href="{img_shortcut}" /> 
    15                 <link href="{theme_css}" title="eGroupWareStyle" type="text/css" rel="StyleSheet"/> 
    1615                <META http-equiv="Default-Style" content="eGroupWareStyle"> 
    1716                {slider_effects} 
  • branches/2.2/phpgwapi/templates/default/css/cataratas.css

    r1719 r3018  
    1 ul 
    2 { 
    3         list-style-image: url("../images/orange-ball.png"); 
    4 } 
    5  
    6 .grid_email_class 
    7 { 
    8         border-bottom:1px solid #cfcfcf; 
    9 } 
    10  
    11 body  
    12 { 
    13         margin: 0px !important; 
    14         background-color:#E9E9E9 !important; 
    15         font-size: 11px !important; 
    16         font-family: Verdana, Arial, Helvetica, sans-serif !important; 
    17         padding:0px !important; 
    18 } 
    19  
    20 img 
    21 { 
    22         border-width:0px !important; 
    23         border-style:none !important; 
    24         /*filter:progid:DXImageTransform.Microsoft.AlphaImageLoader; 
    25 */ 
    26 } 
    27  
    28 a:link,a:visited 
    29 { 
    30         cursor:pointer !important; 
    31         color: #000066 !important; 
    32         text-decoration: none !important; 
    33 } 
    34  
    35 /* 
    36 a:visited  
    37 { 
    38         color: #006699;  
    39         text-decoration: none; 
    40 } 
    41 */ 
    42 a:hover,a:active 
    43 { 
    44         cursor:pointer !important; 
    45         color: #ff9933 !important; 
    46         text-decoration: underline !important; 
    47 } 
    48 /* 
    49 a:active  
    50 { 
    51         color: #006699;  
    52         text-decoration: underline; 
    53 } 
    54 */ 
    55 input,button 
    56 { 
    57         font-size: 11px !important;  
    58         color: #006699 !important;  
    59         font-family: Arial, Helvetica, sans-serif !important; 
    60         border: 1px #bbbbbb solid !important; 
    61 } 
    62  
    63 input[type=submit],input[type=button],button 
    64 { 
    65         margin:1px !important; 
    66         padding:1px !important; 
    67         cursor: pointer !important;  
    68         cursor: hand !important; 
     1body 
     2{ 
     3        background-color: #e9e9e9; 
     4} 
     5 
     6a:link, 
     7a:visited 
     8{ 
     9        color: #000066; 
     10} 
     11 
     12a:hover, 
     13a:active 
     14{ 
     15        color: #ff9933; 
     16} 
     17 
     18a.divSideboxEntry, 
     19.divSideboxEntry 
     20{ 
     21        background-color: #eee; 
     22} 
     23 
     24a.appTitles, 
     25.appTitles 
     26{ 
     27        padding: 2px 2px; 
     28} 
     29 
     30a.textSidebox 
     31{ 
     32        border-top-color: #aaa; 
     33} 
     34 
     35input, 
     36button 
     37{ 
     38        border-color: #bbb; 
     39        color: #069; 
    6940} 
    7041 
    7142input[type=image] 
    7243{ 
    73         cursor: pointer !important;  
    74         cursor: hand !important; 
    75         border: 0px #bbbbbb none !important; 
    76 } 
    77 select  
    78 { 
    79         font-size: 11px !important;  
    80         color: #000066 !important;  
    81         font-family: Arial, Helvetica, sans-serif !important; 
    82         border: 1px #bbbbbb solid !important; 
    83         z-index: -1 !important; 
    84 } 
    85  
    86 td 
    87 { 
    88         font-size: 11px !important; 
    89         /*text-align:left;*/ 
    90         /*      padding-top:1px; 
    91         padding-bottom:1px;*/ 
    92 } 
    93  
    94 .divLoginbox  
    95 { 
    96         position:relative; 
    97         width: 300px;  
    98         border-right: #9c9c9c 1px solid;  
    99         border-top: #9c9c9c 1px solid;  
    100         border-left: #9c9c9c 1px solid;  
    101         border-bottom: #9c9c9c 1px solid 
    102 } 
    103  
    104 .divLoginboxHeader  
    105 { 
    106         text-align:center; 
    107         background-color:#dddddd; 
    108         padding-top:2px; 
    109         font-size:10px; 
    110         color:#666666; 
    111 } 
    112 .divSidebox  
    113 { 
    114         position:relative; 
    115         width: 147px;  
    116         border-right: #9c9c9c 1px solid;  
    117         border-top: #9c9c9c 1px solid;  
    118         border-left: #9c9c9c 1px solid;  
    119         border-bottom: #9c9c9c 1px solid 
    120 } 
    121  
    122 .tblHeadApp { 
    123  
    124         border-right: #9c9c9c 1px solid;         
    125         border-top: #9c9c9c 1px solid;  
    126         border-left: #9c9c9c 1px solid;  
    127         border-bottom: #9c9c9c 1px solid 
    128 } 
    129  
    130 .divSideboxHeader  
    131 { 
    132         text-align:center; 
    133         background-color:#000066; 
    134         padding-top:2px; 
    135         height: 15px; 
    136         color: #FFFFFF; 
    137  
    138 } 
    139  
    140 a.divSideboxEntry, .divSideboxEntry 
    141 { 
    142         text-align:left; 
    143         height:16px; 
    144         background-color:#eeeeee; 
    145 } 
    146  
    147 a.appTitles,.appTitles 
    148 { 
    149         font-size: 10px;  
    150         height:18px; 
    151         padding-top:2px; 
    152         padding-bottom:2px; 
    153  
    154 } 
    155  
    156 a.textSidebox 
    157 { 
    158         font-size: 10px;  
    159         border-top: #aaaaaa 0px none; 
    160 } 
    161  
    162 .textSidebox 
    163 { 
    164         font-size: 10px;  
    165         height:18px; 
    166         padding-top:2px; 
    167         padding-bottom:2px; 
    168         border-top: #aaaaaa 1px solid; 
    169  
    170 } 
    171  
    172 .sideboxSpace 
    173 { 
    174         height:9px; 
    175 } 
    176  
    177 .greyLine 
    178 { 
    179         margin:1px; 
    180         border-top-color:#7e7e7e; 
    181         border-top-width:1px; 
    182         border-top-style:solid; 
    183         height:1px; 
    184 } 
    185  
    186 .prefSection 
    187 { 
    188         font-weight:bold; 
    189         font-size:16px; 
    190         line-height:40px; 
    191 } 
    192  
    193 #extraIcons 
    194 { 
    195         background-color:#eeeeee; 
    196         border-width:1px; 
    197         border-color:#7e7e7e; 
    198         border-style:solid; 
    199 } 
    200  
    201 .extraIconsRow 
    202 { 
    203         border-top-color:#dddddd; 
    204         border-top-width:1px; 
    205         border-top-style:solid; 
    206         padding:2px; 
    207 } 
    208  
    209 #divMain 
    210 { 
    211         background-color:white; 
    212         margin-top: 0px; 
    213         padding:9px; 
    214         border-color:#7e7e7e; 
    215         border-width:1px; 
    216         border-style:solid; 
    217 } 
    218  
    219 #divLogo 
    220 { 
    221         position:absolute; 
    222         left:20px; 
    223         top:5px; 
    224         z-index:51; 
    225 } 
    226  
    227 #divAppIconBar 
    228 { 
    229         background-color:white; 
    230         border-top-color:#9c9c9c; 
    231         border-top-width:1px; 
    232         border-top-style:solid; 
    233         background-image: url(../images/background-icon-bar.png);  
    234         background-repeat: repeat-x 
    235 } 
    236  
    237 #divAppTextBar 
    238 { 
    239         background-color:white; 
    240 } 
    241  
    242 #user_info 
    243 { 
    244         color: white; 
    245 } 
    246 #links_bar 
    247 { 
    248                 color: white; 
    249 } 
    250  
    251 #divStatusBar 
    252 { 
    253         height:24px; 
    254         padding-left:10px; 
    255         padding-top:0px; 
    256 } 
    257  
    258 /*#divSubContainer 
    259 { 
    260 } 
    261 */ 
    262 #tdSidebox 
    263 { 
    264         width:170px; 
    265         background-color:white; 
    266         overflow:visible; 
    267 } 
    268  
    269  
    270 #tdAppbox 
    271 { 
    272         background-color:white; 
    273         width: 100%; 
    274 } 
    275 #divSideboxContainer 
    276 { 
    277         position:relative; 
    278         width:150px; 
    279         top:0px; 
    280         left:0px; 
    281         background-color:white; 
    282         border-width:1px; 
    283         border-style:solid; 
    284         z-index:40; 
     44        border-color: #bbb; 
     45} 
     46 
     47select 
     48{ 
     49        border-color: #bbb; 
     50        color: #006; 
     51} 
     52 
     53#divAppbox 
     54{ 
     55        background: #e6f3d9; 
     56        border-color: #9c9c9c; 
    28557} 
    28658 
    28759#divAppboxHeader 
    28860{ 
    289         margin-top:2px; 
    290         margin-left:2px; 
    291         margin-right:2px; 
    292         font-family: Verdana, Arial, Helvetica, sans-serif; 
     61        background: #e6f3d9; 
     62        border-color: #9c9c9c; 
     63        color: #006; 
    29364        font-size: 14px; 
    29465        font-weight: bold; 
    295         color: #000066; 
     66} 
     67 
     68#divAppIconBar 
     69{ 
     70        background: #fff url( ../images/background-icon-bar.png ) repeat-x; 
     71        border-top-color: #9c9c9c; 
     72} 
     73 
     74#divAppTextBar 
     75{ 
     76        background-color: #fff; 
     77} 
     78 
     79#divGenTime 
     80{ 
     81        color: #f00; 
     82} 
     83 
     84#divMain 
     85{ 
     86        background: #fff; 
     87        border-color: #7e7e7e; 
     88} 
     89 
     90#divPoweredBy 
     91{ 
     92        background: #fff; 
     93        color: #999; 
     94} 
     95 
     96#divSideboxContainer 
     97{ 
     98        background: #fff; 
     99} 
     100 
     101#extraIcons 
     102{ 
     103        background: #eee; 
     104        border-color: #7e7e7e; 
     105} 
     106 
     107#links_bar, 
     108#user_info 
     109{ 
     110        color: #fff; 
     111} 
     112 
     113#tdAppbox 
     114{ 
     115        background-color: #fff; 
     116} 
     117 
     118#tdSidebox 
     119{ 
     120        background: #fff; 
     121} 
     122 
     123.conteudo 
     124{ 
     125        border-color: #4A79B1; 
     126        color: #003; 
     127} 
     128 
     129.divSideboxHeader 
     130{ 
     131        background-color: #006; 
     132        color: #fff; 
     133} 
     134 
     135.extraIconsRow 
     136{ 
     137        border-top-color: #ddd; 
     138} 
     139 
     140.greyLine 
     141{ 
     142        border-top-color: #7e7e7e; 
     143} 
     144 
     145.grid_email_class 
     146{ 
     147        border-bottom-color: #cfcfcf; 
     148} 
     149 
     150.image-menu 
     151{ 
     152        background: #a0b2cc url( ../../../../phpgwapi/templates/default/images/folder_bg_fozi.jpg ) no-repeat scroll center bottom; 
     153} 
     154 
     155.last_menu 
     156{ 
     157        border-bottom-color: #4a79b1; 
     158} 
     159 
     160.logo_expresso 
     161{ 
     162        background: url( ../../../../phpgwapi/templates/default/images/logo_expresso_fozi.gif ) no-repeat; 
     163        height: 35px; 
     164        width: 264px; 
     165} 
     166 
     167.menu 
     168{ 
     169        background: #c8d7ea; 
     170        border-color: #f4f7fc; 
     171        border-bottom-color: #4a79b1; 
     172} 
     173 
     174.menu-sel 
     175{ 
     176        background-color: #f7f7f7; 
     177        border-color: #4a79b1; 
     178        color: #00f; 
     179} 
     180 
     181.menu-degrade 
     182{ 
     183        background-image: url( ../../../../phpgwapi/templates/default/images/degrade.png ); 
     184} 
     185 
     186.navbar_but 
     187{ 
     188        background-image: url( ../../../../phpgwapi/templates/default/images/back_app_fozi.png ); 
     189} 
     190 
     191.navbar_butOver 
     192{ 
     193        background-image: url( ../../../../phpgwapi/templates/default/images/back_app_over_fozi.png ); 
     194} 
     195 
     196.navbar_butOut 
     197{ 
     198        background-image: url( ../../../../phpgwapi/templates/default/images/back_app_out_fozi.png ); 
     199} 
     200 
     201.tblHeadApp 
     202{ 
     203        border-color: #9c9c9c; 
     204} 
     205 
     206.textSidebox 
     207{ 
     208        border-top-color: #aaa; 
     209} 
     210 
     211.toolbar 
     212{ 
     213        background-image: url( ../../../../phpgwapi/templates/default/images/fundo_topo_fozi.jpg ); 
     214} 
     215 
     216.linha0, 
     217.linha1, 
     218.tr_msg_read, 
     219.tr_msg_read2 
     220{ 
     221        color: #3f3f3f; 
     222        background: #fff; 
     223} 
     224 
     225.linha1, 
     226.tr_msg_read2 
     227{ 
     228        background: #e6f3d9; 
     229} 
     230 
     231table.inboxElements th, 
     232.table_elements_tr_header, 
     233.info_tr_header, 
     234.message_header 
     235{ 
     236        background-color: #98c17f; 
     237} 
     238 
     239.message_options_active { 
     240        color: #d00; 
     241        font-weight: bold; 
     242} 
     243 
     244.message_options_inactive { 
     245        color: #999; 
     246} 
     247 
     248.message_options { 
     249        color: blue; 
     250        font-weight: bold; 
     251} 
     252 
     253.message_options_over { 
     254        color: #d00; 
     255        font-weight: bold 
     256} 
     257 
     258.table_message{ 
     259        background: #98c17f; 
     260} 
     261 
     262 
     263 
     264#fmStatusBar 
     265{ 
     266        margin-left: 4px; 
     267        margin-bottom: 3px; 
     268        font-size: 10px; 
     269} 
     270 
     271.divLoginbox 
     272{ 
     273        position: relative; 
     274        width: 300px; 
     275        border: 1px solid #9c9c9c; 
     276} 
     277 
     278.divLoginboxHeader 
     279{ 
    296280        text-align: center; 
    297         padding: 0px; 
    298         background-color: #e6f3d9; 
    299         height:24px; 
    300         line-height:24px; 
    301         border-top-color:#9c9c9c; 
    302         border-top-width:1px; 
    303         border-top-style:solid; 
    304         border-left-color:#9c9c9c; 
    305         border-left-width:1px; 
    306         border-left-style:solid; 
    307         border-right-color:#9c9c9c; 
    308         border-right-width:1px; 
    309         border-right-style:solid; 
    310 } 
    311  
    312 #divAppbox 
    313 { 
    314         background-color: #e6f3d9; 
    315         padding-right:1px; 
    316         padding-top:1px; 
    317         padding-bottom:1px; 
    318         padding-left:15px; 
    319         border-bottom-color:#9c9c9c; 
    320         border-bottom-width:1px; 
    321         border-bottom-style:solid; 
    322         border-left-color:#9c9c9c; 
    323         border-left-width:1px; 
    324         border-left-style:solid; 
    325         border-right-color:#9c9c9c; 
    326         border-right-width:1px; 
    327         border-right-style:solid; 
    328         margin-top:0px; 
    329         margin-bottom:0px; 
    330         margin-left:2px; 
    331         margin-right:2px; 
    332  
    333 } 
    334  
    335 #fmStatusBar 
    336 { 
    337         margin-left:4px; 
    338         margin-bottom:3px; 
    339         font-size: 10px;  
    340 /*      font-family: Verdana, Arial, Helvetica, sans-serif;*/ 
    341          
    342  
    343 } 
    344  
    345  
    346 #user_info 
    347 { 
    348 padding-left:17px; 
    349  
    350 } 
    351  
    352 #admin_info 
    353 { 
    354         position:relative; 
    355         text-align:center; 
    356         margin-right:10px; 
    357 } 
    358  
    359 #divGenTime 
    360 { 
    361         bottom:14px; 
    362         font-size: 9px; 
    363         color: #ff0000; 
    364         text-align:center; 
    365         width:99%; 
    366 } 
    367  
    368 #divPoweredBy  
    369 { 
    370         font-family: Verdana, Arial, Helvetica, sans-serif; 
     281        background-color: #ddd; 
     282        padding-top: 2px; 
    371283        font-size: 10px; 
    372         color: #999999; 
    373         text-decoration: none; 
    374         padding: 7px; 
    375         text-align: center; 
    376         background-color:white; 
    377 } 
    378  
    379 .navbar_but 
    380 { 
    381         background-image: url(../../../../phpgwapi/templates/default/images/back_app_fozi.png) !important;  
    382         width: 40px; 
    383         height: 40px; 
    384         vertical-align: center; 
    385         text-align: center; 
    386         padding-right: 6px; 
    387         cursor:pointer; 
    388         cursor:hand; 
    389         background-repeat:no-repeat; 
    390 } 
    391  
    392 .navbar_butOver 
    393 { 
    394         background-image: url(../../../../phpgwapi/templates/default/images/back_app_over_fozi.png) !important; 
    395         width: 40px; 
    396         height: 40px; 
    397         vertical-align: center !important; 
    398         text-align: center !important; 
    399         padding-right:6px; 
    400         cursor:pointer; 
    401         cursor:hand; 
    402         background-repeat:no-repeat; 
    403 } 
    404  
    405 .navbar_butOut 
    406 { 
    407         background-image: url(../../../../phpgwapi/templates/default/images/back_app_out_fozi.png) !important; 
    408         width: 40px; 
    409         height: 40px; 
    410         vertical-align: center !important; 
    411         text-align: center !important; 
    412         padding-right:6px; 
    413         cursor:pointer; 
    414         cursor:hand; 
    415         background-repeat:no-repeat; 
    416 } 
    417  
    418 .toolbar 
    419 { 
    420         background-image:url(../../../../phpgwapi/templates/default/images/fundo_topo_fozi.jpg); 
    421         position:absolute; 
    422 } 
    423  
    424 .logo_expresso 
    425 { 
    426         background:url(../../../../phpgwapi/templates/default/images/logo_expresso_fozi.gif) no-repeat; 
    427         width: 264px; 
    428         height: 35px; 
    429 } 
    430  
    431 .content-menu { 
    432         padding: 0px 0px 0px 0px !important; 
    433         background: #fff !important; 
    434 } 
    435  
    436 .menu-degrade { 
    437           background-image: url(../../../../phpgwapi/templates/default/images/degrade.png) !important; 
    438           background-repeat: repeat-x; 
    439 } 
    440  
    441 .image-menu { 
    442         padding: 0px 0px 0px 0px !important; 
    443         background: #a0b2cc url(../../../../phpgwapi/templates/default/images/folder_bg_fozi.jpg) no-repeat scroll center bottom !important; 
    444 } 
    445  
    446 .message_header 
    447 { 
    448         background-color: #98c17f !important; 
    449 } 
    450  
    451 .menu 
    452 { 
    453         background-color:#c2d8b1 !important; 
    454         border: 1px solid #f4f7fc !important; 
    455         border-bottom: 1px solid #4a79b1 !important; 
    456 } 
    457 .message_options_active { 
    458         color: #D00 !important; 
    459         font-weight: bold !important; 
    460 } 
    461  
    462 .message_options_inactive { 
    463         color: #999 !important; 
    464 } 
    465  
    466 .message_options { 
    467         color: blue !important; 
    468         font-weight: bold !important; 
    469 } 
    470  
    471 .message_options_over { 
    472         color: #D00 !important; 
    473         font-weight: bold !important 
    474 } 
    475  
    476 .table_message{ 
    477         background:#98C17F !important; 
    478 } 
    479  
    480  
    481 .tr_msg_read { 
    482         color: #3f3f3f; 
    483         background-color: #ffffff; 
    484         -moz-user-select: none; 
    485 } 
    486  
    487 .tr_msg_read2 { 
    488         color: #3f3f3f; 
    489         background-color: #e6f3d9; 
    490         -moz-user-select: none; 
    491 } 
     284        color: #666; 
     285} 
     286 
     287.divSidebox 
     288{ 
     289        position: relative; 
     290        width: 147px; 
     291        border: 1px solid #9c9c9c; 
     292} 
     293 
     294.content-menu 
     295{ 
     296        padding: 0px 0px 0px 0px; 
     297        background: #fff; 
     298} 
  • branches/2.2/phpgwapi/templates/default/css/celepar.css

    r1704 r3018  
    438438} 
    439439 
     440table.inboxElements th, 
     441.table_elements_tr_header, 
     442.info_tr_header, 
    440443.message_header{ 
    441444        background-color: #CCCCCC !important; 
     
    475478    color:#0000FF !important; 
    476479    height: 20px !important; 
    477     width:220px !important; 
    478480    background-color: #F7F7F7 !important; 
    479481    margin-bottom: 0px !important; 
     
    493495    color: #505050 !important; 
    494496    height: 20px !important; 
    495     width:220px !important; 
    496497    background-color:#E5E5E5 !important; 
    497498    margin-bottom: 0px !important; 
     
    601602        background-image: none !important; 
    602603} 
     604 
     605.linha0, 
    603606.tr_msg_read2, 
    604607.tr_msg_read { 
  • branches/2.2/phpgwapi/templates/default/css/comics.css

    r1195 r3018  
    486486} 
    487487 
     488table.inboxElements th, 
     489.table_elements_tr_header, 
     490.info_tr_header, 
    488491.message_header 
    489492{ 
     
    505508{ 
    506509        -moz-border-radius-topleft:5px !important; 
    507         -moz-border-radius-topright:5px !important; 
    508         background-color: white !important; 
    509         border: 2px solid black !important; 
    510         border-bottom: 0px !important; 
     510        -moz-border-radius-topright:5px !important; 
     511        background-color: white !important; 
     512        border: 2px solid black !important; 
     513        border-bottom: 0px !important; 
    511514        color black !important; 
    512515} 
  • branches/2.2/phpgwapi/templates/default/css/escritorio.css

    r1704 r3018  
    430430} 
    431431 
     432table.inboxElements th, 
     433.table_elements_tr_header, 
     434.info_tr_header, 
    432435.message_header 
    433436{ 
     
    484487        background:transparent url(../../../../phpgwapi/templates/default/images/blackwhite.jpg) repeat-x; 
    485488} 
     489 
     490 
     491.conteudo {  
     492        font-family: Verdana, Arial, Helvetica, sans-serif;  
     493        font-size: 10px;  
     494        font-weight: normal;  
     495        color: #000033;  
     496        padding: 2px;  
     497    border-left: 1px solid; 
     498    border-right: 1px solid; 
     499    border-bottom: 1px solid; 
     500    border-color: #4A79B1; 
     501        width:99.5%;  
     502        overflow: none;  
     503        -moz-border-radius: 0px 0px 6px 6px;  
     504}  
     505 
     506.whiteSpace{  
     507        width: 2px;  
     508} 
     509 
     510.menu 
     511{ 
     512        text-decoration: none; 
     513        text-align: center; 
     514        height: 20px; 
     515        background-color:#c8d7ea; 
     516        margin-bottom: 0px; 
     517        border: 1px solid #f4f7fc; 
     518        border-bottom: 1px solid #4a79b1; 
     519        padding:0px 5px 0px 0px; 
     520        -moz-border-radius: 9px 9px 0px 0px; 
     521        -moz-user-select: none; 
     522        cursor: pointer; 
     523} 
     524 
     525.last_menu 
     526{ 
     527        border-bottom: 1px solid #4a79b1;  
     528        -moz-border-radius: 0px 0px 0px 0px;  
     529} 
     530 
     531.menu-sel 
     532{ 
     533        text-decoration: none; 
     534        text-align: center; 
     535        font: bold 13px Lucidatypewriter,monospace; 
     536        color:#0000FF; 
     537        height: 20px; 
     538        background-color:#F7F7F7; 
     539        margin-bottom: 0px; 
     540        border: 1px solid #4a79b1; 
     541        border-bottom: 0px; 
     542        padding:0px 5px 0px 0px; 
     543        -moz-border-radius: 9px 9px 0px 0px; 
     544        -moz-user-select: none; 
     545        cursor: pointer; 
     546} 
  • branches/2.2/phpgwapi/templates/default/css/metropole.css

    r1514 r3018  
    8080} 
    8181 
    82 /*.tr_msg_read { 
    83 background-color: #B0B0B0 !important; 
    84 color:black !important; 
    85 } 
    86  
     82.linha0, 
     83.linha1, 
     84.tr_msg_read, 
    8785.tr_msg_read2 { 
    88 background-color: #808080 !important; 
    89 color: #E0E0E0 !important; 
    90 }*/ 
    91  
    92  
    93  
    94 .tr_msg_read { 
    95 background-color: white !important; 
    96 } 
    97  
     86        color: #3f3f3f; 
     87        background-color: #ffffff; 
     88        -moz-user-select: none; 
     89} 
     90 
     91.linha1, 
    9892.tr_msg_read2 { 
    99 background-color: #E0E0E0 !important; 
     93        background-color: #E0E0E0 !important; 
    10094} 
    10195 
     
    289283} 
    290284*/ 
     285 
     286.dsused 
     287{ 
     288        background-image: url(../images/dsused_black.gif); 
     289} 
     290 
    291291#tdSidebox 
    292292{ 
     
    486486        background-repeat:no-repeat; 
    487487} 
     488.toolButton { 
     489        color:#FFF !important; 
     490} 
    488491 
    489492.toolbar 
     
    514517} 
    515518 
     519table.inboxElements th, 
     520.table_elements_tr_header, 
     521.info_tr_header, 
    516522.message_header 
    517523{ 
     
    565571        border-bottom: 1px solid gray !important; 
    566572} 
     573 
     574.conteudo {  
     575        font-family: Verdana, Arial, Helvetica, sans-serif;  
     576        font-size: 10px;  
     577        font-weight: normal;  
     578        color: #000033;  
     579        padding: 2px;  
     580    border-left: 1px solid; 
     581    border-right: 1px solid; 
     582    border-bottom: 1px solid; 
     583    border-color: #4A79B1; 
     584        width:99.5%;  
     585        overflow: none;  
     586        -moz-border-radius: 0px 0px 6px 6px;  
     587}  
     588 
     589.whiteSpace{  
     590        width: 2px;  
     591}  
     592.menu 
     593{ 
     594        text-decoration: none; 
     595        text-align: center; 
     596        height: 20px; 
     597        background-color:#c8d7ea; 
     598        margin-bottom: 0px; 
     599        border: 1px solid #f4f7fc; 
     600        border-bottom: 1px solid #4a79b1; 
     601        padding:0px 5px 0px 0px; 
     602        -moz-border-radius: 9px 9px 0px 0px; 
     603        -moz-user-select: none; 
     604        cursor: pointer; 
     605} 
     606 
     607.last_menu  
     608{  
     609        border-bottom: 1px solid #4a79b1;  
     610        -moz-border-radius: 0px 0px 0px 0px;  
     611}  
     612 
     613.menu-sel 
     614{ 
     615        text-decoration: none; 
     616        text-align: center; 
     617        font: bold 13px Lucidatypewriter,monospace; 
     618        color:#FFFFFF; 
     619        height: 20px; 
     620        background-color:#7F7F7F; 
     621        margin-bottom: 0px; 
     622        border: 1px solid #FFF; 
     623        border-bottom: 0px; 
     624        padding:0px 5px 0px 0px; 
     625        -moz-border-radius: 9px 9px 0px 0px; 
     626        -moz-user-select: none; 
     627        cursor: pointer; 
     628} 
  • branches/2.2/phpgwapi/templates/default/css/rochas.css

    r1719 r3018  
    1 ul 
    2 { 
    3         list-style-image: url("../images/orange-ball.png"); 
    4 } 
    5  
    6 .grid_email_class 
    7 { 
    8         border-bottom:1px solid #cfcfcf; 
    9 } 
    10 .selected_shortcut_msg { 
    11         color:  black   !important; 
    12         background-color: BurlyWood !important; 
    13 } 
    14  
    15 body  
    16 { 
    17         margin: 0px !important; 
    18         background-color:#E9E9E9 !important; 
    19         font-size: 11px !important; 
    20         font-family: Verdana, Arial, Helvetica, sans-serif !important; 
    21         padding:0px !important; 
    22 } 
    23  
    24 img 
    25 { 
    26         border-width:0px !important; 
    27         border-style:none !important; 
    28         /*filter:progid:DXImageTransform.Microsoft.AlphaImageLoader; 
    29 */ 
    30 } 
    31  
    32 a:link,a:visited 
    33 { 
    34         cursor:pointer !important; 
    35         color: #000066 !important; 
    36         text-decoration: none !important; 
    37 } 
    38  
    39 /* 
    40 a:visited  
    41 { 
    42         color: #006699;  
    43         text-decoration: none; 
    44 } 
    45 */ 
    46 a:hover,a:active 
    47 { 
    48         cursor:pointer !important; 
    49         color: #ff9933 !important; 
    50         text-decoration: underline !important; 
    51 } 
    52 /* 
    53 a:active  
    54 { 
    55         color: #006699;  
    56         text-decoration: underline; 
    57 } 
    58 */ 
    59 input,button 
    60 { 
    61         font-size: 11px !important;  
    62         color: #006699 !important; 
    63         font-family: Arial, Helvetica, sans-serif !important; 
    64         border: 1px #bbbbbb solid !important; 
    65 } 
    66 input.em_button_like_span { 
    67         color:#886633 !important; 
    68 } 
    69 input[type=submit],input[type=button],button 
    70 { 
    71         margin:1px !important; 
    72         padding:1px !important; 
    73         cursor: pointer !important;  
    74         cursor: hand !important; 
     1body 
     2{ 
     3        background-color: #e9e9e9; 
     4} 
     5 
     6a:link, 
     7a:visited 
     8{ 
     9        color: #000066; 
     10} 
     11 
     12a:hover, 
     13a:active 
     14{ 
     15        color: #ff9933; 
     16} 
     17 
     18a.divSideboxEntry, 
     19.divSideboxEntry 
     20{ 
     21        background-color: #eee; 
     22} 
     23 
     24a.textSidebox 
     25{ 
     26        border-top-color: #aaa; 
     27} 
     28 
     29input, 
     30button 
     31{ 
     32        border-color: #bbb; 
     33        color: #069; 
    7534} 
    7635 
    7736input[type=image] 
    7837{ 
    79         cursor: pointer !important;  
    80         cursor: hand !important; 
    81         border: 0px #bbbbbb none !important; 
    82 } 
    83 select  
    84 { 
    85         font-size: 11px !important;  
    86         color: #000066 !important;  
    87         font-family: Arial, Helvetica, sans-serif !important; 
    88         border: 1px #bbbbbb solid !important; 
    89         z-index: -1 !important; 
    90 } 
    91  
    92 td 
    93 { 
    94         font-size: 11px !important; 
    95         /*text-align:left;*/ 
    96         /*      padding-top:1px; 
    97         padding-bottom:1px;*/ 
    98 } 
    99  
    100 .divLoginbox  
    101 { 
    102         position:relative; 
    103         width: 300px;  
    104         border-right: #9c9c9c 1px solid;  
    105         border-top: #9c9c9c 1px solid;  
    106         border-left: #9c9c9c 1px solid;  
    107         border-bottom: #9c9c9c 1px solid 
    108 } 
    109  
    110 .divLoginboxHeader  
    111 { 
    112         text-align:center; 
    113         background-color:#dddddd; 
    114         padding-top:2px; 
    115         font-size:10px; 
    116         color:#666666; 
    117 } 
    118 .divSidebox  
    119 { 
    120         position:relative; 
    121         width: 147px;  
    122         border-right: #9c9c9c 1px solid;  
    123         border-top: #9c9c9c 1px solid;  
    124         border-left: #9c9c9c 1px solid;  
    125         border-bottom: #9c9c9c 1px solid 
    126 } 
    127  
    128 .tblHeadApp { 
    129  
    130         border-right: #9c9c9c 1px solid;         
    131         border-top: #9c9c9c 1px solid;  
    132         border-left: #9c9c9c 1px solid;  
    133         border-bottom: #9c9c9c 1px solid 
    134 } 
    135  
    136 .divSideboxHeader  
    137 { 
    138         text-align:center; 
    139         background-color:#000066; 
    140         padding-top:2px; 
    141         height: 15px; 
    142         color: #FFFFFF; 
    143  
    144 } 
    145  
    146 a.divSideboxEntry, .divSideboxEntry 
    147 { 
    148         text-align:left; 
    149         height:16px; 
    150         background-color:#eeeeee; 
    151 } 
    152  
    153 a.appTitles,.appTitles 
    154 { 
    155         font-size: 10px;  
    156         height:18px; 
    157         padding-top:2px; 
    158         padding-bottom:2px; 
    159  
    160 } 
    161  
    162 a.textSidebox 
    163 { 
    164         font-size: 10px;  
    165         border-top: #aaaaaa 0px none; 
    166 } 
    167  
    168 .textSidebox 
    169 { 
    170         font-size: 10px;  
    171         height:18px; 
    172         padding-top:2px; 
    173         padding-bottom:2px; 
    174         border-top: #aaaaaa 1px solid; 
    175  
    176 } 
    177  
    178 .sideboxSpace 
    179 { 
    180         height:9px; 
    181 } 
    182  
    183 .dsused 
    184 { 
    185                 background-image: url(../images/dsused.gif); 
    186 } 
    187  
    188 .greyLine 
    189 { 
    190         margin:1px; 
    191         border-top-color:#7e7e7e; 
    192         border-top-width:1px; 
    193         border-top-style:solid; 
    194         height:1px; 
    195 } 
    196  
    197 .prefSection 
    198 { 
    199         font-weight:bold; 
    200         font-size:16px; 
    201         line-height:40px; 
    202 } 
    203  
    204 #extraIcons 
    205 { 
    206 /*      position:absolute; 
    207         z-index:13; 
    208         right:10px; 
    209         top:113px; 
    210         visibility:hidden;*/ 
    211 /*      background-image:url(../images/alpha-white.png);*/ 
    212         background-color:#eeeeee; 
    213         border-width:1px; 
    214         border-color:#7e7e7e; 
    215         border-style:solid; 
    216 } 
    217  
    218 .extraIconsRow 
    219 { 
    220         border-top-color:#dddddd; 
    221         border-top-width:1px; 
    222         border-top-style:solid; 
    223         padding:2px; 
    224 } 
    225  
    226 #divMain 
    227 { 
    228         background-color:white; 
    229         margin-top: 0px; 
    230         padding:9px; 
    231         border-color:#7e7e7e; 
    232         border-width:1px; 
    233         border-style:solid; 
    234 } 
    235  
    236 #divLogo 
    237 { 
    238         position:absolute; 
    239         left:20px; 
    240         top:5px; 
    241         z-index:51; 
    242 } 
    243  
    244 #divAppIconBar 
    245 { 
    246         background-color:white; 
    247         border-top-color:#9c9c9c; 
    248         border-top-width:1px; 
    249         border-top-style:solid; 
    250         background-image: url(../images/background-icon-bar.png);  
    251         background-repeat: repeat-x 
    252 } 
    253  
    254 #divAppTextBar 
    255 { 
    256         background-color:white; 
    257 } 
    258  
    259 #user_info 
    260 { 
    261         color: black; 
    262 } 
    263 #links_bar 
    264 { 
    265                 color: black; 
    266 } 
    267  
    268 #divStatusBar 
    269 { 
    270         height:24px; 
    271         padding-left:10px; 
    272         padding-top:0px; 
    273 } 
    274  
    275 /*#divSubContainer 
    276 { 
    277 } 
    278 */ 
    279 #tdSidebox 
    280 { 
    281         width:170px; 
    282         background-color:white; 
    283         overflow:visible; 
    284 } 
    285  
    286  
    287 #tdAppbox 
    288 { 
    289         background-color:white; 
    290         width: 100%; 
    291 } 
    292 #divSideboxContainer 
    293 { 
    294         position:relative; 
    295         width:150px; 
    296         top:0px; 
    297         left:0px; 
    298         background-color:white; 
    299         border-width:1px; 
    300         border-style:solid; 
    301         z-index:40; 
     38        border-color: #bbb; 
     39} 
     40 
     41select 
     42{ 
     43        border-color: #bbb; 
     44        color: #006; 
     45} 
     46 
     47#divAppbox 
     48{ 
     49        background: #eeeee0; 
     50        border-color: #9c9c9c; 
    30251} 
    30352 
    30453#divAppboxHeader 
    30554{ 
    306         margin-top:2px; 
    307         margin-left:2px; 
    308         margin-right:2px; 
    309         font-family: Verdana, Arial, Helvetica, sans-serif; 
     55        background: #eeeee0; 
     56        border-color: #9c9c9c; 
     57        color: #006; 
    31058        font-size: 14px; 
    31159        font-weight: bold; 
    312         color: #000066; 
     60} 
     61 
     62#divAppIconBar 
     63{ 
     64        background: #fff url( ../images/background-icon-bar.png ) repeat-x; 
     65        border-top-color: #9c9c9c; 
     66} 
     67 
     68#divAppTextBar 
     69{ 
     70        background-color: #fff; 
     71} 
     72 
     73#divGenTime 
     74{ 
     75        color: #f00; 
     76} 
     77 
     78#divMain 
     79{ 
     80        background: #fff; 
     81        border-color: #7e7e7e; 
     82} 
     83 
     84#divPoweredBy 
     85{ 
     86        background: #fff; 
     87        color: #999; 
     88} 
     89 
     90#divSideboxContainer 
     91{ 
     92        background: #fff; 
     93} 
     94 
     95#extraIcons 
     96{ 
     97        background: #eee; 
     98        border-color: #7e7e7e; 
     99} 
     100 
     101#links_bar, 
     102#user_info 
     103{ 
     104        color: #000; 
     105} 
     106 
     107#tdAppbox 
     108{ 
     109        background-color: #fff; 
     110} 
     111 
     112#tdSidebox 
     113{ 
     114        background: #fff; 
     115} 
     116 
     117.conteudo 
     118{ 
     119        border-color: #4A79B1; 
     120        color: #003; 
     121} 
     122 
     123.divSideboxHeader 
     124{ 
     125        background: #006; 
     126        color: #fff; 
     127} 
     128 
     129.extraIconsRow 
     130{ 
     131        border-top-color: #ddd; 
     132} 
     133 
     134.greyLine 
     135{ 
     136        border-top-color: #7e7e7e; 
     137} 
     138 
     139.grid_email_class 
     140{ 
     141        border-bottom-color: #cfcfcf; 
     142} 
     143 
     144.image-menu 
     145{ 
     146        background: #ddf4fe url( ../../../../phpgwapi/templates/default/images/folder_bg_canyon.jpg ) no-repeat scroll center bottom; 
     147} 
     148 
     149.last_menu 
     150{ 
     151        border-bottom-color: #4a79b1; 
     152} 
     153 
     154.logo_expresso 
     155{ 
     156        background: url( ../../../../phpgwapi/templates/default/images/logo_expresso_canyon.png ) no-repeat; 
     157        width: 264px; 
     158        height: 35px; 
     159} 
     160 
     161.menu 
     162{ 
     163        background: #a19183; 
     164        border-color: #f4f7fc; 
     165        border-bottom-color: #4a79b1; 
     166} 
     167 
     168.menu-sel 
     169{ 
     170        background-color: #f7f7f7; 
     171        border-color: #A19183; 
     172        color: #00f; 
     173} 
     174 
     175.menu-degrade 
     176{ 
     177        background-image: url( ../../../../phpgwapi/templates/default/images/degrade.png ); 
     178} 
     179 
     180.navbar_but 
     181{ 
     182        background-image: url( ../../../../phpgwapi/templates/default/images/back_app_canyon.png ); 
     183} 
     184 
     185.navbar_butOver 
     186{ 
     187        background-image: url( ../../../../phpgwapi/templates/default/images/back_app_over_canyon.png ); 
     188} 
     189 
     190.navbar_butOut 
     191{ 
     192        background-image: url( ../../../../phpgwapi/templates/default/images/back_app_out_canyon.png ); 
     193} 
     194 
     195.tblHeadApp 
     196{ 
     197        border-color: #9c9c9c; 
     198} 
     199 
     200.textSidebox 
     201{ 
     202        border-top-color: #aaa; 
     203} 
     204 
     205.toolbar 
     206{ 
     207        background-image: url(../../../../phpgwapi/templates/default/images/fundo_topo_canyon.png); 
     208} 
     209 
     210.whiteSpace 
     211{ 
     212        width: 2px; 
     213} 
     214 
     215.linha0, 
     216.linha1, 
     217.tr_msg_read, 
     218.tr_msg_read2 
     219{ 
     220        color: #615143; 
     221        background: #fff; 
     222} 
     223 
     224.linha1, 
     225.tr_msg_read2 
     226{ 
     227        background: #eeeee0; 
     228} 
     229 
     230table.inboxElements th, 
     231.table_elements_tr_header, 
     232.info_tr_header, 
     233.message_header 
     234{ 
     235        background: #cfb69e; 
     236} 
     237 
     238.content-menu 
     239{ 
     240        padding: 0px; 
     241        background: #fff; 
     242} 
     243 
     244.divLoginbox 
     245{ 
     246        border: 1px solid #9c9c9c; 
     247        position: relative; 
     248        width: 300px; 
     249} 
     250 
     251.divLoginboxHeader 
     252{ 
     253        background-color: #ddd; 
     254        color: #666; 
     255        font-size: 10px; 
     256        padding-top: 2px; 
    313257        text-align: center; 
    314         padding: 0px; 
    315         background-color: #eeeee0; 
    316         height:24px; 
    317         line-height:24px; 
    318         border-top-color:#9c9c9c; 
    319         border-top-width:1px; 
    320         border-top-style:solid; 
    321         border-left-color:#9c9c9c; 
    322         border-left-width:1px; 
    323         border-left-style:solid; 
    324         border-right-color:#9c9c9c; 
    325         border-right-width:1px; 
    326         border-right-style:solid; 
    327 } 
    328  
    329 #divAppbox 
    330 { 
    331         background-color: #eeeee0; 
    332         padding-right:1px; 
    333         padding-top:1px; 
    334         padding-bottom:1px; 
    335         padding-left:15px; 
    336         border-bottom-color:#9c9c9c; 
    337         border-bottom-width:1px; 
    338         border-bottom-style:solid; 
    339         border-left-color:#9c9c9c; 
    340         border-left-width:1px; 
    341         border-left-style:solid; 
    342         border-right-color:#9c9c9c; 
    343         border-right-width:1px; 
    344         border-right-style:solid; 
    345         margin-top:0px; 
    346         margin-bottom:0px; 
    347         margin-left:2px; 
    348         margin-right:2px; 
    349  
    350 } 
    351  
    352 #user_info 
    353 { 
    354 padding-left:17px; 
    355  
    356 } 
    357  
    358 #admin_info 
    359 { 
    360         position:relative; 
    361         text-align:center; 
    362         margin-right:10px; 
    363 } 
    364  
    365 #divGenTime 
    366 { 
    367         bottom:14px; 
    368         font-size: 9px; 
    369         color: #ff0000; 
    370         text-align:center; 
    371         width:99%; 
    372 } 
    373  
    374 #divPoweredBy  
    375 { 
    376         font-family: Verdana, Arial, Helvetica, sans-serif; 
    377         font-size: 10px; 
    378         color: #999999; 
    379         text-decoration: none; 
    380         padding: 7px; 
    381         text-align: center; 
    382         background-color:white; 
    383 } 
    384 .navbar_but 
    385 { 
    386         background-image: url(../../../../phpgwapi/templates/default/images/back_app_canyon.png) !important; 
    387         width: 40px; 
    388         height: 40px; 
    389         vertical-align: center; 
    390         text-align: center; 
    391         padding-right: 6px; 
    392         cursor:pointer; 
    393         cursor:hand; 
    394         background-repeat:no-repeat; 
    395 } 
    396  
    397 .navbar_butOver 
    398 { 
    399         background-image: url(../../../../phpgwapi/templates/default/images/back_app_over_canyon.png) !important; 
    400         width: 40px; 
    401         height: 40px; 
    402         vertical-align: center !important; 
    403         text-align: center !important; 
    404         padding-right:6px; 
    405         cursor:pointer; 
    406         cursor:hand; 
    407         background-repeat:no-repeat; 
    408 } 
    409  
    410 .navbar_butOut 
    411 { 
    412         background-image: url(../../../../phpgwapi/templates/default/images/back_app_out_canyon.png) !important; 
    413         width: 40px; 
    414         height: 40px; 
    415         vertical-align: center !important; 
    416         text-align: center !important; 
    417         padding-right:6px; 
    418         cursor:pointer; 
    419         cursor:hand; 
    420         background-repeat:no-repeat; 
    421 } 
    422  
    423 .toolbar 
    424 { 
    425         background-image:url(../../../../phpgwapi/templates/default/images/fundo_topo_canyon.png); 
    426         position:absolute; 
    427 } 
    428  
    429 .logo_expresso 
    430 { 
    431         background:url(../../../../phpgwapi/templates/default/images/logo_expresso_canyon.png) no-repeat; 
    432         width: 264px; 
    433         height: 35px; 
    434 } 
    435  
    436 .content-menu { 
    437         padding: 0px 0px 0px 0px !important; 
    438         background: #fff !important; 
    439 } 
    440  
    441 .image-menu { 
    442         padding: 0px 0px 0px 0px !important; 
    443         background: #ddf4fe url(../../../../phpgwapi/templates/default/images/folder_bg_canyon.jpg) no-repeat scroll center bottom !important; 
    444 } 
    445  
    446 .menu-degrade { 
    447           background-image: url(../../../../phpgwapi/templates/default/images/degrade.png) !important; 
    448           background-repeat: repeat-x; 
    449 } 
    450  
    451 .navbar_butOut 
    452 { 
    453         background-image: url(../../../../phpgwapi/templates/default/images/back_app_out_canyon.png) !important; 
    454         width: 40px; 
    455         height: 40px; 
    456         vertical-align: center !important; 
    457         text-align: center !important; 
    458         padding-right:6px; 
    459         cursor:pointer; 
    460         cursor:hand; 
    461         background-repeat:no-repeat; 
    462 } 
    463  
    464 .toolbar 
    465 { 
    466         background-image:url(../../../../phpgwapi/templates/default/images/fundo_topo_canyon.png); 
    467         position:absolute; 
    468 } 
    469  
    470 .logo_expresso 
    471 { 
    472         background:url(../../../../phpgwapi/templates/default/images/logo_expresso_canyon.png) no-repeat; 
    473         width: 264px; 
    474         height: 35px; 
    475 } 
    476  
    477 .message_header{ 
    478         background-color: #cfb69e !important; 
    479 } 
    480 .menu 
    481 { 
    482         background-color:#a19183 !important; 
    483         border: 1px solid #f4f7fc !important; 
    484         border-bottom: 1px solid #4a79b1 !important; 
    485 } 
    486 .menu-sel{ 
    487     color:#0000FF !important; 
    488     background-color:#F7F7F7 !important; 
    489     border-color: #A19183 !important; 
    490 } 
    491 .table_message{ 
    492         background: url(../../../../phpgwapi/templates/default/images/fundo_topo_canyon.png) !important; 
    493 } 
    494  
    495 .message_options { 
    496          color: #863 !important; 
     258} 
     259 
     260.divSidebox 
     261{ 
     262        position: relative; 
     263        border: 1px solid #9c9c9c; 
     264        width: 147px; 
     265} 
     266 
     267.table_message 
     268{ 
     269        background: url( ../../../../phpgwapi/templates/default/images/fundo_topo_canyon.png ); 
     270} 
     271 
     272.message_options 
     273{ 
     274        color: #863; 
    497275} 
    498276 
    499277.tr_msg_unread 
    500278{ 
    501         background-color:#EEEEE0 !important; 
    502 } 
    503 .tr_msg_read { 
    504         color: #3f3f3f; 
    505         background-color: #ffffff; 
    506         -moz-user-select: none; 
    507 } 
    508  
    509 .tr_msg_read2 { 
    510         color: #3f3f3f; 
    511         background-color: #eeeee0; 
    512         -moz-user-select: none; 
    513 } 
    514  
     279        color: #000; 
     280        font-style: oblique; 
     281} 
     282 
     283.selected_shortcut_msg 
     284{ 
     285        color: #000; 
     286        background-color: BurlyWood; 
     287} 
     288 
     289input.em_button_like_span 
     290{ 
     291        color: #886633; 
     292} 
  • branches/2.2/phpgwapi/templates/default/head.inc.php

    r890 r3018  
    3333 
    3434        #_debug_array($GLOBALS['phpgw_info']['user']['preferences']['common']); 
    35         $theme_css = ".".$GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/'.$GLOBALS['phpgw_info']['server']['template_set'].'/css/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'].'.css'; 
    36         if(!file_exists($theme_css)) 
    37         { 
    38                 $theme_css = $GLOBALS['phpgw_info']['server']['webserver_url'] . '/phpgwapi/templates/'.$GLOBALS['phpgw_info']['server']['template_set'].'/css/'.$GLOBALS['phpgw_info']['user']['preferences']['common']['theme'].'.css'; 
    39         } 
    4035 
    4136        //pngfix defaults to yes 
     
    9489                'website_title' => $GLOBALS['phpgw_info']['server']['site_title'].$app, 
    9590                'body_tags'     => $bodyheader .' '. $GLOBALS['phpgw']->common->get_body_attribs(), 
    96                 'theme_css'     => $theme_css, 
    9791                'css'           => $GLOBALS['phpgw']->common->get_css(), 
    9892                'java_script'   => $GLOBALS['phpgw']->common->get_java_script(), 
  • branches/2.2/phpgwapi/templates/default/head.tpl

    r1247 r3018  
    1313                <link rel="icon" href="{img_icon}" type="image/x-ico" /> 
    1414                <link rel="shortcut icon" href="{img_shortcut}" /> 
    15                 <link href="{theme_css}" title="eGroupWareStyle" type="text/css" rel="StyleSheet"/> 
    1615                <META http-equiv="Default-Style" content="eGroupWareStyle"> 
    1716                {slider_effects} 
  • branches/2.2/phpgwapi/templates/default/login_default.php

    r1933 r3018  
    104104                unset($sslattributes); 
    105105        } 
    106  
     106        session_start();  
    107107        if(isset($passwd_type) || $_POST['submitit_x'] || $_POST['submitit_y'] || $submit) 
    108108        { 
     
    406406                        { 
    407407                                $aux_captcha = '<div class="login_label" > 
    408                <img src="./security/captcha.php" title="'.lang('Security code').'" alt="'.lang('Security code').'" style="width:60;"> 
     408 <input type="hidden" name="' . session_name() .'" value="' . session_id() . '" >  
     409 <img src="./security/captcha.php?xsid='.session_id().'" title="'.lang('Security code').'" alt="'.lang('Security code').'" style="width:60;">   
    409410<br /> 
    410411                <input class="input" type="text" maxlength="50" size="20" name="codigo" id="codigo" value="" > 
Note: See TracChangeset for help on using the changeset viewer.