From 1fa4dba7e8c58491b0c300054873c3f9204f2f26 Mon Sep 17 00:00:00 2001 From: "Eric A. Miller" Date: Wed, 11 Jun 2014 18:24:55 -0400 Subject: [PATCH] Add missing processing style to dataTables.bootstrap.css --- .../share/public/css/dataTables.bootstrap.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Netdisco/share/public/css/dataTables.bootstrap.css b/Netdisco/share/public/css/dataTables.bootstrap.css index bb011f5a..394b5c4c 100644 --- a/Netdisco/share/public/css/dataTables.bootstrap.css +++ b/Netdisco/share/public/css/dataTables.bootstrap.css @@ -203,3 +203,22 @@ div.DTFC_LeftFootWrapper table { border-top: none; } +div.dataTables_processing { + position: absolute; + top: 50%; + left: 50%; + width: 100%; + height: 40px; + margin-left: -50%; + margin-top: -25px; + padding-top: 20px; + text-align: center; + font-size: 1.2em; + background-color: white; + background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(255,255,255,0)), color-stop(25%, rgba(255,255,255,0.9)), color-stop(75%, rgba(255,255,255,0.9)), color-stop(100%, rgba(255,255,255,0))); + background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%); + background: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%); + background: -ms-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%); + background: -o-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%); + background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 25%, rgba(255,255,255,0.9) 75%, rgba(255,255,255,0) 100%); +}