Skip to content

Commit

Permalink
Merge pull request #114 from OpenDevelopmentMekong/impl-110
Browse files Browse the repository at this point in the history
Add new class for table to fix issue #110
  • Loading branch information
Huyeng authored Dec 23, 2016
2 parents c467f30 + a617835 commit e5d58d3
Showing 1 changed file with 21 additions and 3 deletions.
24 changes: 21 additions & 3 deletions css/profile-pages.css
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ table.dataTable thead .sorting_desc_disabled {
display: inline-block;
margin-bottom: 0;
max-height: 100px;
height: 80px;
height: 80px;
overflow: hidden;
margin: 0;
padding: 0;
Expand Down Expand Up @@ -531,6 +531,7 @@ div.table-wrapper table.spreadsheet{
table.spreadsheet {
width: 100%;
border-bottom: 0;
hyphens: none;
}
table.spreadsheet tbody tr:nth-child(2n+1){
background-color: #fff;
Expand All @@ -551,6 +552,23 @@ table.spreadsheet td{
border-bottom: 1px solid #efefef;
line-height: 24px;
}
table.spreadsheet td:last-child{
border-left: 0;

table.no-bgcolor {
hyphens: none;​
}
table.no-bgcolor tr td {
hyphens: none;
background-color: #fff;
padding: 5px 10px;
}

table.no-bgcolor tr th {
border-left: 1px solid #ddd;
}
table.no-bgcolor tr td{
border-left: 1px solid #ccc;
border-bottom: 1px solid #ccc;
}
table.no-bgcolor tr{
border-right: 1px solid #ccc;
}

0 comments on commit e5d58d3

Please sign in to comment.