Markup cleanup, style tweaks and some refactoring of the home page for Wilma. Turns out that all requests for tabs were being routed to the new HomePageController since it had "/index.jsp" set as its url-pattern under the servlet-mapping in web.xml. This isn't going to work as it made every tab render using page-home.ftl. Restored TabController servlet mapping in web.xml temporarily and will discuss potential solutions with Rebecca. NIHVIVO-556 NIHVIVO-1234

This commit is contained in:
nac26 2010-10-27 13:21:55 +00:00
parent 10c352dbf9
commit f7517ba34d
13 changed files with 1103 additions and 892 deletions

View file

@ -190,7 +190,8 @@ img.screenshot {
float: left;
display: inline;
height: 19px;
line-height:19px;
line-height:19px;
font-size: 0.75em;
padding: 5px 16px 0 0;
background: url(../images/transition/individual/grouping/h3_tab_right.gif) right top no-repeat;
color:#fff;
@ -257,6 +258,7 @@ img.screenshot {
#personWrap div.propsItem h4 {
margin-bottom: 1.25em;
margin-left: -16px;
font-size: 0.8em;
}
#personWrap ul.properties {
@ -475,6 +477,8 @@ ul.keywords li {
#personWrap a.add, #personWrap a.edit, #personWrap a.delete {
color: #209ae0;
text-decoration: underline;
height: 0.8em;
line-height: 0.8em;
}
#personWrap a.add:hover, #personWrap a.edit:hover, #personWrap a.delete:hover,

File diff suppressed because it is too large Load diff

View file

@ -231,6 +231,7 @@ div#labelAndMoniker { margin-bottom: 1.5em; }
#label h3 {
display: inline;
padding-right: 6px;
font-size: 1.7em;
}
em.moniker {
@ -268,7 +269,7 @@ div.description { margin-bottom: 1.5em; }
.propertyName,
.propsItem h4 {
font-size: 1em;
font-size: 0.8em;
line-height: 1em;
color: #666;
background: #ebebeb;
@ -654,7 +655,8 @@ ul.properties li {
div.datatypePropertyValue,
ul.properties li,
ul.datatypePropertyValue li {
position: relative;
position: relative;
font-size: 0.7em;
}

View file

@ -22,3 +22,4 @@ VIVO theme: screen styles
@import url("individual.css");
@import url("forms.css");
@import url("formedit.css");
@import url("../../../css/login.css"); /* this is here temporarily as we transition to freemarker - something is up with adding stylesheets ever since the body template was adjusted last week*/