diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-11-15 23:27:37 -0700 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-11-15 23:27:37 -0700 |
commit | 33d2a2481e86596a967446239a82940490520a19 (patch) | |
tree | edfa0d1b98358681d34d53c188ccfc692c30c16c /modules | |
parent | 18f5481252c653a25c529b34fdcbf06643897634 (diff) |
MInor message-block padding fixes in general and specifically for organize.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/organize/css/organize.css | 7 | ||||
-rw-r--r-- | modules/organize/views/organize_dialog.html.php | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/modules/organize/css/organize.css b/modules/organize/css/organize.css index 55267052..16645c37 100644 --- a/modules/organize/css/organize.css +++ b/modules/organize/css/organize.css @@ -68,7 +68,12 @@ #g-organize #g-organize-detail .g-message-block { margin: 0; - padding-left: 30px !important; +} + +#g-organize #g-organize-detail .g-message-block li { + padding-bottom: .2em; + padding-top: .2em; + width: inherit; } #g-organize-microthumb-panel { diff --git a/modules/organize/views/organize_dialog.html.php b/modules/organize/views/organize_dialog.html.php index 5e46a5bb..31f788ad 100644 --- a/modules/organize/views/organize_dialog.html.php +++ b/modules/organize/views/organize_dialog.html.php @@ -17,9 +17,9 @@ <div id="g-organize-detail" class="g-left ui-helper-clearfix"> <div id="g-organize-microthumb-panel" ref="<?= url::site("organize/album/__ITEM_ID__/__OFFSET__") ?>"> - <div id="g-action-status" class="g-message-block g-info"> - <?= t("Drag and drop photos to re-order or move between albums") ?> - </div> + <ul id="g-action-status" class="g-message-block"> + <li class="g-info"><?= t("Drag and drop photos to re-order or move between albums") ?></li> + </ul> <ul id="g-organize-microthumb-grid"> <?= $micro_thumb_grid ?> </ul> |