mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-09 00:58:16 -06:00
Hide search panel and tags panel in print
Add CSS ID for search and tags panels and hide in media `@print`. Issue: #2435 Signed-off-by: Bernhard Bock <bernhard@bock.nu> (github: bbock)
This commit is contained in:
parent
f1b50fe12f
commit
68a269b266
@ -451,4 +451,10 @@ textarea {
|
||||
.sub-header {
|
||||
display: none;
|
||||
}
|
||||
#panel-search {
|
||||
display: none;
|
||||
}
|
||||
#panel-tags {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{% load form_helpers %}
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel panel-default" id="panel-search">
|
||||
<div class="panel-heading">
|
||||
<span class="fa fa-search" aria-hidden="true"></span>
|
||||
<strong>Search</strong>
|
||||
|
@ -1,6 +1,6 @@
|
||||
{% load helpers %}
|
||||
|
||||
<div class="panel panel-default">
|
||||
<div class="panel panel-default" id="panel-tags">
|
||||
<div class="panel-heading">
|
||||
<span class="fa fa-tags" aria-hidden="true"></span>
|
||||
<strong>Tags</strong>
|
||||
|
Loading…
Reference in New Issue
Block a user