Changeset 4dbc961 in github


Ignore:
Timestamp:
Apr 11, 2012 11:32:01 AM (14 months ago)
Author:
thomascube <thomas@…>
Branches:
master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.8
Children:
3d5240b7
Parents:
c97c575
Message:

Set flexible width to login form fields (#1488418); remove IE7 warning

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • CHANGELOG

    rc97c575 r4dbc961  
    22=========================== 
    33 
     4- Set flexible width to login form fields (#1488418) 
    45- Force page reload if list columns changed in IE8 (#1487822) 
    56- Allow mass-removal of addresses from a group (#1487748) 
  • skins/larry/styles.css

    r1ba07f0 r4dbc961  
    11881188 
    11891189#login-form td.input { 
     1190        width: 80%; 
    11901191        padding: 8px; 
    11911192} 
     
    11931194#login-form input[type="text"], 
    11941195#login-form input[type="password"] { 
    1195         width: 24em; 
     1196        width: 100%; 
    11961197        border-color: #666; 
    11971198} 
     
    12301231} 
    12311232 
     1233#login-form form table { 
     1234        width: 98%; 
     1235} 
     1236 
    12321237#login-form td.title { 
     1238        width: 20%; 
     1239        white-space: nowrap; 
    12331240        color: #cecece; 
    12341241        text-shadow: 0px 1px 1px black; 
  • skins/larry/ui.js

    r1ba07f0 r4dbc961  
    159159 
    160160        new rcube_scroller('#directorylist-content', '#directorylist-header', '#directorylist-footer'); 
    161       } 
    162     } 
    163     /***  login page  ***/ 
    164     else if (rcmail.env.task == 'login') { 
    165       if (bw.ie && bw.vendver < 8) { 
    166         var popup = $('<div>') 
    167           .addClass('readtext') 
    168           .html("Roundcube will not work well with the crappy browser ya' using. Get yourself a new internet browsing software and don't come back without!<p>Sincerly,<br/>the Roundcube Dev Team</p>") 
    169           .appendTo(document.body) 
    170           .dialog({ 
    171             dialogClass: 'alert', 
    172             closeOnEscape: true, 
    173             title: "No way, are you serious?", 
    174             close: function() { 
    175               popup.dialog('destroy').remove(); 
    176             }, 
    177             width: 450 
    178           }); 
    179161      } 
    180162    } 
Note: See TracChangeset for help on using the changeset viewer.