This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

DEVELOPERS FORUM - Innovator 10 interface

edmoreirabr - Friday, January 17, 2014 10:20 AM:

Aras gurus, I would like to know where we can change the font size on main and tabs menu.

The new interface is pretty good but I would like to decrease the font size a little.

Thanks in advance.


Edson



gks - Thursday, January 23, 2014 10:38 AM:

../Innovator/Client/styles/common.css

body for the menu and ".claro .dijitTabContainerTop-tabs .dijitTab" for the tab

But body is a fallbackvalue also used for the Property frame next to the menu

better add a new entry to .dijitTreeLabel in common.css with something like: "font: 10px/1.4 Tahoma,Arial,Helvetica,sans-serif;"

 

Georg



edmoreirabr - Thursday, January 23, 2014 10:49 AM:

Georg, thanks for your reply.

Both didn't work...

Could you change yours?

Edson



gks - Friday, January 24, 2014 5:12 AM:

Yes it did, see the attached image for an example. Size is 12px->6px for menu and 14px->6px for tabs.

You have to clear your cache thought, and this is FF26 and not 24 ESR. But shouldn't make such a difference.



edmoreirabr - Friday, January 24, 2014 5:25 AM:

Georg, I mean the main menu over the top. The font is so big and I would like to decrease that.  

  Anyway, could you share your common.css?

Thanks, Edson.



gks - Friday, January 24, 2014 6:20 AM:

Add an entry to .dijitMenuItem {...}  with font-size: 10px; or something like that

Sorry i can't share my common.css as it is currently the default without any changes. i reset it regularly.

 

however here is the part with the menu fixes: the rest is default again:

.dijitMenuItem {
    cursor: pointer;
    font-size: 10px;
    text-align: left;
    white-space: nowrap;
}


edmoreirabr - Saturday, January 25, 2014 6:30 AM:

Georg,

It's working fine now.

Thanks.

Edson