From 874f77a6efcc5b92b4456570d1f4d4382b45b937 Mon Sep 17 00:00:00 2001 From: Joe Tretter Date: Fri, 8 May 2020 14:10:08 -0500 Subject: [PATCH] add spinners --- client/css/optiTrainer.css | 28 ++++++++++++++++++++++++++++ client/js/masterFilter.js | 25 ++++++++++++++++++++----- 2 files changed, 48 insertions(+), 5 deletions(-) diff --git a/client/css/optiTrainer.css b/client/css/optiTrainer.css index c23dbed..4650afe 100644 --- a/client/css/optiTrainer.css +++ b/client/css/optiTrainer.css @@ -192,6 +192,34 @@ body { cursor: copy; } +.spinner { + z-index:100; + position:absolute; + display:none +} + +#spinner-optionChain { + color:red; + top: 65px; + left: 305px; +} + +#spinner-symbol { + color:red; + left: 305; + top: 0; + margin-top: -20px; +} + +#spinner-time { + color:red; + left: 305px; + top: 20px; +} + +#spinner-date { + color:red; +} .table>tbody>tr>td, .table>tbody>tr>th, .table>tfoot>tr>td, .table>tfoot>tr>th, .table>thead>tr>td, .table>thead>tr>th { padding:0px; } diff --git a/client/js/masterFilter.js b/client/js/masterFilter.js index 2cf82e6..1f9bfbe 100644 --- a/client/js/masterFilter.js +++ b/client/js/masterFilter.js @@ -31,10 +31,19 @@ let createMasterFilterFrame=()=>{

-