Hey guys, I have a CSS thing i can't figure out and i'd appreciate some pointers.
I can't seem to make changing font size for titles for forms work in 13...
(EDIT i had a longer post here before but figured out that it was because of what i write below)
Outside our smartgwt-skin, we have a separate css with some additional things. One section we have is
In our web-remake we're working on, a star was added after the body at one point... which i now understand causes other font-sizes in the stratus skin to be ignored, mostly.
However, in our forms i discovered a strange thing. Here is a title in the form:
Here, changing the .formTitle skin font-size does not affect the text, but it DOES affect the colon (:). Why is that? Is it becuase the colon is inside a span? Is it supposed to behave like that?
I can't seem to make changing font size for titles for forms work in 13...
(EDIT i had a longer post here before but figured out that it was because of what i write below)
Outside our smartgwt-skin, we have a separate css with some additional things. One section we have is
Code:
body { //other stuff font-family: 'Roboto', Arial, sans-serif; font-size: 12px; }
However, in our forms i discovered a strange thing. Here is a title in the form:
Code:
<span $89="isc_TextAreaItem_1" $9a="$9g" id="isc_1Y" style="display:inline-block;" class="formTitle" align="right"> <label id="isc_20" for="isc_1Z">Note</label><span aria-hidden="true"> :</span></span> </span>
Comment