From 9c6938e7ae8e85d83d34f1b4b10145b4f629bc86 Mon Sep 17 00:00:00 2001 From: thatmattlove Date: Fri, 15 Oct 2021 17:45:47 -0700 Subject: [PATCH] Minor Style Improvement: Fix interface table dropdowns being hidden when opened --- netbox/project-static/dist/netbox-dark.css | Bin 788707 -> 788776 bytes netbox/project-static/dist/netbox-light.css | Bin 493565 -> 493600 bytes netbox/project-static/dist/netbox-print.css | Bin 1623301 -> 1623462 bytes netbox/project-static/styles/netbox.scss | 8 +++++++- 4 files changed, 7 insertions(+), 1 deletion(-) diff --git a/netbox/project-static/dist/netbox-dark.css b/netbox/project-static/dist/netbox-dark.css index 4bdce502af23e8d6896603b8f092ac2ba0aec533..b06cca0a11d640e5d728a81d25e0745825aa204a 100644 GIT binary patch delta 59 zcmaDn(O|_SgN7Ey7N!>F7M2#)7Pc1l7LFFq7OpMaYo>9hDCngW8xsgN7Ey7N!>F7M2#)7Pc1l7LFFq7OpMaYo=}gIE~x92ml8c4dDO) diff --git a/netbox/project-static/dist/netbox-light.css b/netbox/project-static/dist/netbox-light.css index 2c5aa81f04fc95fb043f2fe60980ed77e0c7c1b3..cf06883a981bf8a07b403e0a852b2a0a12b620af 100644 GIT binary patch delta 57 zcmey{FSlTVTtf?E3sVbo3rh=Y3)>d<7;EVi1-+D_{DPGH^1SMT{Nl`#%=|p7;*!LY M%;fDM*6b^N09=9d<80+oz*6a&?0Hys3T>t<8 diff --git a/netbox/project-static/dist/netbox-print.css b/netbox/project-static/dist/netbox-print.css index 741f7ea7431acdaa8bc82267f975768d3aae91c4..7e565c3d5be6b900a59495cd008ed04c0bad79ad 100644 GIT binary patch delta 111 zcmZqeN?z8T+|a_vzBG4k(BGe+>BGMw- zBDO_*_g%)6>2tlf)h9PNu}^P!EY1eu>rHnElVImgQP4{%$}dRCFVCC4UvzBG4k(BGe+>BGMw- RBDO_*_ucI=_r$%P0|0wx6?gyu diff --git a/netbox/project-static/styles/netbox.scss b/netbox/project-static/styles/netbox.scss index bd081f569..8ce526985 100644 --- a/netbox/project-static/styles/netbox.scss +++ b/netbox/project-static/styles/netbox.scss @@ -197,9 +197,15 @@ table { text-decoration: underline; } } + .dropdown { + // Presence of 'overflow: scroll' on a table causes dropdowns to be improperly hidden when + // opened. See: https://github.com/twbs/bootstrap/issues/24251 + position: static; + } } th { - a, a:hover { + a, + a:hover { color: $body-color; text-decoration: none; }