Skip to content

Using lower case in the headerTitle text #210

Answered by Flyer53
samuelchau asked this question in Q&A
Discussion options

You must be logged in to vote

If you look at the css file you'll find the following css rules:

.jsPanel-titlebar .jsPanel-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-variant: small-caps;
  font-weight: normal;
  margin: 0 5px 0 8px;
  min-width: 0;
}

The one you want to change is font-variant: small-caps;

So just add some css to your own style sheet like...

.jsPanel-titlebar .jsPanel-title {
  font-variant: normal;
}

...in order to overwrite the default style for all your panels.
Make sure you load your css after the jsPanel css.

Replies: 2 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Answer selected by samuelchau
Comment options

You must be logged in to vote
1 reply
@Flyer53
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants