Changeset 9224c8a in github


Ignore:
Timestamp:
Mar 23, 2010 10:55:13 AM (3 years ago)
Author:
alecpl <alec@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
Children:
1c9bd8c
Parents:
d50b857
Message:
  • don't use quotes in background url specification
Location:
skins/default
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • skins/default/addressbook.css

    r0f8ff20 r9224c8a  
    2424  margin-right: 10px; 
    2525  overflow: hidden; 
    26   background: url('images/abook_toolbar.png') 0 0 no-repeat transparent; 
     26  background: url(images/abook_toolbar.png) 0 0 no-repeat transparent; 
    2727  opacity: 0.99; /* this is needed to make buttons appear correctly in Chrome */ 
    2828} 
     
    7070#abooktoolbar span.separator { 
    7171  width: 5px; 
    72   background-image: url('images/abook_toolbar.png'); 
     72  background-image: url(images/abook_toolbar.png); 
    7373  background-position: -162px 0; 
    7474} 
  • skins/default/common.css

    r0b0a293 r9224c8a  
    162162  text-decoration: none; 
    163163  padding: 6px 14px 6px 27px; 
    164   background: url('images/taskicons.gif') no-repeat; 
     164  background: url(images/taskicons.gif) no-repeat; 
    165165} 
    166166 
     
    212212#remote-objects-message 
    213213{ 
    214   background: url('images/display/icons.png') 6px 3px no-repeat; 
     214  background: url(images/display/icons.png) 6px 3px no-repeat; 
    215215  background-color: #F7FDCB; 
    216216  border: 1px solid #C2D071; 
     
    220220#message div.warning 
    221221{ 
    222   background: url('images/display/icons.png') 6px -97px no-repeat; 
     222  background: url(images/display/icons.png) 6px -97px no-repeat; 
    223223  background-color: #EF9398; 
    224224  border: 1px solid #DC5757; 
     
    227227#message div.confirmation 
    228228{ 
    229   background: url('images/display/icons.png') 6px -47px no-repeat; 
     229  background: url(images/display/icons.png) 6px -47px no-repeat; 
    230230  background-color: #A6EF7B; 
    231231  border: 1px solid #76C83F; 
     
    234234#message div.loading 
    235235{ 
    236   background: url('images/display/loading.gif') 6px 3px no-repeat; 
     236  background: url(images/display/loading.gif) 6px 3px no-repeat; 
    237237  background-color: #EBEBEB; 
    238238  border: 1px solid #CCCCCC; 
     
    256256  margin: 1px; 
    257257  overflow: hidden; 
    258   background: url('images/pagenav.gif') 0 0 no-repeat transparent; 
     258  background: url(images/pagenav.gif) 0 0 no-repeat transparent; 
    259259  opacity: 0.99; /* this is needed to make buttons appear correctly in Chrome */ 
    260260} 
     
    321321  font-size: 11px; 
    322322  font-weight: bold; 
    323   background: url('images/listheader.gif') top left repeat-x #CCC; 
     323  background: url(images/listheader.gif) top left repeat-x #CCC; 
    324324} 
    325325 
     
    403403  border-bottom: 1px solid #999999; 
    404404  color: #333333; 
    405   background: url('images/listheader.gif') top left repeat-x #CCC; 
     405  background: url(images/listheader.gif) top left repeat-x #CCC; 
    406406  font-size: 11px; 
    407407  font-weight: bold; 
     
    451451  height: 20px; 
    452452  text-align: right; 
    453   background: url('images/searchfield.gif') top left no-repeat; 
     453  background: url(images/searchfield.gif) top left no-repeat; 
    454454} 
    455455 
  • skins/default/ie6hacks.css

    rf52c936f r9224c8a  
    33img 
    44{ 
    5   behavior: url('skins/default/pngbehavior.htc'); 
     5  behavior: url(skins/default/pngbehavior.htc); 
    66} 
    77 
     
    1212#remote-objects-message 
    1313{ 
    14   background-image: url('images/display/icons.gif'); 
     14  background-image: url(images/display/icons.gif); 
    1515} 
    1616 
     
    1919#messagelist tr td div.collapsed 
    2020{ 
    21   background-image: url('images/messageactions.gif'); 
     21  background-image: url(images/messageactions.gif); 
    2222} 
    2323 
    2424#mailboxlist li 
    2525{ 
    26   background-image: url('images/icons/folders.gif'); 
     26  background-image: url(images/icons/folders.gif); 
    2727} 
    2828 
     
    4141#messagetoolbar a.button, 
    4242#messagetoolbar a.buttonPas { 
    43   background-image: url('images/mail_toolbar.gif'); 
     43  background-image: url(images/mail_toolbar.gif); 
    4444} 
    4545 
     
    4747#abooktoolbar a.buttonPas, 
    4848#abooktoolbar span.separator { 
    49   background-image: url('images/abook_toolbar.gif'); 
     49  background-image: url(images/abook_toolbar.gif); 
    5050} 
    5151 
  • skins/default/iehacks.css

    rf52c936f r9224c8a  
    5959{ 
    6060  filter: alpha(opacity=35); 
    61   background-image: url('images/abook_toolbar.gif'); 
     61  background-image: url(images/abook_toolbar.gif); 
    6262} 
    6363 
     
    6565{ 
    6666  filter: alpha(opacity=35); 
    67   background-image: url('images/mail_toolbar.gif'); 
     67  background-image: url(images/mail_toolbar.gif); 
    6868} 
    6969 
     
    7272{ 
    7373  filter: alpha(opacity=35); 
    74   background-image: url('images/mail_footer.png'); 
     74  background-image: url(images/mail_footer.png); 
    7575} 
    7676 
  • skins/default/mail.css

    r0b0a293 r9224c8a  
    3030  margin-right: 10px; 
    3131  overflow: hidden; 
    32   background: url('images/mail_toolbar.png') 0 0 no-repeat transparent; 
     32  background: url(images/mail_toolbar.png) 0 0 no-repeat transparent; 
    3333  opacity: 0.99; /* this is needed to make buttons appear correctly in Chrome */ 
    3434} 
     
    185185#messagemenu li a 
    186186{ 
    187   background: url('images/messageactions.png') no-repeat 7px 0; 
     187  background: url(images/messageactions.png) no-repeat 7px 0; 
    188188  background-position: 7px 20px; 
    189189} 
     
    216216#markmessagemenu a.readlink 
    217217{ 
    218   background: url('images/icons/dot.png') no-repeat 7px 2px; 
     218  background: url(images/icons/dot.png) no-repeat 7px 2px; 
    219219} 
    220220 
    221221#markmessagemenu a.unreadlink 
    222222{ 
    223   background: url('images/icons/unread.png') no-repeat 7px 2px; 
     223  background: url(images/icons/unread.png) no-repeat 7px 2px; 
    224224} 
    225225 
    226226#markmessagemenu a.flaggedlink 
    227227{ 
    228   background: url('images/icons/flagged.png') no-repeat 7px 2px; 
     228  background: url(images/icons/flagged.png) no-repeat 7px 2px; 
    229229} 
    230230 
    231231#markmessagemenu a.unflaggedlink 
    232232{ 
    233   background: url('images/icons/unflagged.png') no-repeat 7px 2px; 
     233  background: url(images/icons/unflagged.png) no-repeat 7px 2px; 
    234234} 
    235235 
     
    405405  position: relative; 
    406406  font-size: 11px; 
    407   background: url('images/icons/folders.png') 5px 0 no-repeat; 
     407  background: url(images/icons/folders.png) 5px 0 no-repeat; 
    408408  border-bottom: 1px solid #EBEBEB; 
    409409} 
     
    427427#mailboxlist li div.collapsed 
    428428{ 
    429   background: url('images/icons/collapsed.png') bottom right no-repeat; 
     429  background: url(images/icons/collapsed.png) bottom right no-repeat; 
    430430} 
    431431 
    432432#mailboxlist li div.expanded 
    433433{ 
    434   background: url('images/icons/expanded.png') bottom right no-repeat; 
     434  background: url(images/icons/expanded.png) bottom right no-repeat; 
    435435} 
    436436 
     
    546546  margin-right: 2px; 
    547547  overflow: hidden; 
    548   background: url('images/mail_footer.png') 0 0 no-repeat transparent; 
     548  background: url(images/mail_footer.png) 0 0 no-repeat transparent; 
    549549  opacity: 0.99; /* this is needed to make buttons appear correctly in Chrome */ 
    550550} 
     
    671671  border-bottom: 1px solid #999999; 
    672672  color: #333333; 
    673   background: url('images/listheader.gif') top left repeat-x #CCC; 
     673  background: url(images/listheader.gif) top left repeat-x #CCC; 
    674674  font-size: 11px; 
    675675  font-weight: bold; 
     
    684684#messagelist thead tr td.sortedASC a 
    685685{ 
    686   background: url('images/icons/sort.gif') right 0 no-repeat; 
     686  background: url(images/icons/sort.gif) right 0 no-repeat; 
    687687} 
    688688 
    689689#messagelist thead tr td.sortedDESC a 
    690690{ 
    691   background: url('images/icons/sort.gif') right -14px no-repeat; 
     691  background: url(images/icons/sort.gif) right -14px no-repeat; 
    692692} 
    693693 
     
    791791{ 
    792792  display: block; 
    793   background: url('images/messageactions.png') center -91px no-repeat; 
     793  background: url(images/messageactions.png) center -91px no-repeat; 
    794794} 
    795795 
     
    797797{ 
    798798  display: block; 
    799   background: url('images/messageactions.png') center -109px no-repeat; 
     799  background: url(images/messageactions.png) center -109px no-repeat; 
    800800} 
    801801 
  • skins/default/settings.css

    r0f8ff20 r9224c8a  
    2222  overflow: hidden; 
    2323  text-overflow: ellipsis; 
    24   background: url('images/tabs.gif') top left no-repeat; 
     24  background: url(images/tabs.gif) top left no-repeat; 
    2525} 
    2626 
Note: See TracChangeset for help on using the changeset viewer.