jquery UI elements appear big -
jquery UI elements appear big -
i using jquery ui within application , elements of jquery ui when used within page appearing quiet big. appear bigger rest of page. normal elements set within jquery ui element growing in size.
for illustration have couple of textboxes , text labels within accordion become bigger original size insdide ui element.
i not sure causing this.
try setting font-size
of body element of page container of widget smaller value in pixels.
usually jquery ui plugins , stuff have relative sizes (in em
), become relative font-size
inherited parent nodes.
you add together css:
.ui-widget{ font-size: 10px; }
thanks @haochi improve idea, i've missed originally.
jquery jquery-ui
Comments
Post a Comment