Skip to content

Commit

Permalink
fix(#mBB-portfolio): Revised hover effects on Portfolio table.
Browse files Browse the repository at this point in the history
- Revised pointer hover effect on Portfolio table.
- Eliminated some deprecated CSS classes.
- Adjusted some classes in the HTML file.
  • Loading branch information
supereth committed Nov 24, 2016
1 parent a075a0b commit dd056dc
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 16 deletions.
24 changes: 11 additions & 13 deletions src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1041,9 +1041,8 @@ span.tabs-radio img.selected {
padding-top: 1rem;
}

#wallet-transaction-history {

overflow-y: scroll !important;
#wallet-transaction-history table {
overflow-y: scroll;
}

#wB-butSend-WAV {
Expand Down Expand Up @@ -1131,16 +1130,6 @@ span.tabs-radio img.selected {
color: #333333;
}

.wTMainHeader {
background-color: #ffffff;
border: 0px solid #F0F0F0;
text-align: center;
font-size: 1.25rem;
color: #555555;
letter-spacing: .2rem;
padding-bottom: .5rem;
}

.wavesTable-txIn {
color: #4C7699 !important;
}
Expand Down Expand Up @@ -1575,6 +1564,15 @@ span.tabs-radio img.selected {
width: 100%;
}

#mBB-portfolio .wavesTable tbody {
overflow-y: scroll;
}

#mBB-portfolio .wavesTable tr:hover {
cursor: default;
}


#portfolio .btn {
border: none;
width: 8rem;
Expand Down
6 changes: 3 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ <h2 class="sectionHeader">SEND PAYMENT</h2>
</div>
<div id="wallet-transaction-history" class="wavesTable">
<h2 class="sectionHeader">LATEST TRANSACTIONS</h2>
<table class="wavesTable-hover">
<table class="wavesTable-hover wScroll">
<thead>
<tr>
<td>DATE</td>
Expand Down Expand Up @@ -420,7 +420,7 @@ <h2 class="sectionHeader">LATEST TRANSACTIONS</h2>
<div id="mBB-portfolio" class="mBB-content" ng-switch-when="portfolio">
<div ng-controller="assetListController as assetList">
<h2 class="sectionHeader">PORTFOLIO</h2>
<table class="wavesTable">
<table class="wavesTable wScroll">
<thead>
<tr>
<td>ASSET NAME</td>
Expand Down Expand Up @@ -777,7 +777,7 @@ <h2>LATEST BLOCKS INFORMATION</h2>
<p class="centerIt">

<div id="latestBlocks" class="wavesTable" >
<table>
<table class="wScroll">
<thead>
<tr class="fade">
<td>HEIGHT</td>
Expand Down

0 comments on commit dd056dc

Please sign in to comment.