浏览代码

#6797: Fix Safari anchor element styling issue

checktheroads 4 年之前
父节点
当前提交
a60e8d3e12

文件差异内容过多而无法显示
+ 0 - 0
netbox/project-static/dist/netbox-dark.css


文件差异内容过多而无法显示
+ 0 - 0
netbox/project-static/dist/netbox-light.css


+ 5 - 0
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;

部分文件因为文件数量过多而无法显示