FileManager shows no names on Opera 9.64

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/21/2009 10:48:39 AM
Gravatar
Total Posts 16

FileManager shows no names on Opera 9.64

Hello Joe!

I am using 2.2.9.5 for a rebuild of my personal homepage. Opera is not just my browser, it's my comrade Tongue out.
Anything works exceptionally well, the only thing i noticed: the filemanager doesn't show any file- or directoryname. Any idea?

Regard,

Markus 

 

P.S. On hour hp joeaudette.com, I especially like the picture top-left. As a member of the german green party, I like sunflowers. I also much appreciate your favicon.

3/21/2009 11:07:11 AM
Gravatar
Total Posts 18439

Re: FileManager shows no names on Opera 9.64

Hi Markus,

I just installed Opera and I see the problem as you reported.

The file names are actually buttons, ie input type=submit, but they are styled (at least in the other browsers) to look like links because we really don't want them to look like buttons. The reason we used buttons there is because ASP.NET LinkButtons don't work if javascript is disabled but normal buttons do. So for accessibility we went with buttons and then applied css to make them look like links. Apparently the css does not work as well with Opera.

The actual css is in the styletext.css file in each skin (located under /Data/Sites/[SiteID]/skins. If you edit the css you have to clear both the server cache and the browser cache to see your changes. Server cache is cleared by touching Web.config to recycle the app.

The relevant css is as follows:

.buttonlink {display:table-cell;background-color:transparent;border-style:none;color: #0033FF;cursor: pointer;text-decoration: underline; font-size: 9px;}

If you can help come up with css that still has the same effect in other browsers but can solve the problem for Opera, I would be glad to include the changes in the mojoportal skins. Of course on your own site you are free to make any changes you wish no matter the effect on other browsers.

Best,

Joe

4/19/2009 5:57:37 AM
Gravatar
Total Posts 18439

Re: FileManager shows no names on Opera 9.64

Hi Markus,

I just experimented this morning with the css to find a way it change it so it works in Opera, it was very easy, just remove the "display:table-cell;" from the .buttonlink style and it works in Opera. It does not seem to have any negative effect on other browsers to remove it, so I fixed it in all the skins we ship with mojoPortal so it will be fixed in the next release. You can fix it immediately on your copy by making the needed change in css.

Thanks,

Joe

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