mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-21 11:37:21 -06:00
17117 change caret to html entity to fix safari performacne issue (#17246)
* change caret to html entity to fix safari performacne issue * change caret to html entity to fix safari performacne issue * 17117 use material icon * 17117 use material icon * 17117 use material icon * 17117 fix vertical align * Add comments & tweak padding --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
This commit is contained in:
parent
1d2ea90fd4
commit
35e2cf9cec
BIN
netbox/project-static/dist/netbox.css
vendored
BIN
netbox/project-static/dist/netbox.css
vendored
Binary file not shown.
@ -45,6 +45,19 @@ table a {
|
|||||||
background-color: rgba(var(--tblr-primary-rgb),.48)
|
background-color: rgba(var(--tblr-primary-rgb),.48)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Do not apply padding to <code> elements inside a <pre>
|
||||||
pre code {
|
pre code {
|
||||||
padding: unset;
|
padding: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Use an icon instead of Tabler's native "caret" for dropdowns (avoids a Safari bug)
|
||||||
|
.dropdown-toggle:after{
|
||||||
|
font-family: "Material Design Icons";
|
||||||
|
content: '\F0140';
|
||||||
|
padding-right: 9px;
|
||||||
|
border-bottom: none;
|
||||||
|
border-left: none;
|
||||||
|
transform: none;
|
||||||
|
vertical-align: .05em;
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user