mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Fleet UI: Icon classname now global styled (non-released bug) (#8367)
This commit is contained in:
parent
ed174c4847
commit
c6dce1a0b9
5 changed files with 5 additions and 17 deletions
|
|
@ -82,11 +82,7 @@ const Agents = ({
|
|||
rel="noopener noreferrer"
|
||||
>
|
||||
Learn more about agent options
|
||||
<img
|
||||
className="icon"
|
||||
src={ExternalLinkIcon}
|
||||
alt="Open external link"
|
||||
/>
|
||||
<img src={ExternalLinkIcon} alt="Open external link" />
|
||||
</a>
|
||||
</p>
|
||||
{isPremiumTier ? (
|
||||
|
|
|
|||
|
|
@ -91,11 +91,7 @@ const FleetDesktop = ({
|
|||
rel="noopener noreferrer"
|
||||
>
|
||||
https://fleetdm.com/transparency
|
||||
<img
|
||||
className="icon"
|
||||
src={ExternalLinkIcon}
|
||||
alt="Open external link"
|
||||
/>
|
||||
<img src={ExternalLinkIcon} alt="Open external link" />
|
||||
</a>{" "}
|
||||
. You can override the URL to take them to a resource of your
|
||||
choice.
|
||||
|
|
|
|||
|
|
@ -101,11 +101,7 @@ const Statistics = ({
|
|||
rel="noopener noreferrer"
|
||||
>
|
||||
Learn more about usage statistics
|
||||
<img
|
||||
className="icon"
|
||||
src={ExternalLinkIcon}
|
||||
alt="Open external link"
|
||||
/>
|
||||
<img src={ExternalLinkIcon} alt="Open external link" />
|
||||
</a>
|
||||
</p>
|
||||
<div className={`${baseClass}__inputs ${baseClass}__inputs--usage`}>
|
||||
|
|
|
|||
|
|
@ -35,7 +35,7 @@ const InfoModal = ({ onCancel }: IInfoModalProps): JSX.Element => {
|
|||
<span className="no-wrap">
|
||||
transparency
|
||||
<img
|
||||
className="icon"
|
||||
className="external-link-icon"
|
||||
src={ExternalLinkIcon}
|
||||
alt="Open external link"
|
||||
/>
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@
|
|||
flex-direction: column;
|
||||
}
|
||||
|
||||
a img.icon {
|
||||
a img.external-link-icon {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
margin-left: 0.25rem;
|
||||
|
|
|
|||
Loading…
Reference in a new issue