1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixed double top border on component template tables

This commit is contained in:
Jeremy Stretch
2016-06-24 12:56:36 -04:00
parent 4cbf09e0e1
commit 0b66b547a3
3 changed files with 15 additions and 11 deletions

View File

@@ -145,7 +145,7 @@ class ConsolePortTemplateTable(tables.Table):
empty_text = "None"
show_header = False
attrs = {
'class': 'table table-hover panel-body',
'class': 'table table-hover',
}
@@ -158,7 +158,7 @@ class ConsoleServerPortTemplateTable(tables.Table):
empty_text = "None"
show_header = False
attrs = {
'class': 'table table-hover panel-body',
'class': 'table table-hover',
}
@@ -171,7 +171,7 @@ class PowerPortTemplateTable(tables.Table):
empty_text = "None"
show_header = False
attrs = {
'class': 'table table-hover panel-body',
'class': 'table table-hover',
}
@@ -184,7 +184,7 @@ class PowerOutletTemplateTable(tables.Table):
empty_text = "None"
show_header = False
attrs = {
'class': 'table table-hover panel-body',
'class': 'table table-hover',
}