diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-06 09:46:39 -0700 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-08-06 09:46:39 -0700 |
| commit | d7c7a06efe0171f65c120a8cf8fe7b41382d36c9 (patch) | |
| tree | e7662ba084bf59ea99124469a516544bd8374b67 /modules/organize/css | |
| parent | 5997f57323ff6608de75c3700bbcde8b8d0f3bbf (diff) | |
Remove the complicated calculation to determine the height of the
micro thumb grid, by setting all the parent elements to 100% in the
css and then subtract the height of the button bar
Diffstat (limited to 'modules/organize/css')
| -rw-r--r-- | modules/organize/css/organize.css | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/modules/organize/css/organize.css b/modules/organize/css/organize.css index 0a23a6bf..56ecc309 100644 --- a/modules/organize/css/organize.css +++ b/modules/organize/css/organize.css @@ -7,6 +7,11 @@ #gOrganize { overflow: hidden; + height: 100%; +} + +#gOrganize #bd { + height: 100%; } #gOrganize .yui-u { @@ -22,16 +27,20 @@ width: 75%; } +#gOrganizeDetail { + height: 100%; +} + #gMessage .gInfo { font-weight: bold; padding-left: 2em; } - /******************************************************************* * Album Tree styling */ #gOrganizeTreeContainer { + height: 100%; overflow: auto; margin: 0 !important; padding: 0 !important; |
