summaryrefslogtreecommitdiff
path: root/include/libcss/properties.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libcss/properties.h')
-rw-r--r--include/libcss/properties.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/libcss/properties.h b/include/libcss/properties.h
index 11fb04d..4218956 100644
--- a/include/libcss/properties.h
+++ b/include/libcss/properties.h
@@ -113,8 +113,9 @@ enum css_properties_e {
CSS_PROP_WIDTH = 0x060,
CSS_PROP_WORD_SPACING = 0x061,
CSS_PROP_Z_INDEX = 0x062,
+ CSS_PROP_OPACITY = 0x063,
- CSS_N_PROPERTIES = CSS_PROP_Z_INDEX + 1
+ CSS_N_PROPERTIES
};
@@ -441,6 +442,11 @@ enum css_min_width_e {
CSS_MIN_WIDTH_SET = 0x1
};
+enum css_opacity_e {
+ CSS_OPACITY_INHERIT = 0x0,
+ CSS_OPACITY_SET = 0x1
+};
+
enum css_outline_color_e {
CSS_OUTLINE_COLOR_INHERIT = CSS_BACKGROUND_COLOR_INHERIT,
CSS_OUTLINE_COLOR_COLOR = CSS_BACKGROUND_COLOR_COLOR,