-
5 Nov 2010 7:54 AM #1
Setting font-weight on a Button in a ToolBar
Setting font-weight on a Button in a ToolBar
GXT 2.1.1
I'm trying to set the font-weight on a Button that's being used as part of a ToolBar and having no luck at all.
I've tried adding a style name of my own to the Button and tried adding to the .x-btn-text style.
I've had no trouble controlling text style in other components, including if I use the MenuBar (instead of ToolBar).
Am I missing something here? I'm no CSS expert and I can't figure out why the style is not being applied.
Not a big deal, but it would be nice to know how to accomplish this.
Thanks!
Peter
-
5 Nov 2010 7:55 AM #2
How does the css rule look like which you have tried?
-
5 Nov 2010 9:38 AM #3
Something along the lines of:
And also tried setting the style directly:Code:Button fileMenuButton = new Button("File"); fileMenuButton.addStyleName("bvw-menu-item"); .bvw-menu-item { font-weight: bold; }
And also tried modifying the x-btn-text rule:Code:fileMenuButton.setStyleAttribute("font-weight", "bold");
Cheers!Code:.x-btn-text { font-weight: bold; }
-
5 Nov 2010 9:40 AM #4
Try the important flag:
Code:.x-btn-text { font-weight: bold !important; }
-
5 Nov 2010 10:11 AM #5
Still nothing.
I realized after that I was using the gxt-gray.css style and thought that it might have been causing a problem. However, even after removing it, I still can't get a bold font.
Anyway, as I said, it's not a big deal. I can live with things the way are ;-)
Thanks again.
Similar Threads
-
[2.x] HtmlEditor switches between <b> and <span..font-weight:bold..> in FF
By karl007 in forum Ext 2.x: BugsReplies: 3Last Post: 9 Jan 2012, 2:51 AM -
font-weight is not applied when using getRowClass()
By leandrorc in forum Ext 3.x: Help & DiscussionReplies: 3Last Post: 22 Mar 2010, 9:29 AM -
Need help on changing inner cell font-weight
By burbur in forum Ext 3.x: Help & DiscussionReplies: 0Last Post: 19 Oct 2009, 11:59 PM -
Change font-weight in Grid Row on mouseover
By kvbisme in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 16 Jul 2009, 6:07 PM -
about font-weight
By jden in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 29 Jan 2008, 5:57 AM


Reply With Quote