up vote
1
down vote
favorite
I'm using the provided components and every time I need to change a component style I wonder what's the proper way to do it. Lets say I need to change the IconButton background color when it's disabled. https://codepen.io/elsl/pen/KrQQdV If I provide a theme, how am I supposed to know which palette/semanticColor is used by that component?
const iconsTheme = Fabric.createTheme({
semanticColors: {
disabledBackground: "#ff9933"
}
});
<Fabric.IconButton
iconProps={{iconName:'ChevronRight'}}
disabled
theme={iconsTheme}
/>
If I provide an IButtonStyles, how am I supposed to know that the property name is "rootDisabled.backgroundColor"?
const iconButtonStyles: IButtonStyles = {
rootDisabled...
Pour l’article ayant un titre homophone, voir commarque. .mw-parser-output .autres-projets ul{margin:0;padding:0}.mw-parser-output .autres-projets li{list-style-type:none;list-style-image:none;margin:0.2em 0;text-indent:0;padding-left:24px;min-height:20px;text-align:left}.mw-parser-output .autres-projets .titre{text-align:center;margin:0.2em 0}.mw-parser-output .autres-projets li a{font-style:italic} Sur les autres projets Wikimedia : comarque, sur le Wiktionnaire La comarque est, dans plusieurs pays de culture ibérique, une division territoriale, culturelle, économique ou administrative. Sommaire 1 Désignation et toponymie 2 Espagne 2.1 Échelon économique ou culturel 2.2 Échelon administratif 2.3 Listes de comarques espagnoles 3 Brésil et Portugal 4 Amérique centrale 5 France 6 Italie 7 Notes et références 8 Voir aussi 8.1 Article connexe Désignation et toponymie | Le mot comarca , utilisé en castillan,...
up vote
3
down vote
favorite
I’m trying to model this kettle with a pyramid pattern on the lower side of the kettle. The problem that I am facing is that I have a Subdivision Surface modifier on the object to give it that smooth round look. If I try to model each individual pyramid, the Subsurf smooths out the pyramid. What is the best way of achieving this look?
modeling modifiers subdivision-surface
share | improve this question
edited 4 hours ago
Martin Z
3,413 1 3 24
asked 6 hours ago
Andre...