Changeset 5533 in subversion


Ignore:
Timestamp:
Dec 2, 2011 12:19:24 PM (18 months ago)
Author:
thomasb
Message:

New skin continued...

Location:
trunk/roundcubemail/skins/larry
Files:
3 added
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/roundcubemail/skins/larry/mail.css

    r5519 r5533  
    3434        left: 0; 
    3535        width: 100%; 
    36         bottom: 26px; 
     36        bottom: 28px; 
    3737} 
    3838 
     
    101101} 
    102102 
     103#searchfilter { 
     104        width: 16em; 
     105} 
     106 
     107#messagetoolbar { 
     108        position: absolute; 
     109        top: 0; 
     110        right: 0; 
     111        width: auto; 
     112        height: 40px; 
     113} 
     114 
     115 
     116/*** message list ***/ 
     117 
     118.boxlistcontent table { 
     119        display: table; 
     120        width: 100%; 
     121        table-layout: fixed; 
     122        border-collapse: collapse; 
     123        border-spacing: 0; 
     124} 
     125 
     126.boxlistcontent thead tr td { 
     127        font-size: 11px; 
     128        font-weight: bold; 
     129        background: #d6eaf3; 
     130        background: -moz-linear-gradient(left, #e3f2f6 0, #d6eaf3 14px, #d6eaf3 100%); 
     131        background: -webkit-gradient(linear, left top, right top, color-stop(0,#e3f2f6), color-stop(14px,#d6eaf3), color-stop(100%,#d6eaf3)); 
     132        background: -o-linear-gradient(left, #e3f2f6 0, #d6eaf3 14px, #d6eaf3 100%); 
     133        background: -ms-linear-gradient(left, #e3f2f6 0, #d6eaf3 14px ,#d6eaf3 100%); 
     134        background: linear-gradient(left, #e3f2f6 0, #d6eaf3 14px, #d6eaf3 100%); 
     135        border-left: 1px solid #bbd3da; 
     136} 
     137 
     138.boxlistcontent thead tr td a { 
     139        display: block; 
     140        padding: 8px 7px; 
     141        color: #69939e; 
     142        text-decoration: none; 
     143} 
     144 
     145.boxlistcontent tbody tr td { 
     146        font-size: 11px; 
     147        padding: 4px 7px; 
     148        border-bottom: 1px solid #ddd; 
     149        border-left: 1px dotted #bbd3da; 
     150        white-space: nowrap; 
     151        cursor: default; 
     152} 
     153 
     154.boxlistcontent thead tr td:first-child, 
     155.boxlistcontent tbody tr td:first-child { 
     156        border-left: 0; 
     157} 
     158 
     159.boxlistcontent tbody tr td a { 
     160        color: #333; 
     161        text-decoration: none; 
     162        white-space: nowrap; 
     163        cursor: default; 
     164} 
     165 
     166.boxlistcontent tr.selected td { 
     167        color: #fff !important; 
     168        background: #019bc6; 
     169        background: -moz-linear-gradient(top, #019bc6 0%, #017cb4 100%); 
     170        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#019bc6), color-stop(100%,#017cb4)); 
     171        background: -o-linear-gradient(top, #019bc6 0%, #017cb4 100%); 
     172        background: -ms-linear-gradient(top, #019bc6 0%, #017cb4 100%); 
     173        background: linear-gradient(top, #019bc6 0%, #017cb4 100%); 
     174} 
     175 
     176.boxlistcontent tr.selected td a, 
     177.boxlistcontent tr.selected td span { 
     178        color: #fff !important; 
     179} 
     180 
     181.boxlistcontent tr.unfocused td { 
     182        color: #fff !important; 
     183        background: #4db0d2; 
     184} 
     185 
     186.boxlistcontent tr.unfocused td a, 
     187.boxlistcontent tr.unfocused td span { 
     188        color: #fff !important; 
     189} 
     190 
     191.boxlistcontent tr.deleted td, 
     192.boxlistcontent tr.deleted td a { 
     193        color: #ccc !important; 
     194} 
     195 
     196#messagelist tr td.attachment, 
     197#messagelist tr td.threads, 
     198#messagelist tr td.status, 
     199#messagelist tr td.flag, 
     200#messagelist tr td.priority { 
     201        width: 17px; 
     202        padding: 4px 3px; 
     203} 
     204 
     205#messagelist tr td.threads { 
     206        width: 26px; 
     207} 
     208 
     209#messagelist tr td.flag, 
     210#messagelist tr td.status, 
     211#messagelist tr td.threads { 
     212        border-left: 0; 
     213} 
     214 
     215 
     216#messagelist tr td.size { 
     217        width: 60px; 
     218        text-align: right; 
     219} 
     220 
     221#messagelist tr td.from, 
     222#messagelist tr td.to, 
     223#messagelist tr td.cc, 
     224#messagelist tr td.replyto { 
     225        width: 180px; 
     226} 
     227 
     228#messagelist tr td.date { 
     229        width: 118px; 
     230} 
     231 
     232#messagelist tr.message { 
     233/*      background-color: #fff; */ 
     234} 
     235 
     236#messagelist tr.unread { 
     237        font-weight: bold; 
     238/*      background-color: #fff; */ 
     239} 
     240 
     241#messagelist tr.flagged td, 
     242#messagelist tr.flagged td a { 
     243        color: #f30; 
     244} 
     245 
     246#messagelist thead tr td.sortedASC a, 
     247#messagelist thead tr td.sortedDESC a { 
     248        color: #004458; 
     249        text-decoration: underline; 
     250        background: url(images/listicons.png) right -912px no-repeat; 
     251} 
     252 
     253#messagelist thead tr td.sortedASC a { 
     254        background-position: right -944px; 
     255} 
     256 
     257#messagelist td img { 
     258        vertical-align: middle; 
     259        display: inline-block; 
     260} 
     261 
     262#messagelist tbody tr td.flag, 
     263#messagelist tbody tr td.status, 
     264#messagelist tbody tr td.subject span.status { 
     265        cursor: pointer; 
     266} 
     267 
     268#messagelist tr td.flag span, 
     269#messagelist tr td.status span, 
     270#messagelist tr td.attachment span, 
     271#messagelist tr td.priority span { 
     272        display: block; 
     273        width: 15px; 
     274} 
     275 
     276#messagelist tr td div.collapsed, 
     277#messagelist tr td div.expanded, 
     278#messagelist tr td.threads div.listmenu, 
     279#messagelist tr td.attachment span.attachment, 
     280#messagelist tr td.attachment span.report, 
     281#messagelist tr td.priority span.priority, 
     282#messagelist tr td.priority span.prio1, 
     283#messagelist tr td.priority span.prio2, 
     284#messagelist tr td.priority span.prio3, 
     285#messagelist tr td.priority span.prio4, 
     286#messagelist tr td.priority span.prio5, 
     287#messagelist tr td.flag span.flagged, 
     288#messagelist tr td.flag span.unflagged, 
     289#messagelist tr td.flag span.unflagged:hover, 
     290#messagelist tr td.status span.status, 
     291#messagelist tr td.status span.msgicon, 
     292#messagelist tr td.status span.deleted, 
     293#messagelist tr td.status span.unread, 
     294#messagelist tr td.status span.unreadchildren, 
     295#messagelist tr td.subject span.msgicon, 
     296#messagelist tr td.subject span.deleted, 
     297#messagelist tr td.subject span.unread, 
     298#messagelist tr td.subject span.replied, 
     299#messagelist tr td.subject span.forwarded, 
     300#messagelist tr td.subject span.unreadchildren { 
     301        display: inline-block; 
     302        vertical-align: middle; 
     303        height: 18px; 
     304        width: 20px; 
     305        background: url(images/listicons.png) -100px 0 no-repeat; 
     306} 
     307 
     308#messagelist tbody tr td.attachment span.attachment { 
     309        background-position: 0 -998px; 
     310} 
     311#messagelist thead tr td.attachment span.attachment { 
     312        background-position: -24px -997px; 
     313} 
     314 
     315/* 
     316#messagelist tr td.attachment span.report { 
     317        background-position: 0 -255px; 
     318} 
     319 
     320#messagelist tr td.priority span.priority { 
     321        background-position: 0 -309px; 
     322} 
     323 
     324#messagelist tr td.priority span.prio5 { 
     325        background-position: 0 -358px; 
     326} 
     327 
     328#messagelist tr td.priority span.prio4 { 
     329        background-position: 0 -340px; 
     330} 
     331 
     332#messagelist tr td.priority span.prio3 { 
     333        background-position: 0 -324px; 
     334} 
     335 
     336#messagelist tr td.priority span.prio2 { 
     337        background-position: 0 -309px; 
     338} 
     339 
     340#messagelist tr td.priority span.prio1 { 
     341        background-position: 0 -290px; 
     342} 
     343*/ 
     344#messagelist tbody tr td.flag span.flagged { 
     345        background-position: 0 -1036px; 
     346} 
     347 
     348#messagelist thead tr td.flag span.flagged { 
     349        background-position: -24px -1036px; 
     350} 
     351 
     352#messagelist tr td.flag span.unflagged:hover { 
     353        background-position: 0 -1056px; 
     354} 
     355 
     356#messagelist tr td.subject span.msgicon, 
     357#messagelist tr td.subject span.unreadchildren { 
     358        background-position: 0 -1056px; 
     359        margin: 0 2px; 
     360} 
     361 
     362#messagelist tr td.subject span.replied { 
     363        background-position: 0 -1076px; 
     364} 
     365 
     366#messagelist tr td.subject span.forwarded { 
     367        background-position: 0 -1096px; 
     368} 
     369 
     370#messagelist tr td.subject span.replied.forwarded { 
     371        background-position: 0 -1116px; 
     372} 
     373 
     374#messagelist tr td.status span.msgicon, 
     375#messagelist tr td.flag span.unflagged, 
     376#messagelist tr td.status span.unreadchildren { 
     377        background-position: 0 1056px; /* no icon */ 
     378} 
     379/* 
     380#messagelist tr td.status span.msgicon:hover { 
     381        background-position: 0 -272px; 
     382} 
     383 
     384#messagelist tr td.status span.deleted, 
     385#messagelist tr td.subject span.deleted { 
     386        background-position: 0 -187px; 
     387} 
     388*/ 
     389#messagelist tr td.status span.status, 
     390#messagelist tr td.status span.unread, 
     391#messagelist tr td.subject span.unread { 
     392        background-position: 0 -1016px; 
     393} 
     394 
     395#messagelist tr td div.collapsed { 
     396        background-position: 0 -1136px; 
     397        cursor: pointer; 
     398} 
     399 
     400#messagelist tr td div.expanded { 
     401        background-position: 0 -1156px; 
     402        cursor: pointer; 
     403} 
     404 
     405#messagelist tr td.threads div.listmenu { 
     406        background-position: 0 -976px; 
     407        cursor: pointer; 
     408        width: 26px; 
     409} 
     410 
     411#messagelist tbody tr td.subject { 
     412        width: 99%; 
     413} 
     414 
     415#messagelist tbody tr td.subject a { 
     416        cursor: default; 
     417        vertical-align: middle; /* #1487091 */ 
     418} 
     419 
     420/* thread parent message with unread children */ 
     421#messagelist tbody tr.unroot td.subject a { 
     422        text-decoration: underline; 
     423} 
     424 
     425/**** tree indicators ****/ 
     426 
     427#messagelist tbody tr td span.branch div { 
     428        float: left; 
     429        height: 18px; 
     430} 
     431 
     432#messagelist tbody tr td span.branch div.tree { 
     433        height: 18px; 
     434        width: 15px; 
     435/*      background: url(images/tree.gif) 0px 0px no-repeat; */ 
     436} 
  • trunk/roundcubemail/skins/larry/settings.css

    r5519 r5533  
    3838 
    3939#preferences-frame { 
     40        border: 0; 
    4041        border-radius: 4px 4px 0 0; 
    4142} 
  • trunk/roundcubemail/skins/larry/styles.css

    r5519 r5533  
    192192        height: 12px; 
    193193        text-indent: -1000px; 
    194         background: url(images/buttons.png) -8px -212px no-repeat; 
     194        background: url(images/buttons.png) -8px -211px no-repeat; 
    195195} 
    196196 
    197197.pagenav a.prevpage span.inner { 
    198         background-position: -8px -227px; 
     198        background-position: -8px -226px; 
    199199} 
    200200 
    201201.pagenav a.nextpage span.inner { 
    202         background-position: -8px -242px; 
     202        background-position: -8px -241px; 
    203203} 
    204204 
    205205.pagenav a.lastpage span.inner { 
    206         background-position: -8px -257px; 
     206        background-position: -8px -256px; 
    207207} 
    208208 
     
    462462.listing tbody td, 
    463463.listing li { 
     464        font-size: 11px; 
    464465        display: block; 
    465466        border-top: 1px solid #fff; 
     
    496497table.listing { 
    497498        width: 100%; 
     499        border-spacing: 0; 
    498500} 
    499501 
     
    664666#quicksearchbar input { 
    665667        width: 176px; 
    666         font-weight: bold; 
     668        margin: 0; 
    667669        padding: 5px 26px 5px 38px; 
    668670        background: #f1f1f1; 
    669671        border-color: #a3a3a3; 
     672        font-weight: bold; 
    670673} 
    671674 
  • trunk/roundcubemail/skins/larry/templates/login.html

    r5474 r5533  
    1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    2 <html xmlns="http://www.w3.org/1999/xhtml"> 
     1<roundcube:object name="doctype" value="html5" /> 
     2<html> 
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
  • trunk/roundcubemail/skins/larry/templates/mail.html

    r5519 r5533  
    1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    2 <html xmlns="http://www.w3.org/1999/xhtml"> 
     1<roundcube:object name="doctype" value="html5" /> 
     2<html> 
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
     
    1515<!-- search box --> 
    1616<div id="quicksearchbar"> 
     17<roundcube:object name="searchform" id="quicksearchbox" /> 
    1718<roundcube:button name="searchmenulink" id="searchmenulink" class="iconbutton searchoptions" _onclick="rcmail_ui.show_popup('searchmenu');return false" title="searchmod" content=" " /> 
    18 <roundcube:object name="searchform" id="quicksearchbox" /> 
    1919<roundcube:button command="reset-search" id="searchreset" class="iconbutton reset" title="resetsearch" content=" " /> 
    2020</div> 
     
    5050<roundcube:object name="messages" 
    5151  id="messagelist" 
    52   cellspacing="0" 
    5352  columns="" 
    54   summary="Message list" 
    5553  optionsmenuIcon="true" /> 
    5654</div> 
  • trunk/roundcubemail/skins/larry/templates/settings.html

    r5519 r5533  
    1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    2 <html xmlns="http://www.w3.org/1999/xhtml"> 
     1<roundcube:object name="doctype" value="html5" /> 
     2<html> 
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
     
    1515<div id="sectionslist" class="uibox listbox"> 
    1616<div class="scroller"> 
    17         <roundcube:object name="sectionslist" id="sections-table" class="listing" cellspacing="0" /> 
     17        <roundcube:object name="sectionslist" id="sections-table" class="listing" /> 
    1818</div> 
    1919</div> 
    2020 
    2121<div id="preferences-box" class="uibox contentbox"> 
    22 <roundcube:object name="prefsframe" id="preferences-frame" width="100%" height="97%" frameborder="0" src="about:blank" /> 
     22<roundcube:object name="prefsframe" id="preferences-frame" style="width:100%; height:96%" src="/watermark.html" /> 
    2323<roundcube:object name="message" id="message" class="statusbar" /> 
    2424</div> 
  • trunk/roundcubemail/skins/larry/templates/settingsedit.html

    r5519 r5533  
    1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
    2 <html xmlns="http://www.w3.org/1999/xhtml"> 
     1<roundcube:object name="doctype" value="html5" /> 
     2<html> 
    33<head> 
    44<title><roundcube:object name="pagetitle" /></title> 
     
    1010 
    1111<div id="preferences-details" class="boxcontent"> 
    12 <roundcube:object name="userprefs" form="form" class="propform" cellspacing="0" /> 
     12<roundcube:object name="userprefs" form="form" class="propform" /> 
    1313</div> 
    1414 
Note: See TracChangeset for help on using the changeset viewer.