mirror of
https://github.com/fleetdm/fleet
synced 2026-05-06 14:58:33 +00:00
Found one during testing of Entra Conditional Access and then ran https://github.com/crate-ci/typos to fix a few more. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **Bug Fixes** * Corrected various typographical errors in user-facing text, tooltips, table headers, and messages across the application to improve clarity and professionalism. * Fixed spelling mistakes in success and error messages, tooltips, and descriptive text on multiple pages. * Updated test setup to use the correct sort type value for CSV conversion tests. * Improved consistency in UI labels and documentation comments. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
26 lines
536 B
SCSS
26 lines
536 B
SCSS
.custom-link {
|
|
// Changing display will break multiline links
|
|
&:not(.custom-link--multiline) {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
gap: $pad-xsmall;
|
|
}
|
|
|
|
&__no-wrap {
|
|
white-space: nowrap;
|
|
.icon {
|
|
padding-left: 6px;
|
|
}
|
|
}
|
|
|
|
// Variants
|
|
&--tooltip-link,
|
|
&--banner-link,
|
|
&--flash-message-link {
|
|
color: inherit; // Overrides fleet blue link color with parent color
|
|
}
|
|
|
|
&--tooltip-link {
|
|
font-size: inherit; // Overrides link default font size with parent tooltip font size
|
|
}
|
|
}
|