Skip to content

Commit

Permalink
Border radiuses
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemKo7v committed Aug 2, 2016
1 parent 2a05f0e commit 02dcdf0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
8 changes: 8 additions & 0 deletions css/ethplorer.css
Original file line number Diff line number Diff line change
Expand Up @@ -314,4 +314,12 @@ td.list-field {
right: -15px;
top: -4px;
}
}

.table tr.last td:first-child {
border-bottom-left-radius: 8px;
}

.table tr.last td:last-child {
border-bottom-right-radius: 8px;
}
2 changes: 2 additions & 0 deletions js/ethplorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ Ethplorer = {
$('#txDetails').show();
$("table").find("tr:visible:odd").addClass("odd");
$("table").find("tr:visible:even").addClass("even");
$("table").find("tr:visible:last").addClass("last");
Ethplorer.Utils.adjustHeight('#txDetails .block:eq(0)', '#txDetails .block:eq(1)');
},

Expand Down Expand Up @@ -239,6 +240,7 @@ Ethplorer = {
$('#addressDetails').show();
$("table").find("tr:visible:odd").addClass("odd");
$("table").find("tr:visible:even").addClass("even");
$("table").find("tr:visible:last").addClass("last");
Ethplorer.Utils.adjustHeight('#addressDetails .block:eq(0)', '#addressDetails .block:eq(1)');
},

Expand Down

0 comments on commit 02dcdf0

Please sign in to comment.