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:32:52 UTC

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

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

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

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

    remove wait cursor
    
    * remove wait cursor
    
    Issue: TOBAGO-2063
---
 tobago-core/npm/scss/_tobago.scss                           | 4 ----
 tobago-theme/tobago-theme-standard/npm/ts/tobago-overlay.ts | 3 +--
 2 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/tobago-core/npm/scss/_tobago.scss b/tobago-core/npm/scss/_tobago.scss
index 1b7fd32..7847094 100644
--- a/tobago-core/npm/scss/_tobago.scss
+++ b/tobago-core/npm/scss/_tobago.scss
@@ -729,10 +729,6 @@ tobago-page {
   opacity: 0.8;
 }
 
-.tobago-page-overlay-markup-wait {
-  cursor: wait;
-}
-
 .tobago-page-overlay-markup-error {
   cursor: default;
 }
diff --git a/tobago-theme/tobago-theme-standard/npm/ts/tobago-overlay.ts b/tobago-theme/tobago-theme-standard/npm/ts/tobago-overlay.ts
index de34fcc..b316fb0 100644
--- a/tobago-theme/tobago-theme-standard/npm/ts/tobago-overlay.ts
+++ b/tobago-theme/tobago-theme-standard/npm/ts/tobago-overlay.ts
@@ -76,8 +76,7 @@ export class Overlay {
 
     this.overlay = document.createElement("div");
     this.overlay.classList.add("tobago-page-overlay");
-    this.overlay.classList.add(
-        this.error ? "tobago-page-overlay-markup-error" : "tobago-page-overlay-markup-wait");
+    this.overlay.classList.add(this.error ? "tobago-page-overlay-markup-error" : null);
 
     let left = "0";
     let top = "0";