Changeset 489
- Timestamp:
- 07/31/07 00:49:43 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
pagoda/branches/cleanslate/Pagoda/pagoda/widgets/admin/static/css/edit.css
r482 r489 8 8 .x-resizable-over .x-resizable-handle-east, 9 9 .x-resizable-pinned .x-resizable-handle-east { 10 /* background: url("../images/shadow-left.png") repeat-y scroll left top; */ 11 background: url("../images/blank.gif") repeat-y scroll left top;10 background: url("../images/shadow-left.png") repeat-y scroll left top; 11 filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/shadow-left.png', sizingMethod='scale'); 12 12 } 13 13 14 14 .x-resizable-over .x-resizable-handle-west, 15 15 .x-resizable-pinned .x-resizable-handle-west { 16 /* background: url("../images/shadow-right.png") repeat-y scroll right top; */ 17 background: url("../images/blank.gif") repeat-y scroll left top;16 background: url("../images/shadow-right.png") repeat-y scroll right top; 17 filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/shadow-right.png', sizingMethod='scale'); 18 18 } 19 19 pagoda/branches/cleanslate/Pagoda/pagoda/widgets/admin/static/javascript/edit.js
r488 r489 26 26 this.west = Ext.get(west); 27 27 28 // Create shadow effect surrounding center column29 //this.shadow = new Ext.Shadow({mode: 'frame', offset: 0});30 this.shadow = new Ext.Shadow({mode: 'frame'});31 32 28 // Create Resizeable east and west columns 33 29 this.eastResizable = new Ext.Resizable(this.east, { … … 116 112 } 117 113 118 // Show and resize shadow119 if (!this.shadow.isVisible()) {120 this.shadow.show(this.center);121 this.center.setStyle('z-index', 1000);122 this.shadow.el.setStyle('z-index', 999);123 }124 this.shadow.realign(this.center.getLeft()-4, 0, this.center.getWidth()+8, this.center.getHeight());125 126 114 // After a buffer period (to prevent spurious resizing), 127 115 // re-allow entry into the resize() function
