skins

How do I stop richfaces adding borders to panels and calendars?

血红的双手。 提交于 2019-11-30 09:06:10
I'm hoping to use a custom richfaces skin to handle the bulk of my presentation work. Unfortunately richfaces renders borders around every cell in a calendar component and around each panel. I would like to turn them off so that day numbers site in an open grid with no borders. There is no obvious way to do that using skins or attributes of the calendar control. I could use custom CSS but I'd prefer to work with the framework to completely remove the border related properties from the stylesheets created by richfaces rather than work against the framework and override everything using ugly CSS

How do I stop richfaces adding borders to panels and calendars?

ε祈祈猫儿з 提交于 2019-11-29 13:28:47
问题 I'm hoping to use a custom richfaces skin to handle the bulk of my presentation work. Unfortunately richfaces renders borders around every cell in a calendar component and around each panel. I would like to turn them off so that day numbers site in an open grid with no borders. There is no obvious way to do that using skins or attributes of the calendar control. I could use custom CSS but I'd prefer to work with the framework to completely remove the border related properties from the

Can WPF themes be used to include multiple skins for an application that can be changed at runtime?

只愿长相守 提交于 2019-11-29 12:50:38
问题 WPF allows a control library to provide different resource dictionaries for different system themes, essentially allowing an application to match the operating system's selected visual theme (Aero, Luna, etc). I'm wondering if I can include multiple theme resource dictionaries with my application and utilise some existing theme support within the framework. This should work for my own theme names, and ideally allow the user to change the theme and therefore the skinned appearance of the

RichFaces 4 - how to disable skins

杀马特。学长 韩版系。学妹 提交于 2019-11-29 09:58:39
Is there any way how to disable all skins RichFaces apply? They ruin my layout and override fonts, links,... Jean-Charles You can redefine each CSS style, but it'll be boring... Have a look at reset css , this can help you to redefine the CSS. or, you can try to remove style: <context-param> <param-name>org.richfaces.CONTROL_SKINNING</param-name> <param-value>disable</param-value> </context-param> <context-param> <param-name>org.richfaces.CONTROL_SKINNING_CLASSES</param-name> <param-value>disable</param-value> </context-param> or try to use the plain style <context-param> <param-name>org

RichFaces 4 - how to disable skins

非 Y 不嫁゛ 提交于 2019-11-28 03:12:41
问题 Is there any way how to disable all skins RichFaces apply? They ruin my layout and override fonts, links,... 回答1: You can redefine each CSS style, but it'll be boring... Have a look at reset css, this can help you to redefine the CSS. or, you can try to remove style: <context-param> <param-name>org.richfaces.CONTROL_SKINNING</param-name> <param-value>disable</param-value> </context-param> <context-param> <param-name>org.richfaces.CONTROL_SKINNING_CLASSES</param-name> <param-value>disable<