How to make free jqrid font awesome action buttons bigger

前端 未结 1 1916
没有蜡笔的小新
没有蜡笔的小新 2021-01-27 06:15

Free jqgrid 4.8 with font awesome icon set is used.

Standard action buttons are defined using colmodel

[{\"name\":\"_actions\",\"search\":false,\"width\"         


        
相关标签:
1条回答
  • 2021-01-27 07:05

    You can solve the problem in many ways. For example you can add CSS rule like the following

    .jqgrow .ui-jqgrid-actions > .ui-pg-div > span { font-size: 24px; }
    

    or

    .jqgrow .ui-pg-div > span.fa { font-size: 24px; }
    

    The demo demonstrates the results. It used additionally another width value as default

    { name: "act", template: "actions", width: 72 }
    
    0 讨论(0)
提交回复
热议问题