diff options
| author | Tim Almdal <tnalmdal@shaw.ca> | 2009-05-18 19:34:03 +0000 |
|---|---|---|
| committer | Tim Almdal <tnalmdal@shaw.ca> | 2009-05-18 19:34:03 +0000 |
| commit | 762ca225443626b69c94f6d6c833f66de69b2ce1 (patch) | |
| tree | f2c77401b6b6f018728fc37f0b6fdbb012d75654 /modules/organize/css/organize.css | |
| parent | ad16488643017f293dda6b226024751d15cb4426 (diff) | |
This takes us the next step closer to providing bulk edit. We still
can't edit, but we are getting closer :-).
This change sets up a framework for modules to contribute edit panels
to the organize drawer. Currently implemented General (albums and
photos), Sort Order (albums only) and Manage Tags
Diffstat (limited to 'modules/organize/css/organize.css')
| -rw-r--r-- | modules/organize/css/organize.css | 50 |
1 files changed, 49 insertions, 1 deletions
diff --git a/modules/organize/css/organize.css b/modules/organize/css/organize.css index 765ef169..cef25f1c 100644 --- a/modules/organize/css/organize.css +++ b/modules/organize/css/organize.css @@ -155,6 +155,7 @@ background-color: #fff; border: 1px solid #13A; display: none; + height: 195px; } #gOrganizeEditDrawerHandle { @@ -211,9 +212,15 @@ position: relative; } +/* yui-u gives 80% width, but then we wrap so do it ourselves */ +#gOrganizeEditForm { + float: right; + width: 79%; +// height: 100px; +} + #gOrganizeFormThumbs { overflow: hidden; - min-height: 150px; } #gOrganizeFormThumbs div { @@ -228,3 +235,44 @@ opacity: 1; position: absolute; } + +/**************************************************************** + * Organize Edit From tabs styling + */ +#gOrganizeEditForm.ui-tabs .ui-tabs-hide { + display: block !important; + left: -10000px; + position: absolute; +} + +#gOrganizeEditForm.ui-widget { + font-size: .75em; +} + +.gOrganizeEditPane { + height: 135px; + overflow-y: auto; +} + +.textbox, +.textarea { + border: 1px solid #e8e8e8; + border-top-color: #ccc; + border-left-color: #ccc; + color: #333; + width: 100%; +} + +.textarea { + height: 6em; +} + +.textbox { + height: 1.3em; + width: 50% +} + +.gTagGroup { + float:left; + margin: .5em; +} |
