FolderBrowser: Corrected typo on Upload button title attribute.

Small CSS tweak to filter input textbox - side padding.
This commit is contained in:
leekelleher
2012-09-03 19:15:15 -01:00
parent c345b9f47c
commit 6aeaa4ae92
2 changed files with 3 additions and 2 deletions

View File

@@ -152,7 +152,8 @@
.umbFolderBrowser .filter input {
border: solid 1px #ccc;
width: 200px;
padding: 0 3px;
width: 194px;
}
.umbFolderBrowser .throbber {

View File

@@ -166,7 +166,7 @@ Umbraco.Sys.registerNamespace("Umbraco.Controls");
var self = this;
// Inject the upload button into the toolbar
var button = $("<input id='fbUploadToolbarButton' type='image' src='images/editor/upload.png' titl='Upload...' onmouseover=\"this.className='editorIconOver'\" onmouseout=\"this.className='editorIcon'\" onmouseup=\"this.className='editorIconOver'\" onmousedown=\"this.className='editorIconDown'\" />");
var button = $("<input id='fbUploadToolbarButton' type='image' src='images/editor/upload.png' title='Upload...' onmouseover=\"this.className='editorIconOver'\" onmouseout=\"this.className='editorIcon'\" onmouseup=\"this.className='editorIconOver'\" onmousedown=\"this.className='editorIconDown'\" />");
button.click(function (e) {
e.preventDefault();
$(".upload-overlay").show();