summaryrefslogtreecommitdiff
path: root/src/select/select_config.py
diff options
context:
space:
mode:
authorMichael Orlitzky <michael@orlitzky.com>2023-09-18 10:36:48 -0400
committerJohn-Mark Bell <jmb@netsurf-browser.org>2023-10-01 10:47:37 +0100
commitd6e9f636d693fb129b373862d69ae85c861049f0 (patch)
tree51405100b1691bee9043088a2d3e406ec85111af /src/select/select_config.py
parent20de9212123bd14efa8f1fd500765038be3851bf (diff)
downloadlibcss-d6e9f636d693fb129b373862d69ae85c861049f0.tar.gz
libcss-d6e9f636d693fb129b373862d69ae85c861049f0.tar.bz2
Add support for SVG fill-opacity property
https://www.w3.org/TR/SVGTiny12/painting.html#FillOpacityProperty This property is unique to SVG documents, but is otherwise analogous to the usual CSS "opacity" property.
Diffstat (limited to 'src/select/select_config.py')
-rw-r--r--src/select/select_config.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/select/select_config.py b/src/select/select_config.py
index fd9e765..5feed6c 100644
--- a/src/select/select_config.py
+++ b/src/select/select_config.py
@@ -95,6 +95,7 @@ style = {
('min_height', 2, 'length', 'CSS_MIN_HEIGHT_SET'),
('min_width', 2, 'length', 'CSS_MIN_WIDTH_SET'),
('opacity', 1, 'fixed', 'CSS_OPACITY_SET'),
+ ('fill_opacity', 1, 'fixed', 'CSS_FILL_OPACITY_SET'),
('order', 1, 'integer', 'CSS_ORDER_SET'),
('padding_top', 1, 'length', 'CSS_PADDING_SET'),
('padding_right', 1, 'length', 'CSS_PADDING_SET'),