Skip to content

Commit

Permalink
feat(#tabs-Iconset): Slightly changed behavior of navigation icons.
Browse files Browse the repository at this point in the history
  • Loading branch information
supereth committed Nov 24, 2016
1 parent dd056dc commit 4d24da2
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 8 deletions.
20 changes: 15 additions & 5 deletions src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -733,6 +733,10 @@ header {
height: 100%;
}

#tabs-Iconset span:focus {
outline: none;
}

#tabs-Iconset img {
margin-top: 0px;
margin-left: .5rem;
Expand All @@ -745,12 +749,17 @@ header {

#tabs-Iconset img:hover {
cursor: pointer;
-webkit-transform: scale(0.9);
transform: scale(0.9);
-webkit-transform: scale(0.88);
transform: scale(0.88);
}

span.tabs-radio img {
opacity: .4;
opacity: .4;
}

span.tabs-radio img:not(.selected) {
-webkit-transform: scale(0.94);
transform: scale(0.94);
}

span.tabs-radio:hover img {
Expand All @@ -759,6 +768,7 @@ span.tabs-radio:hover img {

span.tabs-radio img.selected {
opacity: 1;
pointer-events: none;
}


Expand Down Expand Up @@ -1158,7 +1168,7 @@ span.tabs-radio img.selected {
}

#latestBlocks {
overflow-y: scroll !important;
/* overflow-y: scroll !important;*/
}

.wavesTable-txUnc {
Expand Down Expand Up @@ -1609,7 +1619,7 @@ span.tabs-radio img.selected {
text-align: center;
}

#full-transaction-history {
#full-transaction-history table {
overflow-y: scroll;
}

Expand Down
5 changes: 2 additions & 3 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -642,9 +642,9 @@ <h1>DECENTRALIZED VOTING</h1>
<!-- HISTORY TAB -->
<div id="mBB-history" class="mBB-content" ng-switch-when="history" ng-controller="historyController as history">

<div id="full-transaction-history" class="wavesTable wScroll" >
<div id="full-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 @@ -775,7 +775,6 @@ <h2>ADD CONTACT</h2>
<p>DISCLAIMER: The Community tab will temporarily hold block information for testing purposes. After alpha phase this data will be relocated inside the Preferences - Advanced area.</p>
<h2>LATEST BLOCKS INFORMATION</h2>
<p class="centerIt">

<div id="latestBlocks" class="wavesTable" >
<table class="wScroll">
<thead>
Expand Down

0 comments on commit 4d24da2

Please sign in to comment.