/* Tb - address book "edit card" dialog size */

/*
- controls the actual/min/max size of the address book card window
- automatically provides scrollbars if needed
- works in Thunderbird 1.5.0.x

- on a small display screen a good combo is ...
--- height:30em;
--- overflow:auto;

available settings ...
- height:, width:
- max-height:, min-height:
- min-width:, max-width:
- overflow [provides scrollbars if needed]
default values ...
- unknown

source = http://forums.mozillazine.org/viewtopic.php?t=398994
*/
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);
#abTabPanels > vbox {
  height:40em;
  overflow:auto;
  }