Cursors on file manager

This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.

Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.

This is the place to report bugs and get support

When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:

  • What operating system were you running when the bug appeared?
  • What database platform is your site using?
  • What version of mojoPortal are you running?
  • What version of .NET do you use?
  • What steps are necessary to reproduce the issue? Compare expected results vs actual results.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum.
This thread is closed to new posts. You must sign in to post in the forums.
3/31/2011 9:27:05 AM
Gravatar
Total Posts 43

Cursors on file manager

I have a little problem whit the cursors on the file manager. on google chrome it only shows the "new" as a pointer cursor as the other buttons are defaul.

Weird is that on firefox that "upload file" button is whit a text cursor :s i kinda need to change this...but i can't find the CSS for this part...

Any help? 

tks

3/31/2011 12:55:46 PM
Gravatar
Total Posts 18439

Re: Cursors on file manager

I believe the css is coming from /Data/style/qtfile/default.css

If you are able to improve it by css let us know.

Best,

Joe

4/1/2011 5:56:09 AM
Gravatar
Total Posts 43

Re: Cursors on file manager

i'm doing some search in this and why i caught is that the text cursor shows cause the file uploaded text (input box) is right above the upload button...doing some element inspect whit google chrome i see this:

<span id="buttonUploadFile" class="button file-upload" title="Subir um ficheiro para esta pasta" style="position: relative; "><span class="icon"></span>Subir arquivo

<input type="file" name="fileUploaded" class="button file-upload" style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; opacity: 0; width: 220px; height: 10px; display: block; top: 3px; left: -37px; ">

</span>

 

Language is in portuguese so sorry :p  after seeing the CSS element inspect if i hide the position:absolute; i can make this <input> go bottom form the buttons and the upload button is cleared and shows the proper cursor...

what i can't see is: where is this <input> coming from Oo?

4/1/2011 6:15:30 AM
Gravatar
Total Posts 43

Re: Cursors on file manager

anyway i can do a margin-left: 250px; on that input? it would make the fix :s

4/1/2011 7:20:30 AM
Gravatar
Total Posts 43

Re: Cursors on file manager

way confusing :P the input is the one that procs the file upload :p but the input is verticaly under the text of upload :s thats what happening i guess...this is weird xD

4/1/2011 10:27:26 AM
Gravatar
Total Posts 43

Re: Cursors on file manager

any ideia why i'm changing the /data/style/qtfile css and nothing is changing on the site? cleaned cache and everything

4/1/2011 1:16:19 PM
Gravatar
Total Posts 18439

Re: Cursors on file manager

When I test this locally using the skin jqueryui-1, I get consistent results in IE 9, Chrome and Firefox 4, when I mouse over new or upload I get the hand cursor and if I mouse over Rename, Move, or Delete, I get pointer.

Possibly it is affected by other elements of the skin, so it may be different in some skins.

There is no visible input for the file upload its done inside an iframe, clicking the button opens the file dialog, and the file name is not shown in the UI, it just begins uploading immediately after selection.

Hope it helps,

Joe

4/15/2011 11:28:29 AM
Gravatar
Total Posts 43

Re: Cursors on file manager

it seems that playing whit the style.css on my skin broke some of the CSS that were used on that input box top of the .button...

i got it solved a bit time ago but i wanted to share a solution if someone else has the same problem and doesn't want to reedit all the style.css again :p

.qtfile .button>input
{
margin-left:<X>px !important;

}

where <X> is the number u need to add/subtract for it to get to its place...

if u want to see it just change the oppacitty: 1 and see where the button of the input box is :p

regards 

 

You must sign in to post in the forums. This thread is closed to new posts.