Skip to content

Commit

Permalink
Update callout styles and tooltip noopener
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0ttkclark committed Aug 5, 2023
1 parent 38fee15 commit 18575ea
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/js/dfv/src/components/help-tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const HelpTooltip = ( {
zIndex={ 100001 }
interactive
content={ helpLink ? (
<a href={ helpLink } target="_blank" rel="noreferrer">
<a href={ helpLink } target="_blank" rel="noopener noreferrer">
<span
dangerouslySetInnerHTML={ {
__html: sanitizeHtml( helpText, richTextInlineOnly ),
Expand Down
12 changes: 11 additions & 1 deletion ui/styles/src/base/_admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ body[class*="settings_page_pods-"] {
transition: 300ms ease background-color;
border-radius: 100%;

&:hover {
&:hover, &.pods-admin_friends-callout_close__no_image {
background-color: #85ab33;
cursor: pointer;
}
Expand Down Expand Up @@ -816,3 +816,13 @@ body[class*="settings_page_pods-"] {
margin-bottom: 10px;
}
}

ul.pods-ul-normal {
list-style: disc;
li {
margin: 0 0 8px 30px;
padding-left: 4px;
line-height: 22px;
list-style: disc;
}
}

0 comments on commit 18575ea

Please sign in to comment.