-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Skinport stuff main functionality done
- Loading branch information
Showing
17 changed files
with
345 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
.betterfloat-buff-tooltip { | ||
/* Positioning the tooltip text */ | ||
position: absolute; | ||
z-index: 1; | ||
transform: translate(-16%, 40%); | ||
visibility: hidden; | ||
width: 200px; | ||
background-color: #192733; | ||
color: #fff; | ||
text-align: center; | ||
padding: 8px 10px 8px 10px; | ||
border-radius: 6px; | ||
font-size: 14px; | ||
|
||
/* Fade in tooltip */ | ||
opacity: 0; | ||
transition: opacity 0.3s; | ||
} | ||
|
||
.betterfloat-buffprice { | ||
font-size: 12px; | ||
} | ||
|
||
.betterfloat-buffprice:hover .betterfloat-buff-tooltip { | ||
visibility: visible; | ||
opacity: 1; | ||
} | ||
|
||
.betterfloat-sale-tag { | ||
font-size: 12px!important; | ||
margin: 1px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
<div class="Group"> | ||
<div class="GroupHeader">FEATURES</div> | ||
<div class="GroupElement"> | ||
<p class="ElementText">Buff Price Calculations</p> | ||
<input type="checkbox" id="SkinportBuffPrice" name="spBuffPrice" value="spBuffPrice" checked /> | ||
</div> | ||
<div class="GroupElement"> | ||
<p class="ElementText">Auto-Checkboxes</p> | ||
<input type="checkbox" id="SkinportCheckboxes" name="spCheckBoxes" value="spCheckBoxes" checked /> | ||
</div> | ||
</div> | ||
<div class="Group"> | ||
<div class="GroupHeader">PRICES</div> | ||
<div class="GroupElementExtended"> | ||
<div class="GroupRow"> | ||
<p class="ElementText">Buff Price Reference</p> | ||
<select class="ElementDropdownMenu" id="SkinportPriceReference" name="spPriceReference"> | ||
<option value="0">Bid</option> | ||
<option value="1" selected>Ask</option> | ||
</select> | ||
</div> | ||
<p class="ElementDescription"> | ||
Sets the reference price for difference calculations on item prices.<br />Bid refers to the highest buy order price.<br />Ask refers to the lowest listing price. (Default) | ||
</p> | ||
</div> | ||
<div class="GroupElementExtended"> | ||
<div class="GroupRow"> | ||
<p class="ElementText">Currency Conversion</p> | ||
<select class="ElementDropdownMenu" id="SkinportCurrencyConversion" name="skinportRates"> | ||
<option value="real">Real</option> | ||
<option value="skinport" selected>Skinport</option> | ||
</select> | ||
</div> | ||
<p class="ElementDescription"> | ||
Sets the reference rates for the currency conversion (USD -> X). Skinport will nevertheless always charge you in your local currency.. <br />Real refers to the buff-like currency conversion rates. (Default) <br />Skinport refers to the rates used by Skinport, which can vary from Buff rates. | ||
</p> | ||
</div> | ||
<div class="GroupElementExtended"> | ||
<div class="GroupRow"> | ||
<p class="ElementText">Show Steam Price</p> | ||
<input type="checkbox" id="SkinportSteamPrice" name="spSteamPrice" value="spSteamPrice" /> | ||
</div> | ||
<p class="ElementDescription">Show the Steam price of an item in addition to the Buff price.</p> | ||
</div> | ||
<div class="GroupElementExtended"> | ||
<div class="GroupRow"> | ||
<p class="ElementText">Show Buff Price Difference</p> | ||
<input type="checkbox" id="SkinportInputBuffDifference" name="spBuffDifference" value="spBuffDifference" checked/> | ||
</div> | ||
<p class="ElementDescription">This settings allows to switch between displaying the difference to the Buff price in absolute units and the original difference to the Steam price in percentage.</p> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.