Skip to content

Commit 8ab9afb

Browse files
Fixes: netbox-community#16083 - Add font-variant-ligatures setting to disable ligatur… (netbox-community#16383)
* Fixes: netbox-community#16083 - Add font-variant-ligatures setting to disable ligatures on chromium * Fix comment * Disable ligatures on input fields * Condense rules & apply to all elements --------- Co-authored-by: Jeremy Stretch <[email protected]>
1 parent 7be003f commit 8ab9afb

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

netbox/project-static/dist/netbox.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

netbox/project-static/styles/overrides/_tabler.scss

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
// Disable font-ligatures for Chromium based browsers
2+
// Chromium requires `font-variant-ligatures: none` in addition to `font-feature-settings "liga" 0`
3+
* {
4+
font-feature-settings: "liga" 0;
5+
font-variant-ligatures: none;
6+
}
7+
18
// Restore default foreground & background colors for <pre> blocks
29
pre {
310
background-color: transparent;

0 commit comments

Comments
 (0)