Changeset 1320
- Timestamp:
- 06/16/12 10:26:04 (1 year ago)
- Location:
- branches/MootoolsFileManager-Update/plugins/MootoolsFileManager/mootools-filemanager
- Files:
-
- 5 modified
-
Assets/Css/Additions.css (modified) (2 diffs)
-
Assets/Css/FileManager.css (modified) (6 diffs)
-
Assets/Css/FileManager_ie7.css (modified) (1 diff)
-
Assets/js/milkbox/milkbox.js (modified) (1 diff)
-
Source/FileManager.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/MootoolsFileManager-Update/plugins/MootoolsFileManager/mootools-filemanager/Assets/Css/Additions.css
r1309 r1320 88 88 } 89 89 90 div.filemanager-dialog button {90 div.filemanager-dialog button, div.filemanager-dialog .filemanager-button { 91 91 position: absolute; 92 92 bottom: 15px; … … 112 112 border-radius: 4px; 113 113 } 114 div.filemanager-dialog-engine-trident4 button, div.filemanager-dialog-engine-trident5 button { 114 div.filemanager-dialog-engine-trident4 button, div.filemanager-dialog-engine-trident4 .filemanager-button, 115 div.filemanager-dialog-engine-trident5 button, div.filemanager-dialog-engine-trident5 .filemanager-button { 115 116 padding: 0 .25em; 116 117 overflow: visible; 117 118 } 118 119 119 div.filemanager-dialog button.filemanager-dialog-decline {120 div.filemanager-dialog button.filemanager-dialog-decline, div.filemanager-dialog .filemanager-button.filemanager-dialog-decline { 120 121 right: auto; 121 122 left: 15px; -
branches/MootoolsFileManager-Update/plugins/MootoolsFileManager/mootools-filemanager/Assets/Css/FileManager.css
r1319 r1320 11 11 div.filemanager-container, 12 12 div.filemanager, 13 div.filemanager button, 13 div.filemanager button, div.filemanager .filemanager-button, 14 14 div.filemanager label, 15 15 div.filemanager h1 { … … 92 92 } 93 93 94 div.filemanager button {94 div.filemanager button, div.filemanager .filemanager-button { 95 95 cursor: pointer; 96 96 height: 22px; … … 110 110 border-radius: 4px; 111 111 } 112 div.filemanager-engine-trident4 button, 113 div.filemanager-engine-trident5 button {112 div.filemanager-engine-trident4 button, div.filemanager-engine-trident4 .filemanager-button, 113 div.filemanager-engine-trident5 button, div.filemanager-engine-trident5 .filemanager-button { 114 114 padding: 0 .25em; 115 115 overflow: visible; 116 116 } 117 117 118 div.filemanager-menu button {118 div.filemanager-menu button, div.filemanager-menu .filemanager-button { 119 119 float: right; 120 120 } 121 121 122 div.filemanager button:hover, 123 div.filemanager button.hover, 124 div.filemanager button:focus {122 div.filemanager button:hover, div.filemanager .filemanager-button:hover, 123 div.filemanager button.hover, div.filemanager .filemanager-button.hover, 124 div.filemanager button:focus, div.filemanager .filemanager-button:focus { 125 125 border: 1px solid #5f676e; 126 126 } 127 127 128 div.filemanager button.disabled, 129 div.filemanager button.disabled:hover, 130 div.filemanager button.disabled:focus {128 div.filemanager button.disabled, div.filemanager .filemanager-button.disabled, 129 div.filemanager button.disabled:hover, div.filemanager .filemanager-button.disabled:hover, 130 div.filemanager button.disabled:focus, div.filemanager .filemanager-button.disabled:focus { 131 131 cursor: default; 132 132 color: #666; … … 136 136 } 137 137 138 div.filemanager button.filemanager-open {138 div.filemanager button.filemanager-open, div.filemanager .filemanager-button.filemanager-open { 139 139 font-weight: bold; 140 140 } … … 832 832 833 833 /* GALLERY */ 834 div.filemanager button.filemanager-serialize {834 div.filemanager button.filemanager-serialize, div.filemanager .filemanager-button.filemanager-serialize { 835 835 font-weight: bold; 836 836 } … … 963 963 border: 1px solid #bebebe; 964 964 background: #fff; 965 } 966 967 div.filemanager-wrapper button { 965 966 /* and prevent FF, Chrome, Safari et al from resizing the textarea and destroy the layout that way: */ 967 resize: none; 968 } 969 970 div.filemanager-wrapper button, div.filemanager-wrapper .filemanager-button { 968 971 margin: 3px 7px; 969 972 } -
branches/MootoolsFileManager-Update/plugins/MootoolsFileManager/mootools-filemanager/Assets/Css/FileManager_ie7.css
r1309 r1320 29 29 } 30 30 31 div.filemanager button, 32 div.filemanager-dialog button {31 div.filemanager button, div.filemanager .filemanager-button, 32 div.filemanager-dialog button, div.filemanager-dialog .filemanager-button{ 33 33 display: inline; 34 34 overflow: visible; 35 35 } 36 36 37 div.filemanager-container span.fi span { 38 overflow:hidden; 39 } -
branches/MootoolsFileManager-Update/plugins/MootoolsFileManager/mootools-filemanager/Assets/js/milkbox/milkbox.js
r1319 r1320 500 500 if(this.formElements.length == 0) return; 501 501 502 this.formElements = this.formElements.map(function(elem){ 502 this.formElements = this.formElements.filter(function(elem){ 503 var vis = elem.getStyle('visibility'); 504 var dis = elem.getStyle('display'); 505 return (dis !== 'none' && vis !== 'hidden'); 506 }).map(function(elem){ 503 507 elem.store('visibility',elem.getStyle('visibility')); 504 508 elem.store('display',elem.getStyle('display')); -
branches/MootoolsFileManager-Update/plugins/MootoolsFileManager/mootools-filemanager/Source/FileManager.js
r1319 r1320 3250 3250 // adds buttons to the file main menu, which onClick start a method with the same name 3251 3251 addMenuButton: function(name) { 3252 var el = new Element(' button', {3253 'class': 'filemanager- ' + name,3254 text: this.language[name] 3252 var el = new Element('div', { 3253 'class': 'filemanager-button filemanager-' + name, 3254 text: this.language[name], 3255 3255 }).inject(this.menu, 'top'); 3256 3256 … … 3615 3615 Asset.css(__MFM_ASSETS_DIR__+'/Css/FileManager.css'); 3616 3616 Asset.css(__MFM_ASSETS_DIR__+'/Css/Additions.css'); 3617 if(Browser.ie && Browser.version <= 7) 3618 { 3619 Asset.css(__MFM_ASSETS_DIR__+'/Css/FileManager_ie7.css'); 3620 } 3617 3621 Asset.javascript(__MFM_ASSETS_DIR__+'/js/jsGET.js', { 3618 3622 events: {
