Changeset 3cbdbd9 in github


Ignore:
Timestamp:
Mar 9, 2012 4:44:12 AM (15 months ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
84d6e27
Parents:
fe3a1d6
Message:
  • Improve logo handling in default skin (#1488385)
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • program/include/html.php

    r66d2152 r3cbdbd9  
    158158        } 
    159159        return self::tag('img', $attr + array('alt' => ''), null, array_merge(self::$common_attrib, 
    160             array('src','alt','width','height','border','usemap'))); 
     160                array('src','alt','width','height','border','usemap','onclick'))); 
    161161    } 
    162162 
  • skins/default/common.css

    r6205a30 r3cbdbd9  
    155155} 
    156156 
    157 body > #header 
    158 { 
    159   position: absolute; 
    160   top: 8px; 
    161   left: 19px; 
    162   width: 170px; 
    163   height: 40px; 
    164   z-index: 100; 
     157body > #logo 
     158{ 
     159  margin-left: 12px; 
     160  cursor: pointer; 
    165161} 
    166162 
     
    171167  right: 0px; 
    172168  height: 24px; 
    173   width: 100%; 
     169  left: 250px; 
    174170  background: url(images/taskbar.png) top right no-repeat; 
    175171  padding: 10px 6px 5px 0px; 
  • skins/default/includes/header.html

    r3633f09 r3cbdbd9  
    1 <div id="header"><a href="./?_page=1"><roundcube:object name="logo" src="/images/roundcube_logo.png" id="logo" border="0" alt="Logo" /></a></div> 
    2  
     1<roundcube:object name="logo" src="/images/roundcube_logo.png" id="logo" border="0" onclick="location.href='./?_page=1'" /> 
    32<roundcube:object name="message" id="message" /> 
  • skins/default/print.css

    r50b22b9 r3cbdbd9  
    2626} 
    2727 
    28 #header 
     28body > #logo 
    2929{ 
    3030  float: right; 
     
    5858  font-weight: bold; 
    5959} 
    60    
     60 
    6161#attachment-list 
    6262{ 
  • skins/default/templates/error.html

    r0d16eb7 r3cbdbd9  
    77<body> 
    88 
    9 <div id="header"><roundcube:object name="logo" src="/images/roundcube_logo.png" id="logo" border="0" alt="Logo" /></div> 
     9<roundcube:object name="logo" src="/images/roundcube_logo.png" id="logo" border="0" /> 
    1010 
    1111<div style="width:400px; margin:60px auto;"> 
  • skins/default/templates/messageprint.html

    r0d16eb7 r3cbdbd9  
    88<body> 
    99 
    10 <div id="header"><roundcube:object name="logo" src="/images/roundcube_logo.png" id="logo" border="0" alt="Logo" /></div> 
     10<roundcube:object name="logo" src="/images/roundcube_logo.png" id="logo" border="0" /> 
    1111 
    1212<div id="printmessageframe"> 
Note: See TracChangeset for help on using the changeset viewer.