From bca8c3503c4b27759b5a6f48bdc0c148cfc89fbb Mon Sep 17 00:00:00 2001 From: Allan Jardine Date: Mon, 3 Jun 2013 14:16:57 +0100 Subject: [PATCH] Fix thread 15450 - TableTools collection button can spawn multiple backgrounds - Due to a z-indexing error, the background element could actually be created multiple times by clicking on the element without moving the mouse. Adding a z-index statement fixes this. --- integration/bootstrap/dataTables.bootstrap.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/integration/bootstrap/dataTables.bootstrap.css b/integration/bootstrap/dataTables.bootstrap.css index fc3dfbd..a70f3b5 100644 --- a/integration/bootstrap/dataTables.bootstrap.css +++ b/integration/bootstrap/dataTables.bootstrap.css @@ -110,6 +110,9 @@ div.DTTT .btn:hover { text-decoration: none !important; } +ul.DTTT_dropdown.dropdown-menu { + z-index: 2003; +} ul.DTTT_dropdown.dropdown-menu a { color: #333 !important; /* needed only when demo_page.css is included */