Trying to include jqGrid in a page and realized that the pager's
pgtext (showing Page # of ##) is too wide and causing some of the
information on the pager layer not visible.
After some digging, realized that it is because of a property setting
in /static/css/base.css as follow,
=========================================================
input[type=text], input[type=password], textarea, select {
margin: 2px 15px 2px 5px;
/*width: 280px;*/ /* <<-------- This one ----- */
background: #fff;
color: #555;
border: 1px solid #dedede;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
font-size: 12px;
}
=========================================================
Not sure what's the appropriate way to deal with it, I just remarked
it off for the time being.
Do share if there is a better solution.