Skip to content

Commit

Permalink
Highlight fix
Browse files Browse the repository at this point in the history
  • Loading branch information
licoffe committed Jun 17, 2017
1 parent 130ef55 commit 33fc776
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 27 deletions.
19 changes: 1 addition & 18 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,18 +1 @@
{
"sound": "sound2.mp3",
"volume": 0.5,
"message": "@<account> Hi, I would like to buy your <item> listed for <price> in <league> (stash tab \"<stashTab>\"; position: left <left>, top <top>)",
"RATES_REFRESH_INTERVAL": 10000,
"POE_TRADE_STATS_INTERVAL": 3600000,
"CHUNK_RETRY_INTERVAL": 1000,
"CHUNK_DOWNLOAD_INTERVAL": 500,
"STREAM_TOP_WAIT_INTERVAL": 2000,
"SCROLL_BACK_TOP_SPEED": 500,
"writeChunkStats": false,
"globalClipboard": false,
"leagues": [
"Standard", "Hardcore", "Legacy", "Hardcore Legacy"
],
"defaultLeagueIndex": 2,
"showStatusBar": false
}
{"sound":"sound2.mp3","volume":0.5,"message":"@<account> Hi, I would like to buy your <item> listed for <price> in <league> (stash tab \"<stashTab>\"; position: left <left>, top <top>)","RATES_REFRESH_INTERVAL":10000,"POE_TRADE_STATS_INTERVAL":3600000,"CHUNK_RETRY_INTERVAL":1000,"CHUNK_DOWNLOAD_INTERVAL":500,"STREAM_TOP_WAIT_INTERVAL":2000,"SCROLL_BACK_TOP_SPEED":500,"writeChunkStats":false,"globalClipboard":false,"leagues":["Standard","Hardcore","Legacy","Hardcore Legacy"],"defaultLeagueIndex":2,"showStatusBar":false,"windowWidth":1436,"windowHeight":865,"x":3,"y":23}
16 changes: 8 additions & 8 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ span.title {

li.collection-item {
border: none!important;
background-color: rgba( 0, 0, 0, 0 )!important;
transition: background-color 0.2s linear;
border-radius: 3px;
cursor: pointer;
/*background-color: rgba( 0, 0, 0, 0 )!important;*/
/*transition: background-color 0.2s linear;*/
/*border-radius: 3px;*/
/*cursor: pointer;*/
}

li.collection-item {
background-color: rgba( 0, 200, 200, 0.1 )!important;
transition: background-color 0.2s linear;
/*background-color: rgba( 0, 200, 200, 0.1 )!important;*/
/*transition: background-color 0.2s linear;*/
}

.currency {
Expand Down Expand Up @@ -483,7 +483,7 @@ input[type=range] {
margin: 0;
}

.filter-detail {
.filter-detail, .entry {
border: none!important;
background-color: rgba( 0, 0, 0, 0 )!important;
transition: background-color 0.2s linear;
Expand All @@ -493,7 +493,7 @@ input[type=range] {
top: -9px;
}

.filter-detail:hover {
.filter-detail:hover, .entry:hover {
background-color: rgba( 0, 200, 200, 0.1 )!important;
transition: background-color 0.2s linear;
}
Expand Down
2 changes: 1 addition & 1 deletion templates/entry.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<li class="collection-item grey darken-4 entry" id="{{id}}" style="display: none">
<li class="collection-item entry" id="{{id}}" style="display: none">
<div class="title row" style="">
<span class="timestamp col s1">{{time}}</span>
<span class="item col s4">{{item}}</span>
Expand Down

0 comments on commit 33fc776

Please sign in to comment.