diff options
Diffstat (limited to 'skins')
-rw-r--r-- | skins/larry/iehacks.css | 2 | ||||
-rw-r--r-- | skins/larry/styles.css | 28 | ||||
-rw-r--r-- | skins/larry/templates/mail.html | 3 |
3 files changed, 12 insertions, 21 deletions
diff --git a/skins/larry/iehacks.css b/skins/larry/iehacks.css index 960ce7648..340e8511f 100644 --- a/skins/larry/iehacks.css +++ b/skins/larry/iehacks.css @@ -74,7 +74,7 @@ input.button:active { left: 10px; } -.records-table tr.selected td { +.records-table tr.selected td, .records-table tr.focused > td.focus { filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#019bc6', endColorstr='#017cb4', GradientType=0); } diff --git a/skins/larry/styles.css b/skins/larry/styles.css index 261618f7f..172637028 100644 --- a/skins/larry/styles.css +++ b/skins/larry/styles.css @@ -1296,6 +1296,15 @@ table.records-table { border-left: 0; } +.records-table td.focus { + width: 2px; +} + +.records-table tr.selected > td.focus { + filter: none; + background: white; +} + .records-table tr.selected td, .records-table tr.focused > td.focus { color: #fff !important; background: #019bc6; @@ -1326,25 +1335,6 @@ table.records-table { color: #ccc !important; } -.records-table td.focus { - /*background: none repeat scroll 0 0 rgba(0, 0, 0, 0);*/ - width: 2px; -} - .records-table tr.focused > td.focus { - border-bottom: 1px solid #017cb4; - border-top: 1px double #019bc6; - } - -.records-table tr.selected.focused > td.focus { - background: none repeat scroll 0 0 white; - border-top: none; - border-bottom: 1px solid #ddd; -} -/* -.records-table tr.focused > td.focus { - background: #019bc6 !important; -} -*/ /*** iFrames ***/ #aboutframe { diff --git a/skins/larry/templates/mail.html b/skins/larry/templates/mail.html index f2c52c820..640c73950 100644 --- a/skins/larry/templates/mail.html +++ b/skins/larry/templates/mail.html @@ -175,7 +175,7 @@ </div> <div id="listoptions" class="propform popupdialog"> -<roundcube:if condition="!in_array('list_cols', (array)config:dont_override)" /> + <roundcube:if condition="!in_array('list_cols', (array)config:dont_override)" /> <fieldset class="floating"> <legend><roundcube:label name="listcolumns" /></legend> <ul class="proplist"> @@ -192,6 +192,7 @@ <li><label><input type="checkbox" name="list_col[]" value="attachment" /> <span><roundcube:label name="attachment" /></span></label></li> <li><label><input type="checkbox" name="list_col[]" value="flag" /> <span><roundcube:label name="flag" /></span></label></li> <li><label><input type="checkbox" name="list_col[]" value="priority" /> <span><roundcube:label name="priority" /></span></label></li> + <li><label><input type="checkbox" name="list_col[]" value="focus" /> <span><roundcube:label name="focus" /></span></label></li> </ul> </fieldset> <roundcube:endif /> |