From e6ea8d3441ef518d91b6cc440087c16ae6ca0626 Mon Sep 17 00:00:00 2001 From: "Eric A. Miller" Date: Tue, 5 Aug 2014 23:14:23 -0400 Subject: [PATCH] Add no wrap style and div clear --- Netdisco/share/public/css/netdisco.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Netdisco/share/public/css/netdisco.css b/Netdisco/share/public/css/netdisco.css index 8c6edcc1..b064e24b 100644 --- a/Netdisco/share/public/css/netdisco.css +++ b/Netdisco/share/public/css/netdisco.css @@ -160,6 +160,11 @@ div.content > div.tab-content table.nd_floatinghead thead { color: #404040; } +/* nowrap for port name and description columns */ +.nd_port-display { + white-space:nowrap; +} + /* nudge cell content to the right when port_control controls are enabled */ .nd_editable-cell > .nd_this-port-only { margin-left: 18px; @@ -653,3 +658,8 @@ form .clearfix.success input { } /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ + +/* Clear div for DataTables ColVis plugin */ +div.nd_clear-both { + clear:both; +}