diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-01-05 23:55:21 -0800 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-01-05 23:55:21 -0800 |
commit | 9e6e2138dfd507dbd0ce8835072b7d950855b3d4 (patch) | |
tree | 002c68dffab38927b73faa27390622d9ce936364 /modules | |
parent | 33b8ec7a6264f91db2639944bc10005c2709f0e3 (diff) |
Only mask the data view on changes, it's a little less jarring.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/organize/css/organize.css | 19 | ||||
-rw-r--r-- | modules/organize/views/organize_frame.html.php | 4 |
2 files changed, 12 insertions, 11 deletions
diff --git a/modules/organize/css/organize.css b/modules/organize/css/organize.css index e822d407..d5d8c597 100644 --- a/modules/organize/css/organize.css +++ b/modules/organize/css/organize.css @@ -68,15 +68,6 @@ margin-right: 4px; } -.g-organize .x-tree-node-el { - font-size: 12px; - line-height: 20px; -} - -.g-organize .x-tree-node-leaf .x-tree-node-icon{ - background-image:url(../vendor/ext/images/default/tree/folder.gif); -} - .g-organize label.sort { font: 12px tahoma, arial; vertical-align: middle; @@ -94,3 +85,13 @@ background-position: 4px 8px; background-repeat: no-repeat; } + +/* ExtJS overrides */ +.x-tree-node-el { + font-size: 12px; + line-height: 20px; +} + +.x-tree-node-leaf .x-tree-node-icon{ + background-image:url(../vendor/ext/images/default/tree/folder.gif); +} diff --git a/modules/organize/views/organize_frame.html.php b/modules/organize/views/organize_frame.html.php index 626a1b7d..958b7414 100644 --- a/modules/organize/views/organize_frame.html.php +++ b/modules/organize/views/organize_frame.html.php @@ -21,11 +21,11 @@ * ******************************************************************************** */ var start_busy = function(msg) { - outer.el.mask(msg, "loading"); + thumb_data_view.el.mask(msg, "loading"); } var stop_busy = function() { - outer.el.unmask(); + thumb_data_view.el.unmask(); } var show_generic_error = function() { |