mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-12-18 00:23:07 +00:00
83 lines
1.3 KiB
Rust
83 lines
1.3 KiB
Rust
//! Dedicated styling system for Components
|
|
//! ---------------------------------------
|
|
//!
|
|
//!
|
|
//!
|
|
//!
|
|
//!
|
|
//!
|
|
//!
|
|
|
|
enum Styles {
|
|
background,
|
|
backgroundAttachment,
|
|
backgroundColor,
|
|
backgroundImage,
|
|
backgroundPosition,
|
|
backgroundRepeat,
|
|
border,
|
|
borderBottom,
|
|
borderBottomColor,
|
|
borderBottomStyle,
|
|
borderBottomWidth,
|
|
borderColor,
|
|
borderLeft,
|
|
borderLeftColor,
|
|
borderLeftStyle,
|
|
borderLeftWidth,
|
|
borderRight,
|
|
borderRightColor,
|
|
borderRightStyle,
|
|
borderRightWidth,
|
|
borderStyle,
|
|
borderTop,
|
|
borderTopColor,
|
|
borderTopStyle,
|
|
borderTopWidth,
|
|
borderWidth,
|
|
clear,
|
|
clip,
|
|
color,
|
|
cursor,
|
|
display,
|
|
filter,
|
|
cssFloat,
|
|
font,
|
|
fontFamily,
|
|
fontSize,
|
|
fontVariant,
|
|
fontWeight,
|
|
height,
|
|
left,
|
|
letterSpacing,
|
|
lineHeight,
|
|
listStyle,
|
|
listStyleImage,
|
|
listStylePosition,
|
|
listStyleType,
|
|
margin,
|
|
marginBottom,
|
|
marginLeft,
|
|
marginRight,
|
|
marginTop,
|
|
overflow,
|
|
padding,
|
|
paddingBottom,
|
|
paddingLeft,
|
|
paddingRight,
|
|
paddingTop,
|
|
pageBreakAfter,
|
|
pageBreakBefore,
|
|
position,
|
|
strokeDasharray,
|
|
strokeDashoffset,
|
|
textAlign,
|
|
textDecoration,
|
|
textIndent,
|
|
textTransform,
|
|
top,
|
|
verticalAlign,
|
|
visibility,
|
|
width,
|
|
zIndex,
|
|
}
|