From a60e8d3e12e779211d8b4f8b10d44044d79e77a9 Mon Sep 17 00:00:00 2001 From: checktheroads Date: Sat, 24 Jul 2021 01:07:53 -0700 Subject: [PATCH] #6797: Fix Safari anchor element styling issue --- netbox/project-static/dist/netbox-dark.css | Bin 693252 -> 693336 bytes netbox/project-static/dist/netbox-light.css | Bin 398671 -> 398721 bytes netbox/project-static/styles/netbox.scss | 5 +++++ 3 files changed, 5 insertions(+) diff --git a/netbox/project-static/dist/netbox-dark.css b/netbox/project-static/dist/netbox-dark.css index 561c0409c73228c26d53ce946f39239f9e09d2d7..c3c15dde361e69a7aa0370694ef14606c541c10b 100644 GIT binary patch delta 84 zcmZo!p><=0RznM83sVbo3rh=Y3tJ0&3r7p*7A|RVwZ!O>%7Rqeq|%a-{Jhv|-SX6= o?939~#Dap<#G=H!3sVbo3(FQ(*F%Ph(Iu4yskTX_B_;WJvDLcesY%(HCAx_P1*wTe fiFwJXR;78xsU?b;xdr(}C5d?@+g%Q^at8wdP%#|{ delta 25 hcmZo%EpdL8L_-T>3sVbo3(FQ(*F)RO53zCu0|0_H34#Cs diff --git a/netbox/project-static/styles/netbox.scss b/netbox/project-static/styles/netbox.scss index 90870f7dd..1b326266c 100644 --- a/netbox/project-static/styles/netbox.scss +++ b/netbox/project-static/styles/netbox.scss @@ -119,6 +119,11 @@ } } +// Fix the hideous way Safari shows button anchor elements. +a[type='button'] { + -webkit-appearance: unset !important; +} + // Ensure progress bars (utilization graph) in tables aren't too narrow to display the percentage. table td > .progress { min-width: 6rem;