Skip to content

Commit 0824670

Browse files
Fix: pfe-cta should not render arrow if priority attribute is present (#686)
Co-authored-by: Kendall Totten <[email protected]>
1 parent 5d19adf commit 0824670

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

CHANGELOG-prerelease.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Prerelease 36 ( TBD )
2+
3+
Tag: [v1.0.0-prerelease.36](https://github.com/patternfly/patternfly-elements/releases/tag/v1.0.0-prerelease.36)
4+
5+
- [](https://github.com/patternfly/patternfly-elements/commit/) fix: arrow from rendering on nav priority cta's when on iOS 12>
6+
17
## Prerelease 35 ( 2020-01-17 )
28

39
Tag: [v1.0.0-prerelease.35](https://github.com/patternfly/patternfly-elements/releases/tag/v1.0.0-prerelease.35)

elements/pfe-cta/src/pfe-cta.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,11 @@ $variables: (
162162
}
163163
}
164164

165+
// Set svg to none so it won't render in nav on iOS versions 12>
166+
:host([pfe-priority]) svg {
167+
display:none;
168+
}
169+
165170

166171
:host([pfe-priority]) {
167172
--pfe-cta--Padding: #{pfe-var(container-padding)} calc(#{pfe-var(container-padding)} * 2);

0 commit comments

Comments
 (0)