Project

General

Profile

« Previous | Next » 

Revision 34264

change loading picture in search, add /openaire/claims in rooter.php for administrator page of claims, fixed blue print page of article

View differences:

modules/uoa-joomla/trunk/joomla-2.5.3/com_openaire/site/css/tabcontent1.css
1
ul.tabs {
2
	padding: 7px 0 0px 0px;
3
	font-size: 0;
4
	margin: 0;
5
	list-style-type: none;
6
	text-align: left; /*set to left, center, or right to align the tabs as desired*/
7
}
8

  
9
ul.tabs li {
10
	display: inline;
11
	margin: 0;
12
	margin-right: 3px; /*distance between tabs*/
13
}
14

  
15
ul.tabs li a {
16
	font: normal 12px Verdana;
17
	text-decoration: none;
18
	position: relative;
19
	z-index: 1;
20
	padding: 7px 16px;
21
	border: 1px solid #CCC;
22
	border-bottom-color: #B7B7B7;
23
	color: #2D72D6;
24
	background: #F0F0F0 url(../images/tabbg.gif) 0 0 repeat-x;
25
	border-radius: 2px 2px 0 0;
26
	outline: none;
27
	background: #F5F5F5;
28
	background: -moz-linear-gradient(top, #FAFAFA, #F5F5F5);
29
	background: -webkit-linear-gradient(top, #FAFAFA, #F5F5F5);
30
	background: -o-linear-gradient(top, #FAFAFA, #F5F5F5);
31
	background: linear-gradient(to bottom, #FAFAFA, #F5F5F5);
32
	border-radius: 5px 5px 0 0;
33
    	box-shadow: 0 1px 0 #fff inset;
34
    	text-shadow: 0 1px 0 #fff;
35
}
36

  
37
ul.tabs li a:visited {
38
	color: #000;
39
}
40

  
41
ul.tabs li a:hover {
42
	border: 1px solid #B7B7B7;
43
	background: #F0F0F0 url(../images/tabbg.gif) 0 -36px repeat-x;
44
	background: #f0f0f0;
45
	cursor:pointer;
46
	color: #EB652E;
47
}
48

  
49
ul.tabs li.selected a {
50
	/*selected tab style */
51
	position: relative;
52
	top: 0px;
53
	background: white;
54
	border: 1px solid #B7B7B7;
55
	border-bottom-color: white;
56
	color: #000;
57
	cursor: default;
58
}       
59

  
60
ul.tabs li.selected a:hover {
61
	/*selected tab style */
62
	text-decoration: none;
63
}
64

  
65
div.tabcontent {
66
	display: block;
67
}
68

  
69
div.tabcontents {
70
	border: 1px solid #B7B7B7;
71
	padding: 30px;
72
	background-color: #FFF;
73
	border-radius: 0 2px 2px 2px;
74
}
75

  
modules/uoa-joomla/trunk/joomla-2.5.3/com_openaire/site/css/tabcontent2.css
1
/* Tab Content - menucool.com */
2
ul.tabs
3
{
4
    padding: 6px 0;
5
    font-size: 0;
6
    margin:0;
7
    padding: 8px 0 0px 0px;
8
	font-size: 0;
9
	margin: 0;
10
	
11
    list-style-type: none;
12
    text-align: center; /*set to left, center, or right to align the tabs as desired*/
13
}
14
        
15
ul.tabs li
16
{
17
    display: inline;
18
    margin: 0;
19
    margin-right:4px; /*distance between tabs*/
20
}
21
        
22
ul.tabs li a
23
{
24
font: normal 12px OpenSansRegular;
25
	
26
    text-decoration: none;
27
    position: relative;
28
    padding: 7px 16px;
29
    border: 1px solid #B7B7B7;
30
    color: #000;
31
    background: #F7F7F7 url(tabbg2.gif) repeat-x 0 0;
32
    border-radius: 0px 0px 0 0;
33
    outline:none;
34
}
35
        
36
ul.tabs li a:visited
37
{
38
    color: #000;
39
}
40
        
41
ul.tabs li a:hover
42
{
43
    background:White url(tabbg.gif) repeat-x 0 0;
44
}
45
        
46
ul.tabs li.selected a, ul.tabs li.selected a:hover
47
{
48
    position: relative;
49
    top: 0px;
50
    font-weight:bold;
51
    background: white url(tabbg.gif) 0 0 repeat-x;
52
    border-bottom-color: white;
53
}
54
        
55
        
56
ul.tabs li.selected a:hover
57
{
58
    text-decoration: none;
59
}
60
   
61

  
62
div.tabcontents
63
{
64
    border-top: 1px solid #B7B7B7; padding:30px 16px;
65
}
modules/uoa-joomla/trunk/joomla-2.5.3/com_openaire/site/language/en-GB/en-GB.com_openaire.ini
358 358
CONCEPTS="Contexts"
359 359
CONCEPTS_="Contexts:"
360 360
PROJECT_NAME="Project name"
361
PROJECTS="projects"
362 361
PUBLICATION_DATE="Publication Date"
363 362
PUBLICATION_DATE_="Publication Date:"
364 363
PUBLICATION_DETAILS="Publication details"
modules/uoa-joomla/trunk/joomla-2.5.3/com_openaire/site/router.php
9 9
const ADVANCED = 'advanced';
10 10
const ALERTS = 'alerts';
11 11
const BROWSE = 'browse';
12
const CLAIMS = 'claims';
12 13
const COMMUNITIES = 'communities';
13 14
const DATASET = 'dataset';
14 15
const DATASETS = 'datasets';
......
20 21
const JOIN = 'join';
21 22
const LINK = 'link';
22 23
const MY_PROFILE = 'myProfile';
24
const OPENAIRE = 'openaire';
23 25
const ORGANIZATION = 'organization';
24 26
const ORGANIZATIONS = 'organizations';
25 27
const PARTICIPATE = 'participate';
......
191 193
			unset($query['Itemid']);			
192 194
			//JLog :: add('Built route ' . $initialQuery . ' into ' . print_r($segments, TRUE) . '', JLog :: INFO, LOG);
193 195
			return $segments;
196
		case 'claims':
197
			$segments[] = OPENAIRE;
198
			$segments[] = CLAIMS;
199
			unset($query['option']);
200
			unset($query['view']);
201
			unset($query['Itemid']);			
202
			//JLog :: add('Built route ' . $initialQuery . ' into ' . print_r($segments, TRUE) . '', JLog :: INFO, LOG);
203
			return $segments;	
194 204
		case 'data': // data is a raw view
195 205
			//JLog :: add('Ignoring route ' . $initialQuery . '', JLog :: INFO, LOG);
196 206
			return $segments;
modules/uoa-joomla/trunk/joomla-2.5.3/com_openaire/site/css/tooltip/tooltip1.css
1
/*Tooltip UI component by www.menucool.com */
1
/*Tooltip UI component by www.menucool.com */
2 2

  
3 3
/*For tooltip target element that has set class="tooltip" */
4 4
.tooltip {
......
91 91
	height: 0;
92 92
	overflow: hidden;
93 93
}
94

  
modules/uoa-joomla/trunk/joomla-2.5.3/com_openaire/site/views/dataset/tmpl/default.php
268 268
 
269 269
								if($harvestedRelatedDatasets!=null ){?>										 							
270 270
									<div class="section_harvested">
271
										<h5>
271
										<h4>
272 272
										<?php echo(JText :: _('HARVESTED_PUBLICATIONS')); ?> 
273
										</h5>	
273
										</h4>	
274 274
										<blockquote class="blockquote-nopad"><?php echo(JText :: _('HARVESTED_PUBLICATIONS_TECHNOLOGY')); ?></blockquote>		
275 275
										 <table width="100%" cellspacing="0" cellpadding="0" border="0" class=" display harvestedTable" id="harvestedTable">
276 276
											<thead>
......
303 303
								if($claimedRelatedDatasets!=null){?>									
304 304
								?>
305 305
									<div class="section_claimed">
306
										<h5>
306
										<h4>
307 307
										<?php echo(JText :: _('CLAIMED_PUBLICATIONS')); ?> 
308
										</h5>	
308
										</h4>	
309 309
											<blockquote class="blockquote-nopad"><?php echo(JText :: _('CLAIMED_PUBLICATIONS_TECHNOLOGY')); ?></blockquote>										
310 310
										<?php 
311 311
										if($claimedRelatedDatasets!=null){
......
343 343
								 if($inferredRelatedDatasets!=null ){?>									
344 344
								 
345 345
									<div class="section_inferred">
346
										<h5>
346
										<h4>
347 347
										<?php echo(JText :: _('INFERRED_PUBLICATIONS')); ?> 
348
										</h5>
348
										</h4>
349 349
										<blockquote class="blockquote-nopad"><?php echo(JText :: _('INFERRED_PUBLICATIONS_TECHNOLOGY')); ?></blockquote>																				 
350 350
										<table width="100%" cellspacing="0" cellpadding="0" border="0" class=" display inferredTable" id="inferredTable">
351 351
											<thead>
modules/uoa-joomla/trunk/joomla-2.5.3/com_openaire/site/views/search/tmpl/default.php
28 28
		<input type="hidden" id="user" value="<?php echo(JFactory :: getUser() -> email); ?>" />
29 29
		<input type="hidden" id="session" value="<?php echo(JFactory :: getSession() -> getId()); ?>" />
30 30
		<input type="hidden" id="locale" value="<?php echo(JFactory :: getLanguage() -> getTag()); ?>" />
31
		<img id="searching" src="./components/com_openaire/images/searching.gif" />
31
		<!--<img id="searching" src="./components/com_openaire/images/searching.gif" />-->
32
		<img id="searching" src="./components/com_openaire/images/spinner.gif" />
32 33
		<div id="browse" class="quickViewSelections">
33 34
			<h3><?php echo(JText :: _('AT_A_GLANCE')); ?></h3>
34 35
			<div id="publicationBrowse"></div>
modules/uoa-joomla/trunk/joomla-2.5.3/yoo_solar-1.0.1/styles/openaire/css/style.css
87 87
	padding: 15px 0px;
88 88
}
89 89
#top-c { padding: 5px 0; }
90
body { 
90
body.page { 
91 91
	background: #3440B5; 
92 92
}
93 93
#block-main { 
......
595 595
font-size: 16px;
596 596
color: #d4d4d4;
597 597
text-transform: uppercase;
598
}
598
}
modules/uoa-joomla/trunk/joomla-2.5.3/yoo_solar-1.0.1/css/tools.css
448 448
	border-color: #dce6be;
449 449
}
450 450

  
451
#errorMessage{
452
	clear:both;
453
}
451 454

  
452 455
/* Forms (Needed for System Markup)
453 456
----------------------------------------------------------------------------------------------------*/

Also available in: Unified diff