From c1cd42f0f1ecbd30683cb8b44537e913a512485d Mon Sep 17 00:00:00 2001 From: mindless Date: Tue, 11 May 2010 17:17:45 +0000 Subject: [PATCH] [FIXED HUDSON-6496] use more specific css class name.. "loading" conflicted with YUI, causing missing data display in analysis plugins, using yui tabview. git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@30918 71c3de6d-444a-0410-be80-ed276b4c234a --- core/src/main/resources/hudson/model/Hudson/configure.jelly | 2 +- core/src/main/resources/hudson/model/Job/configure.jelly | 2 +- war/resources/css/style.css | 2 +- war/resources/scripts/hudson-behavior.js | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/resources/hudson/model/Hudson/configure.jelly b/core/src/main/resources/hudson/model/Hudson/configure.jelly index f4179765f1..6291ea4b90 100644 --- a/core/src/main/resources/hudson/model/Hudson/configure.jelly +++ b/core/src/main/resources/hudson/model/Hudson/configure.jelly @@ -30,7 +30,7 @@ THE SOFTWARE. -
${%LOADING}
+
${%LOADING}
diff --git a/core/src/main/resources/hudson/model/Job/configure.jelly b/core/src/main/resources/hudson/model/Job/configure.jelly index 5fb4c26fca..30bbc21778 100644 --- a/core/src/main/resources/hudson/model/Job/configure.jelly +++ b/core/src/main/resources/hudson/model/Job/configure.jelly @@ -29,7 +29,7 @@ THE SOFTWARE. -
${%LOADING}
+
${%LOADING}
diff --git a/war/resources/css/style.css b/war/resources/css/style.css index e931b1938a..7185044654 100644 --- a/war/resources/css/style.css +++ b/war/resources/css/style.css @@ -432,7 +432,7 @@ th.pane { color: white; } -.loading { +div.behavior-loading { position: absolute; width: 80%; height:100%; background-color: #e4e4e4; text-align: center; font-size: 300%; opacity: 0.5; diff --git a/war/resources/scripts/hudson-behavior.js b/war/resources/scripts/hudson-behavior.js index 9eefa198b9..d188b50af2 100644 --- a/war/resources/scripts/hudson-behavior.js +++ b/war/resources/scripts/hudson-behavior.js @@ -939,7 +939,7 @@ var hudsonRules = { e = null; // avoid memory leak }, - "DIV.loading" : function(e) { e.style.display = 'none' } + "DIV.behavior-loading" : function(e) { e.style.display = 'none' } }; function applyTooltip(e,text) { -- GitLab