You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by hn...@apache.org on 2021/01/22 14:31:19 UTC

[myfaces-tobago] 02/03: remove wait cursor

This is an automated email from the ASF dual-hosted git repository.

hnoeth pushed a commit to branch tobago-4.x
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit 70bf249552e820a65cf536514863ab8c1c0656a2
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Fri Jan 22 13:49:29 2021 +0100

    remove wait cursor
    
    * remove .tobago-page-overlay-markup-wait
    
    Issue: TOBAGO-2063
---
 tobago-core/src/main/resources/scss/_tobago.scss                      | 4 ----
 .../tobago/standard/tobago-bootstrap/_version/js/tobago-overlay.js    | 2 --
 2 files changed, 6 deletions(-)

diff --git a/tobago-core/src/main/resources/scss/_tobago.scss b/tobago-core/src/main/resources/scss/_tobago.scss
index 54c6ee1..aac69fd 100644
--- a/tobago-core/src/main/resources/scss/_tobago.scss
+++ b/tobago-core/src/main/resources/scss/_tobago.scss
@@ -705,10 +705,6 @@ span.tobago-out:empty:before {
   z-index: 500; /* less than the bootstrap navbar */
 }
 
-.tobago-page-overlay-markup-wait {
-  cursor: wait;
-}
-
 .tobago-page-overlay-markup-error {
   cursor: default;
 }
diff --git a/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-overlay.js b/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-overlay.js
index 2134d11..c9eac20 100644
--- a/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-overlay.js
+++ b/tobago-theme/tobago-theme-standard/src/main/resources/META-INF/resources/tobago/standard/tobago-bootstrap/_version/js/tobago-overlay.js
@@ -52,8 +52,6 @@ Tobago.Config.set("Ajax", "waitOverlayDelay", 1000);
       this.overlay = jQuery("<div>").addClass("tobago-page-overlay");
       if (this.options.error) {
         this.overlay.addClass("tobago-page-overlay-markup-error");
-      } else {
-        this.overlay.addClass("tobago-page-overlay-markup-wait");
       }
 
       var overlayOffset = {};