Lines Matching refs:styles

8 - Styles can be cascaded which means multiple styles may be assigned to an object and each style ca…
9 …or a property until a style defines it or use a default if it's not specified by any of the styles.
11 …tyle has higher precedence. This means if a property is specified in two styles the newest style i…
13 - Objects can also have local styles with higher precedence than "normal" styles.
66 ## Cascading styles
67 It's not required to set all the properties in one style. It's possible to add more styles to an ob…
82 Some properties (typically those related to text) can be inherited from the parent object's styles.
83 Inheritance is applied only if the given property is not set in the object's styles (even in defaul…
106 Objects can be composed of *parts* which may each have their own styles.
125 This means all three parts of the slider can have their own styles. See later how to add styles to …
127 ## Initialize styles and set/get properties
188 ## Add and remove styles to a widget
191 ### Add styles
206 ### Remove styles
207 To remove all styles from an object use `lv_obj_remove_style_all(obj)`.
209 To remove specific styles use `lv_obj_remove_style(obj, style, selector)`. This function will remov…
210 `style` can be `NULL` to check only the `selector` and remove all matching styles. The `selector` c…
221 To get a final value of property - considering cascading, inheritance, local styles and transitions…
229 ## Local styles
230 In addition to "normal" styles, objects can also store local styles. This concept is similar to inl…
232 Local styles are like normal styles, but they can't be shared among other objects. If used, local s…
235 Unlike in CSS, LVGL local styles can be assigned to states (*pseudo-classes*) and parts (*pseudo-el…
260 The parameters of the transitions are stored in the styles. It's possible to set
305 Themes are a collection of styles. If there is an active theme LVGL applies it on every created wid…
306 This will give a default appearance to the UI which can then be modified by adding further styles.
330 … parent theme can be selected. The parent theme's styles will be added before the custom theme's s…
341 .. include:: ../../examples/styles/index.rst