Skip to content

Commit

Permalink
Low res css fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemKo7v committed Aug 1, 2016
1 parent bd7cacd commit 260988d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 6 additions & 0 deletions css/ethplorer.css
Original file line number Diff line number Diff line change
Expand Up @@ -250,4 +250,10 @@ a.local-link, a.local-link:visited, a.local-link:hover {

#disqus_thread {
margin-top: 20px;
}

td.list-field {
overflow: hidden;
max-width: 32vw;
text-overflow: ellipsis;
}
4 changes: 3 additions & 1 deletion js/ethplorer.js
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,9 @@ Ethplorer = {
},

adjustHeight: function(selector1, selector2){
$(selector1 + ',' + selector2).height(Math.max($(selector1).height(), $(selector2).height()));
if($(window).width() > 640){
$(selector1 + ',' + selector2).height(Math.max($(selector1).height(), $(selector2).height()));
}
},

hideEmptyFields: function(){
Expand Down

0 comments on commit 260988d

Please sign in to comment.