You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by we...@apache.org on 2021/03/09 13:26:57 UTC

[myfaces-tobago] 10/13: remove wait cursor

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

weber pushed a commit to branch TOBAGO-1999_Select2
in repository https://gitbox.apache.org/repos/asf/myfaces-tobago.git

commit b80d6b706dda4d448b8faccb9a0463a5764c0591
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 bdd7a09..57d5d9f 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());