Changeset 1333
- Timestamp:
- Jan 5, 2011, 1:31:21 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r1329 r1333 1 1 #Grails Metadata file 2 # Tue Jan 04 13:44:33CET 20112 #Wed Jan 05 13:27:00 CET 2011 3 3 app.build.display.info=0 4 4 app.build.svn.revision=1079 … … 9 9 app.servlet.version=2.4 10 10 app.version=0.6.1 11 plugins.ajaxflow=0.1.1 011 plugins.ajaxflow=0.1.12 12 12 plugins.crypto=2.0 13 13 plugins.db-util=0.4 … … 17 17 plugins.jquery=1.4.4 18 18 plugins.jumpbar=0.1.4 19 plugins.mail= 1.0-SNAPSHOT19 plugins.mail=0.9 20 20 plugins.oauth=0.10 21 21 plugins.searchable=0.5.5.1 -
trunk/grails-app/conf/Config.groovy
r1330 r1333 243 243 grails.views.javascript.library = "jquery" 244 244 245 // see http://jira.codehaus.org/browse/GRAILSPLUGINS-2711 246 jquery.version = "1.4.4" 247 245 248 // Needed for the Spring Security Core plugin: 246 249 grails.plugins.springsecurity.userLookup.userDomainClassName = 'dbnp.authentication.SecUser' … … 287 290 } 288 291 } 289 290 // see http://jira.codehaus.org/browse/GRAILSPLUGINS-2711291 jquery.version = "1.4.4" -
trunk/grails-app/views/studyWizard/common/_please_wait.gsp
r1319 r1333 16 16 %> 17 17 <div id="ajaxFlowWait" class="ajaxFlow" style="display:none;"> 18 <span class="wait"> 19 <span class="title">Please Wait...</span> 20 <span class="spinner"></span> 18 <span class="waitBackground"></span> 19 <span class="waiter"> 20 <span class="wait"> 21 <span class="title">Please Wait...</span> 22 <span class="spinner"></span> 23 </span> 21 24 </span> 22 25 </div> -
trunk/web-app/css/ajaxflow.css
r1319 r1333 136 136 137 137 /** START :: please wait **/ 138 .ajaxFlow .wait { } 139 .ajaxFlow .wait .title { 138 .ajaxFlow .waitBackground { 139 background-color: black; 140 width: 100%; 141 height: 100%; 142 position: fixed; 143 z-index: 100000; 144 top: 0px; 145 left: 0px; 146 147 filter: alpha(opacity:0.6); 148 KHTMLOpacity: 0.6; 149 MozOpacity: 0.6; 150 -khtml-opacity:.60; 151 -ms-filter:"alpha(opacity=60)"; 152 -moz-opacity:.60; 153 filter:alpha(opacity=60); 154 opacity:.60; 155 } 156 157 .ajaxFlow .waiter { 158 width: 100%; 159 height: 100%; 160 position: fixed; 161 z-index: 100001; 162 top: 0px; 163 left: 0px; 164 } 165 166 .ajaxFlow .waiter .wait { 167 display: inline-block; 168 zoom: 1; /* IE 6 & 7 hack */ 169 *display: inline; /* IE 6 & 7 hack */ 170 width: 100%; 171 position:relative; 172 top: 40%; 173 left: 25%; 174 width: 50%; 175 height: 100px; 176 background-color: white; 177 z-index: 100001; 178 -moz-border-radius: 15px; 179 border-radius: 15px; 180 } 181 .ajaxFlow .waiter .wait .title { 140 182 color: #006dba; 141 183 font-weight: normal; 142 184 font-size: 24px; 143 185 margin: .8em 0 .3em 0; 144 display: block; 186 display: inline-block; 187 zoom: 1; /* IE 6 & 7 hack */ 188 *display: inline; /* IE 6 & 7 hack */ 145 189 width: 100%; 146 190 text-align: center; 147 191 } 148 .ajaxFlow .wait .spinner {149 background: url(../images/ajaxflow/ spinner-large.gif) no-repeat center top;192 .ajaxFlow .waiter .wait .spinner { 193 background: url(../images/ajaxflow/ajax-loader.gif) no-repeat center top; 150 194 margin-top: 0px; 151 195 margin-bottom: 0px;
Note: See TracChangeset
for help on using the changeset viewer.