Globally changing default style in Primefaces

前端 未结 4 1099
孤独总比滥情好
孤独总比滥情好 2021-01-30 07:46

How should I change and apply changes to the default style of primefaces globally and only once?

.ui-widget,.ui-widget .ui-widget {
    font-size: 90% !important         


        
4条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-01-30 08:09

    It works fine with following css

    body {
        font-size: 75% !important;
    
    }
    
    .ui-widget,.ui-widget-header,.ui-widget-content,.ui-widget-header .ui-widget-header,.ui-widget-content .ui-widget-content,.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button
        {
        font-size: 100% !important;
    }
    

提交回复
热议问题