Revision 9a0d8393

b/snf-astakos-app/astakos/im/static/im/css/dropkick.css
14 14
/* dropkick select extra styles */
15 15

  
16 16
.form-row .dk_container							{ border-radius:0; margin-bottom:0; border: 1px solid gray; height: 21px; letter-spacing: 1px; line-height: 22px; margin-bottom: -1px; width:270px; padding:0.8em; padding-left:1.5em; font-weight:normal; font-family: 'Didact Gothic', Verdana, sans-serif; font-size:1em; background:transparent; border-color:#adadad;}
17
.form-row .dk_toggle  							{ border-radius:0;  padding:0 0 10px;  border:0 none;   text-decoration:none;background-image:url(../images/arrow-down_grey.png); background-position:75% 5px;}
18
.form-row .dk_toggle:hover						{ text-decoration:none; }
17
.form-row .dk_toggle  							{ border-radius:0;  padding:0 0 10px;  border:0 none;   text-decoration:none;background-image:url(../images/select-arrow-down_grey.png); background-position:75% 5px;}
18
.form-row .dk_toggle:hover						{ text-decoration:none; background-image:url(../images/select-arrow-down_yellow.png); background-position:75% 6px; }
19 19
.form-row .dk_open								{ background:transparent; box-shadow: none; }
20
.form-row .dk_open .dk_toggle					{ background-color:transparent; border:0 none; color:#000; box-shadow: none;}
20
.form-row .dk_open .dk_toggle					{ background-color:transparent; border:0 none; color:#000; box-shadow: none; background-image:url(../images/select-arrow-down_black.png); background-position:75% 6px;}
21 21
.form-row .dk_focus .dk_toggle					{ background-color:transparent;  border:0 none; color:#000; box-shadow: none;}
22 22
.1form-row .dk_options							{ display:block; }
23 23
.form-row .dk_options							{ box-shadow:none; border-radius:0; z-index:3; margin:6px -1px 0; width:auto; left:0;}
b/snf-astakos-app/astakos/im/static/im/css/forms.css
216 216
form .refresh.open p span.extra-img					{ background-position: -33px -161px; }
217 217
form .refresh.open input:hover + span.extra-img			{ background-position: -33px 0px; }
218 218
form .refresh.open p:hover span.extra-img:hover		{ background-position: -33px -54px; cursor:pointer; }
219
. hidden-form-rows									{ display:none; }
219
.hidden-form-rows									{ display:none; }
b/snf-astakos-app/astakos/im/static/im/css/modules.css
410 410
*/
411 411

  
412 412
.quotas-form input[type="submit"].lt			{ position:absolute; left:0; top:0; }
413
.quotas-form .form-row.submit .rt				{ position:absolute; right:0; top:25px; }
413

  
414
.form-row.submit .rt							{ position:absolute; right:70px;bottom:15px; }
415
.quotas-form .form-row.submit .rt				{ right:0; bottom:30px }
414 416
.quotas-form fieldset ul						{ padding:0; margin:0 0 1em; position:relative; }
415 417
.quotas-form fieldset ul li						{ list-style:none outside none; float:left; margin:0 0 0 60px; padding:0; }
416 418
.quotas-form fieldset ul li:first-child			{ margin-left:0; }
......
611 613
.content a:hover, 
612 614
.content a:active,
613 615
.content a:visited       { outline: 0 none; }
614
.content a:visited 		{ border:0 none; }
616
.content a:visited 		{ border:0 none; }
617

  
618
#hand											{ position:absolute; height:79px; width:61px; background:url(../images/xeraki_hover.png) no-repeat; overflow:hidden; display:none;  top:40px;}
b/snf-astakos-app/astakos/im/static/im/js/common.js
84 84
}
85 85
//end of fix
86 86

  
87
 
87 88
$(document).ready(function() {
88 89
	
89 90
	 
......
263 264
      }
264 265
	}, 100);
265 266
	
266
	 // clouds homepage animation
267
	/*
268
	addClassHover('.landing-page .pithos','.cloudbar ul.services li:first');
269
	addClassHover('.landing-page .cyclades','.cloudbar ul.services li:nth-child(2)');
270
	addClassHover('.landing-page .dashboard','.cloudbar .profile')
271
    */
267
	
268
	
269
	
270
	$('.landing-page .cms').hover(
271
      function () {
272
      	 el = $('.cloudbar ul.services li').first();
273
      	 var offset = el.offset();
274
      	 positionX = offset.left;
275
      	 $('#hand').css('left',positionX);  		 
276
         $('#hand').show();
277
      }, 
278
      function () {
279
      	$('#hand').hide();
280
    
281
    });  
282
    
283
    $('.landing-page .pithos').hover(
284
      function () {
285
      	 el = $('.cloudbar ul.services li:nth-child(2)');
286
      	 var offset = el.offset();
287
      	 positionX = offset.left;
288
      	 left = parseInt(positionX) +20;
289
      	 $('#hand').css('left',left+'px');  		 
290
         $('#hand').show();
291
      }, 
292
      function () {
293
      	$('#hand').hide();
294
    
295
    });  
296
    
297
    $('.landing-page .cyclades').hover(
298
      function () {
299
      	 el = $('.cloudbar ul.services li:nth-child(3)').first();
300
      	 var offset = el.offset();
301
      	 positionX = offset.left;
302
      	 left = parseInt(positionX) +20;
303
      	 $('#hand').css('left',left+'px');  		 
304
         $('#hand').show();
305
      }, 
306
      function () {
307
      	$('#hand').hide();
308
    
309
    });  
310
    
311
    
312
    $('.landing-page .dashboard').hover(
313
      function () {
314
      	 el = $('.cloudbar .profile');
315
      	 var offset = el.offset();
316
      	 positionX = offset.left +50;
317
      	 $('#hand').css('left',positionX);  		 
318
         $('#hand').show();
319
      }, 
320
      function () {
321
      	$('#hand').hide();
322
    
323
    });  
324
	  
325
	  
326
     
272 327
	 
273 328
	    
274 329
});
b/snf-astakos-app/astakos/im/templates/im/auth/signup_form.html
14 14
      <div class="form-row submit">
15 15
          
16 16
          <input type="submit" class="submit altcol" value="SUBMIT" />
17
           
17
          	{% if third_party_token %}
18
				<a href={%url index %} class="rt-link">CANCEL</a>
19
			{% endif %}
18 20
      </div>
19 21
  </form>
20 22
</div>
b/snf-astakos-app/astakos/im/templates/im/landing.html
45 45
 
46 46
		</div>
47 47
	</div>
48
</div> 	
48
</div>
49
<script type="text/javascript">
50
	$(document).ready(function() {
51
		$('body').append('<div id="hand">&nbsp;</div>');
52
	});
53
</script>	
49 54
{% endblock %}
b/snf-astakos-app/astakos/im/templates/im/signup.html
44 44
</div>
45 45
{% else %}
46 46

  
47
<p>Hello, it seems this is the first time you try to <br>taccess the service.
47
<p>Hello, it seems this is the first time you try to <br>access the service.
48 48
Please provide us with the<br> following information to complete your
49 49
registration process. <br><br></p>
50 50

  

Also available in: Unified diff