Changeset e19229c in github
- Timestamp:
- Dec 14, 2011 6:53:02 AM (17 months ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
- Children:
- 099f927
- Parents:
- 28e18c7
- Files:
-
- 3 added
- 7 edited
-
program/steps/settings/edit_identity.inc (modified) (2 diffs)
-
skins/larry/includes/header.html (modified) (1 diff)
-
skins/larry/includes/settingstabs.html (modified) (1 diff)
-
skins/larry/settings.css (modified) (4 diffs)
-
skins/larry/styles.css (modified) (12 diffs)
-
skins/larry/templates/about.html (added)
-
skins/larry/templates/error.html (modified) (1 diff)
-
skins/larry/templates/identities.html (added)
-
skins/larry/templates/identityedit.html (added)
-
skins/larry/templates/mail.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
program/steps/settings/edit_identity.inc
ra90ad28 re19229c 6 6 | | 7 7 | This file is part of the Roundcube Webmail client | 8 | Copyright (C) 2005-20 07, The Roundcube Dev Team |8 | Copyright (C) 2005-2011, The Roundcube Dev Team | 9 9 | Licensed under the GNU GPL | 10 10 | | … … 132 132 rcmail_get_edit_field($col, $IDENTITY_RECORD[$col], $colprop, $colprop['type']); 133 133 134 $table->add('title', sprintf('<label for="%s">%s</label>',$colprop['id'], Q($label)));134 $table->add('title', html::label($colprop['id'], Q($label))); 135 135 $table->add(null, $value); 136 136 } 137 $content = $table->show( );137 $content = $table->show($attrib); 138 138 } 139 139 else { -
skins/larry/includes/header.html
rb1fa1ab5 re19229c 2 2 <div id="topline"> 3 3 <div class="topleft"> 4 <roundcube:button command="about" type="link" label="about" class="about-link" /> 4 5 <roundcube:if condition="config:support_url" /> 5 6 <a href="<roundcube:var name='config:support_url' />" target="_blank" class="support-link"><roundcube:label name="support" /></a> -
skins/larry/includes/settingstabs.html
r28e18c7 re19229c 5 5 <span id="settingstabfolders" class="listitem folders"><roundcube:button command="folders" type="link" label="folders" title="managefolders" /></span> 6 6 <span id="settingstabidentities" class="listitem identities"><roundcube:button command="identities" type="link" label="identities" title="manageidentities" /></span> 7 <span id="settingstababout" class="listitem about"><roundcube:button command="about" type="link" label="about" title="about" /></span>8 7 <roundcube:container name="tabs" id="settings-tabs" /> 9 8 </div> -
skins/larry/settings.css
r28e18c7 re19229c 17 17 top: 0; 18 18 left: 0; 19 width: 2 40px;19 width: 220px; 20 20 bottom: 0; 21 21 } … … 24 24 position: absolute; 25 25 top: 0; 26 left: 2 50px;27 width: 2 40px;26 left: 230px; 27 width: 260px; 28 28 bottom: 0; 29 29 } … … 49 49 } 50 50 51 #settings-sections span.listitem a { 51 /* note: support span.tablink because this is used by plugins */ 52 #settings-sections span.listitem a, 53 #settings-sections span.tablink a { 52 54 background-position: 6px -862px; 53 55 } 54 56 55 #settings-sections span.selected a { 57 #settings-sections span.selected a, 58 #settings-sections span.tablink.selected a { 56 59 background-position: 6px -887px; 57 60 } … … 143 146 } 144 147 148 #identitieslist { 149 position: absolute; 150 top: 0; 151 left: 230px; 152 width: 300px; 153 bottom: 0; 154 } 155 156 #identity-details { 157 position: absolute; 158 top: 0; 159 left: 540px; 160 right: 0; 161 bottom: 0; 162 } 163 -
skins/larry/styles.css
r28e18c7 re19229c 48 48 input[type="password"]:focus, 49 49 input.button:focus, 50 textarea {50 textarea:focus { 51 51 border-color: #4787b1; 52 52 box-shadow: 0 0 5px 2px rgba(71,135,177, 0.9); … … 86 86 87 87 .formbuttons input.button { 88 color: #ddd ddd;88 color: #ddd; 89 89 font-size: 110%; 90 90 text-shadow: 1px 1px 1px #333; … … 101 101 102 102 .formbuttons input.button:hover { 103 color: # ededed;103 color: #f2f2f2; 104 104 box-shadow: 0 0 5px 2px rgba(71,135,177, 0.6); 105 105 -moz-box-shadow: 0 0 5px 2px rgba(71,135,177, 0.6); … … 370 370 } 371 371 372 #topline a.support-link { 373 display: inline-block; 374 padding: 2px 0; 372 #topline .topleft a { 373 display: inline-block; 374 padding: 2px 0.8em 0 0; 375 color: #aaa; 375 376 } 376 377 … … 464 465 } 465 466 467 .scroller { 468 overflow: auto; 469 } 470 471 .readtext { 472 width: 42em; 473 padding: 12px; 474 } 475 476 .readtext > h1, 477 .readtext > h2, 478 .readtext > h3 { 479 margin-top: 0; 480 } 481 482 .watermark { 483 background-image: url(images/watermark.jpg); 484 background-position: center; 485 background-repeat: no-repeat; 486 } 487 466 488 /*** lists ***/ 467 489 … … 480 502 } 481 503 482 .listbox .scroller.w footer {504 .listbox .scroller.withfooter { 483 505 bottom: 42px; 484 506 } … … 526 548 text-decoration: none; 527 549 cursor: default; 528 padding: 8px 8px 4px 8px; 550 padding: 7px 8px 5px 8px; 551 white-space: nowrap; 529 552 } 530 553 … … 588 611 } 589 612 613 .boxfooter .listbutton.add .inner { 614 background-position: 8px -1210px; 615 } 616 590 617 .boxfooter .listbutton.groupactions .inner { 591 618 background-position: 4px -1292px; 592 619 } 593 620 594 .errobox h3 { 621 .centerbox { 622 width: 40em; 623 margin: 36px auto; 624 } 625 626 .errorbox { 627 width: 40em; 628 padding: 20px; 629 } 630 631 .errorbox h3 { 595 632 font-size: 16px; 596 633 margin-top: 0; 597 634 } 635 598 636 599 637 /*** iFrames ***/ … … 604 642 } 605 643 644 .contentbox .boxtitle, 606 645 body.iframe .boxtitle { 607 position: fixed;608 top: 0;609 left: 0;610 width: 100%;611 646 color: #777; 612 647 background: #eee; … … 619 654 } 620 655 656 body.iframe .boxtitle { 657 position: fixed; 658 top: 0; 659 left: 0; 660 width: 100%; 661 } 662 621 663 .boxcontent { 622 664 padding: 10px; 665 } 666 667 .contentbox .scroller { 668 position: absolute; 669 top: 34px; 670 left: 0; 671 right: 0; 672 bottom: 28px; 673 overflow: auto; 623 674 } 624 675 … … 658 709 padding-right: 20px; 659 710 white-space: nowrap; 711 } 712 713 table.propform .mceLayout td { 714 padding: 0; 715 border-bottom: 0; 660 716 } 661 717 … … 788 844 font-size: 10px; 789 845 color: #555; 790 min-width: 5 5px;846 min-width: 50px; 791 847 max-width: 75px; 792 848 overflow: hidden; -
skins/larry/templates/error.html
r15f48a2 re19229c 9 9 <roundcube:include file="/includes/header.html" /> 10 10 11 <div class="uibox errobox" style="width:40em; margin:60px auto; padding:20px">11 <div class="uibox centerbox errorbox"> 12 12 $__page_content 13 13 </div> -
skins/larry/templates/mail.html
ra4be516 re19229c 22 22 <!-- folders list --> 23 23 <div id="mailboxcontainer" class="uibox listbox"> 24 <div class="scroller w footer">24 <div class="scroller withfooter"> 25 25 <roundcube:object name="mailboxlist" id="mailboxlist"class="listing" folder_filter="mail" unreadwrap="%s" /> 26 26 </div>
Note: See TracChangeset
for help on using the changeset viewer.
