Changeset 1317
- Timestamp:
- 06/16/12 03:07:36 (1 year ago)
- Location:
- trunk/plugins/MootoolsFileManager/mootools-filemanager
- Files:
-
- 2 modified
-
Css/FileManager.css (modified) (6 diffs)
-
Source/FileManager.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/MootoolsFileManager/mootools-filemanager/Css/FileManager.css
r1245 r1317 3 3 div.filemanager a img { border: 0 } 4 4 5 div.filemanager-container, div.filemanager, div.filemanager button, div.filemanager label, div.filemanager h1 {5 div.filemanager-container, div.filemanager, div.filemanager .button, div.filemanager label, div.filemanager h1 { 6 6 width: auto; 7 7 margin: 0; … … 39 39 } 40 40 41 div.filemanager button {41 div.filemanager .button { 42 42 cursor: pointer; 43 43 height: 22px; … … 56 56 border-radius: 4px; 57 57 } 58 div.filemanager-engine-trident4 button, div.filemanager-engine-trident5button {58 div.filemanager-engine-trident4 .button, div.filemanager-engine-trident5 .button { 59 59 padding: 0 .25em; 60 60 overflow: visible; 61 61 } 62 62 63 div.filemanager-menu button {63 div.filemanager-menu .button { 64 64 float: right; 65 65 } 66 66 67 div.filemanager button:hover, div.filemanager button.hover, div.filemanagerbutton:focus {67 div.filemanager .button:hover, div.filemanager .button.hover, div.filemanager .button:focus { 68 68 border: 1px solid #5f676e; 69 69 } 70 70 71 div.filemanager button.disabled, div.filemanager button.disabled:hover, div.filemanagerbutton.disabled:focus {71 div.filemanager .button.disabled, div.filemanager .button.disabled:hover, div.filemanager .button.disabled:focus { 72 72 cursor: default; 73 73 color: #666; … … 77 77 } 78 78 79 div.filemanager button.filemanager-open {79 div.filemanager .button.filemanager-open { 80 80 font-weight: bold; 81 81 } … … 402 402 403 403 /* GALLERY */ 404 div.filemanager button.filemanager-serialize {404 div.filemanager .button.filemanager-serialize { 405 405 font-weight: bold; 406 406 } … … 527 527 } 528 528 529 div.filemanager-wrapper button {529 div.filemanager-wrapper .button { 530 530 margin: 3px 7px; 531 531 } -
trunk/plugins/MootoolsFileManager/mootools-filemanager/Source/FileManager.js
r1313 r1317 689 689 690 690 addMenuButton: function(name){ 691 var el = new Element(' button', {692 'class': 'filemanager-' + name ,691 var el = new Element('div', { 692 'class': 'filemanager-' + name + ' button', 693 693 text: this.language[name] 694 694 }).inject(this.menu, 'top');
