Fix: Bootstrap 3 display for TableTools' info box

Fixes #58
pull/80/merge
Allan Jardine 10 years ago
parent 1d6836cd79
commit 0415b8664c

@ -186,10 +186,25 @@ div.DTTT_collection_background {
} }
/* TableTools information display */ /* TableTools information display */
div.DTTT_print_info.modal { div.DTTT_print_info {
position: fixed;
top: 50%;
left: 50%;
width: 400px;
height: 150px; height: 150px;
margin-left: -200px;
margin-top: -75px; margin-top: -75px;
text-align: center; text-align: center;
color: #333;
padding: 10px 30px;
opacity: 0.95;
background-color: white;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 6px;
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
} }
div.DTTT_print_info h6 { div.DTTT_print_info h6 {

@ -148,7 +148,7 @@ if ( DataTable.TableTools ) {
} }
}, },
"print": { "print": {
"info": "DTTT_print_info modal" "info": "DTTT_print_info"
}, },
"select": { "select": {
"row": "active" "row": "active"

Loading…
Cancel
Save