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:56 UTC

[myfaces-tobago] branch tobago-2.x updated: remove wait cursor

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

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


The following commit(s) were added to refs/heads/tobago-2.x by this push:
     new b1dc26b  remove wait cursor
b1dc26b is described below

commit b1dc26b14fc01cb27651583fa517655a867b4eb8
Author: Henning Noeth <hn...@apache.org>
AuthorDate: Fri Jan 22 14:35:52 2021 +0100

    remove wait cursor
    
    * remove .tobago-page-overlay-markup-wait
    
    Issue: Tobago-2063
---
 .../tobago/renderkit/html/scarborough/standard/style/tobago.css       | 4 ----
 .../tobago/renderkit/html/standard/standard/script/tobago-overlay.js  | 2 --
 2 files changed, 6 deletions(-)

diff --git a/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/tobago.css b/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/tobago.css
index e8c6b6d..412a572 100644
--- a/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/tobago.css
+++ b/tobago-theme/tobago-theme-scarborough/src/main/resources/org/apache/myfaces/tobago/renderkit/html/scarborough/standard/style/tobago.css
@@ -685,10 +685,6 @@ li.tobago-menu-markup-selected {
   z-index: 10000;
 }
 
-.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/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-overlay.js b/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-overlay.js
index a2b10f5..3fc12ca 100644
--- a/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/tobago-overlay.js
+++ b/tobago-theme/tobago-theme-standard/src/main/resources/org/apache/myfaces/tobago/renderkit/html/standard/standard/script/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");
       }
 
       this.overlay.outerWidth(this.element.outerWidth());