diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-01-08 18:49:07 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-01-08 18:49:07 -0800 |
commit | d0df4896b0c96099709b10fa8cbb7d15a4f20461 (patch) | |
tree | 3920834b82cc403db859bec73717bea93dd06f07 | |
parent | 8f5a3fd0c269745e2d540a85bfe54fcde66a6687 (diff) |
Specify a width for the sort order dropdowns so that they don't
get squeezed on smaller screens.
-rw-r--r-- | modules/organize/views/organize_frame.html.php | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/modules/organize/views/organize_frame.html.php b/modules/organize/views/organize_frame.html.php index d9bb71e5..0354fa1d 100644 --- a/modules/organize/views/organize_frame.html.php +++ b/modules/organize/views/organize_frame.html.php @@ -283,13 +283,20 @@ }, items: [ { - xtype: "label", - cls: "sort", - flex: 2, - text: <?= t("Sort order: ")->for_js() ?> + xtype: "panel", + layout: "hbox", + width: 300, + items: [ + { + xtype: "label", + cls: "sort", + flex: 2, + text: <?= t("Sort order: ")->for_js() ?> + }, + sort_column_combobox, + sort_order_combobox + ] }, - sort_column_combobox, - sort_order_combobox, { xtype: "spacer", flex: 10 |