1) Added code for testing if an individual is an organization in IndividualTemplateModel.java

2) Couple of changes to the css of table in Temporal graph. -- in demo_table.css
3) Added section for temporal graph icon in individual.ftl
This commit is contained in:
bkoniden 2011-01-03 22:49:51 +00:00
parent 675adfab19
commit 4dac98f9c0
3 changed files with 70 additions and 29 deletions

View file

@ -4,13 +4,8 @@ thead th, tr.even td{
background-color: white;
}
.searchbar{
margin-bottom: 15px;
text-align: center;
}
.paginatedtabs{
border-top: 1px #3D454E solid;
/* border-top: 1px #3D454E solid; */
text-align: center;
margin-bottom: 10px;
padding-top: 10px;
@ -22,19 +17,64 @@ thead th, tr.even td{
cursor: pointer;
}
.datatablewrapper td, th{
border-bottom: 1px #3D454E solid;
border-right: 1px #3D454E solid;
border-left: 1px #3D454E solid;
text-align: left;
padding: 5px;
}
.showentries {
text-align: center;
margin-bottom: 10px;
}
.datatablewrapper td{
border-bottom: 1px #3D454E solid;
border-right: 1px #3D454E solid;
.searchbar{
margin-bottom: 15px;
text-align: left;
}
.datatablewrapper th{
border-top: 1px #3D454E solid;
}
/*
.datatablewrapper th{
border-top: 1px #3D454E solid;
border-bottom: 1px #3D454E solid;
border-right: 1px #3D454E solid;
padding: 5px;
}
}
*/
.sorting_asc {
background: url('sort_asc.png') no-repeat center right;
}
.sorting_desc {
background: url('sort_desc.png') no-repeat center right;
}
.sorting {
background: url('sort_both.png') no-repeat center right;
}
.sorting_asc_disabled {
background: url('sort_asc_disabled.png') no-repeat center right;
}
.sorting_desc_disabled {
background: url('sort_desc_disabled.png') no-repeat center right;
}
tr.odd {
background-color: #E2E4FF;
}
tr.even {
background-color: white;
}