From 3412e50b54e3daac8745234e21ab6e72be0ed165 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli <thomas@roundcube.net> Date: Wed, 04 Jun 2014 11:20:33 -0400 Subject: [PATCH] Fix attachment menu structure and aria-attributes --- plugins/managesieve/skins/larry/managesieve.css | 73 ++++++++++++++++++++++++++++++------ 1 files changed, 60 insertions(+), 13 deletions(-) diff --git a/plugins/managesieve/skins/larry/managesieve.css b/plugins/managesieve/skins/larry/managesieve.css index 058b662..2172c60 100644 --- a/plugins/managesieve/skins/larry/managesieve.css +++ b/plugins/managesieve/skins/larry/managesieve.css @@ -43,7 +43,7 @@ #filtersetslist { width: 100%; - table-layout: fixed; + table-layout: fixed; } #filterslist tbody td, @@ -89,7 +89,7 @@ padding: 20px 10px 10px 10px; } -legend, label +#filter-form legend, #filter-form label { color: #666666; } @@ -124,7 +124,7 @@ min-width: 600px; } -td +#filter-form td { vertical-align: top; } @@ -184,6 +184,14 @@ td.rowtargets div.adv { padding-top: 3px; + font-size: 10px; +} + +td.rowtargets div.adv span.label +{ + display: inline-block; + padding-right: 5px; + min-width: 70px; } input.disabled, input.disabled:hover @@ -297,6 +305,7 @@ { font-size: 11px; padding: 1px; + vertical-align: middle; } html.mozilla #filter-form select @@ -333,6 +342,12 @@ display: inline-block; max-height: 59px; overflow-y: auto; +} + +td.rowtargets > span.listarea +{ + vertical-align: top; + margin-top: 2px; } .listelement @@ -377,20 +392,12 @@ box-shadow: none; } -.listelement .actions -{ - display: inline-block; - width: 32px; - height: 16px; - background: url(images/plus_minus.png) -1px -1px no-repeat #eee; -} - -.actions .add, -.actions .reset +.listelement .reset { display: inline-block; width: 16px; height: 16px; + background: url(images/erase.png) -1px -1px no-repeat #eee; cursor: pointer; } @@ -407,3 +414,43 @@ { padding: 10px 5px 5px 5px; } + + +/* vacation form */ +#settings-sections .vacation a { + background-image: url(images/vacation_icons.png); + background-repeat: no-repeat; + background-position: 7px 1px; +} + +#settings-sections .vacation.selected a { + background-position: 7px -23px; +} + +#managesieve-vacation { + position: absolute; + top: 0; + left: 212px; + right: 0; + bottom: 0; + overflow: auto; +} + +#vacationform .listarea { + max-height: 91px; +} + +#vacationform .listelement, +#vacationform .listelement .reset { + height: 22px; +} + +#vacationform .listelement .reset { + background-position: -1px 3px; +} + +#vacationform .listelement input { + vertical-align: top; + border: 0; + box-shadow: none; +} -- Gitblit v1.9.1