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.
pull/20/merge
Allan Jardine 12 years ago
parent e6f7798908
commit bca8c3503c

@ -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 */

Loading…
Cancel
Save