Merge remote-tracking branch 'origin/master' into lab/modal-without-bottom-buttons

This commit is contained in:
Tessa Kelly 2019-10-10 10:34:48 -07:00
commit 78ff4ea5a6
4 changed files with 16 additions and 1 deletions

View File

@ -3,7 +3,7 @@
"name": "NoRedInk/noredink-ui",
"summary": "UI Widgets we use at NRI",
"license": "BSD-3-Clause",
"version": "7.4.0",
"version": "7.4.1",
"exposed-modules": [
"Nri.Ui",
"Nri.Ui.Alert.V2",

View File

@ -894,4 +894,9 @@ svgStyle =
[ RootAttr.style "fill" "currentColor"
, RootAttr.style "width" "100%"
, RootAttr.style "height" "100%"
-- don't allow SVG to capture pointer events. This means that we can use it
-- in links. See https://css-tricks.com/links-inline-svg-staying-target-events/
-- for more details.
, RootAttr.style "pointer-events" "none"
]

View File

@ -941,4 +941,9 @@ svgStyle =
[ RootAttr.style "fill" "currentColor"
, RootAttr.style "width" "100%"
, RootAttr.style "height" "100%"
-- don't allow SVG to capture pointer events. This means that we can use it
-- in links. See https://css-tricks.com/links-inline-svg-staying-target-events/
-- for more details.
, RootAttr.style "pointer-events" "none"
]

View File

@ -746,4 +746,9 @@ svgStyle =
[ RootAttr.style "fill" "currentColor"
, RootAttr.style "width" "100%"
, RootAttr.style "height" "100%"
-- don't allow SVG to capture pointer events. This means that we can use it
-- in links. See https://css-tricks.com/links-inline-svg-staying-target-events/
-- for more details.
, RootAttr.style "pointer-events" "none"
]