- use less styling on select fields

release-0.6
alecpl 14 years ago
parent 13540e089c
commit 39f9d39c3f

@ -85,10 +85,8 @@ input, textarea
select
{
font-size: 11px;
font-family: "Lucida Grande", Verdana, Arial, Helvetica, sans-serif;
color: black;
height: 18px;
}
input.button

@ -113,6 +113,11 @@ function rcmail_init_compose_form()
var form = rcube_find_object('form');
form.onkeydown = function (e) { if (rcube_event.get_keycode(e) == 27) rcube_event.cancel(e); };
}
// fix editor position on some browsers
var div = document.getElementById('compose-div');
var headers_div = document.getElementById('compose-headers-div');
div.style.top = parseInt(headers_div.offsetHeight, 10) + 'px';
}
/**

@ -52,32 +52,27 @@ input, textarea
#messagetoolbar select.mboxlist
{
top: -8px;
margin: 0 8px;
top: 8px;
}
#abooktoolbar a.buttonPas
{
filter: alpha(opacity=35);
background-image: url(images/abook_toolbar.gif);
background-image: url('images/abook_toolbar.gif');
}
#messagetoolbar a.buttonPas
{
filter: alpha(opacity=35);
background-image: url(images/mail_toolbar.gif);
background-image: url('images/mail_toolbar.gif');
}
#listcontrols a.buttonPas,
#mailboxcontrols a.buttonPas
{
filter: alpha(opacity=35);
background-image: url(images/mail_footer.png);
}
#messagetoolbar select.mboxlist
{
margin: 0 8px;
top: 8px;
background-image: url('images/mail_footer.png');
}
#quicksearchbar

Loading…
Cancel
Save