Changeset 1319
- Timestamp:
- Dec 22, 2010, 5:53:49 PM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 1 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/application.properties
r1307 r1319 9 9 app.servlet.version=2.4 10 10 app.version=0.6.1 11 plugins.ajaxflow=0.1. 911 plugins.ajaxflow=0.1.10 12 12 plugins.crypto=2.0 13 13 plugins.db-util=0.4 -
trunk/grails-app/conf/BuildConfig.groovy
r1301 r1319 45 45 46 46 //grails.plugin.location.'grom' = '../grom' 47 //grails.plugin.location.'ajaxflow' = '../aja fFlow'47 //grails.plugin.location.'ajaxflow' = '../ajaxflow' 48 48 //grails.plugin.location.'jumpbar' = '../jumpbar' -
trunk/grails-app/views/studyWizard/common/_ajaxflow.gsp
r1294 r1319 13 13 %> 14 14 <div id="ajaxflow"> 15 <af:flow name="studyWizard" class="ajaxFlow" commons="common" partials="pages" controller="[controller: 'studyWizard', action: 'pages']" >15 <af:flow name="studyWizard" class="ajaxFlow" commons="common" partials="pages" controller="[controller: 'studyWizard', action: 'pages']" spinner="ajaxFlowWait"> 16 16 <% /** 17 17 * The initial rendering of this template will result … … 29 29 </div> 30 30 <g:render template="common/on_page"/> 31 <g:render template="common/please_wait"/> 31 32 -
trunk/web-app/css/ajaxflow.css
r1286 r1319 27 27 28 28 /** START :: TABS **/ 29 . tabs {29 .ajaxFlow .tabs { 30 30 display: block; 31 31 padding-bottom: 2px; … … 33 33 width: 100%; 34 34 } 35 . tabs ul {35 .ajaxFlow .tabs ul { 36 36 list-style-type: none; /* suppression of useless elements */ 37 37 padding: 0px; … … 43 43 width: 100%; 44 44 } 45 . tabs li {45 .ajaxFlow .tabs li { 46 46 float: left; 47 47 margin: 0px; … … 55 55 font-weight: bold; 56 56 } 57 . tabs li input {57 .ajaxFlow .tabs li input { 58 58 cursor: pointer; 59 59 color: #006DBA; … … 61 61 border: none; 62 62 } 63 . tabs li:last-child:after {63 .ajaxFlow .tabs li:last-child:after { 64 64 content: url('../images/ajaxflow/spacer.gif'); 65 65 } 66 . tabs li:first-child:before {66 .ajaxFlow .tabs li:first-child:before { 67 67 content: url('../images/ajaxflow/spacer.gif'); 68 68 } 69 . tabs li:before {69 .ajaxFlow .tabs li:before { 70 70 content:url(../images/ajaxflow/arrowR.gif); 71 71 position:inherit; … … 74 74 display:inline; 75 75 } 76 . tabs li:after {76 .ajaxFlow .tabs li:after { 77 77 content:url(../images/ajaxflow/arrowL.gif); 78 78 position:inherit; … … 81 81 display:inline; 82 82 } 83 . tabs .content {83 .ajaxFlow .tabs .content { 84 84 padding: 0px 10px 0px 10px; 85 85 display: inline; … … 88 88 line-height: 20px; 89 89 } 90 . tabs .active {90 .ajaxFlow .tabs .active { 91 91 background-color: #006DBA !important; 92 92 color: #fff !important; … … 95 95 96 96 /** START NAVIGATION **/ 97 . navigation {97 .ajaxFlow .navigation { 98 98 display: block; 99 99 padding-top: 2px; … … 104 104 } 105 105 106 . navigation .prevnext {106 .ajaxFlow .navigation .prevnext { 107 107 cursor: pointer; 108 108 color: #006DBA; … … 112 112 113 113 /** CONTENT STYLES **/ 114 . content {114 .ajaxFlow .content { 115 115 padding: 20px 0px 20px 0px; 116 116 } 117 117 118 . content p {118 .ajaxFlow .content p { 119 119 text-align: justify; 120 120 padding: 10px 0px 10px 0px; 121 121 } 122 122 123 . content a,.content a:visited {123 .ajaxFlow .content a, .ajaxFlow .content a:visited { 124 124 color: red; 125 125 text-decoration: none; … … 127 127 128 128 /** START :: buttons inside the ajaxflow **/ 129 . prevnext {129 .ajaxFlow .prevnext { 130 130 cursor: pointer; 131 131 color: #006DBA; … … 134 134 } 135 135 /** END :: buttons inside the ajaxflow **/ 136 137 /** START :: please wait **/ 138 .ajaxFlow .wait { } 139 .ajaxFlow .wait .title { 140 color: #006dba; 141 font-weight: normal; 142 font-size: 24px; 143 margin: .8em 0 .3em 0; 144 display: block; 145 width: 100%; 146 text-align: center; 147 } 148 .ajaxFlow .wait .spinner { 149 background: url(../images/ajaxflow/spinner-large.gif) no-repeat center top; 150 margin-top: 0px; 151 margin-bottom: 0px; 152 display: block; 153 width: 100%; 154 height: 48px; 155 } 156 /** END :: please wait **/
Note: See TracChangeset
for help on using the changeset viewer.