Skip to content

Commit

Permalink
fix(#mBB-token): Restyled elements on the Token Issuance area.
Browse files Browse the repository at this point in the history
- Created ruleset for FEE area.
- Modified cursor behavior for FEE area on hover.
- Modified labels for the different DESCRIPTION fields.
- Added non selectable class to the FEE area.
  • Loading branch information
supereth committed Nov 19, 2016
1 parent 96e2dd6 commit 6eff1fa
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
13 changes: 12 additions & 1 deletion src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1546,7 +1546,18 @@ span.tabs-radio img.selected {
}

#mBB-token table tbody tr:last-child {
color: red;
background-color: #ffffff;
font-style: italic;
color: #999999;
}

#mBB-token table tbody tr:last-child {
text-align: right;
padding-right: .5rem;
}

#mBB-token table tbody tr:last-child:hover {
cursor: default;
}

#mBB-token form button {
Expand Down
12 changes: 6 additions & 6 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -695,26 +695,26 @@ <h2>ASSET CREATION</h2>
</thead>
<tbody>
<tr>
<td><label for="assetName">Asset's name</label></td>
<td><label for="assetName">Name</label></td>
<td><input id="assetName" name="assetName" type="text" class="wInput form-control" focus-me="true" ng-model="ctrl.asset.name"/></td>
</tr>
<tr>
<td><label for="assetDescription">Asset's description</label></td>
<td><label for="assetDescription">Description</label></td>
<td><textarea id="assetDescription" name="assetDescription" class="wInput" rows="3" ng-model="ctrl.asset.description"></textarea></td>
</tr>
<tr>
<td><label for="assetTotalTokens">Asset's total tokens</label></td>
<td><label for="assetTotalTokens">Total Tokens</label></td>
<td><input id="assetTotalTokens" name="assetTotalTokens" class="wInput" type="text" ng-model="ctrl.asset.totalTokens"/></td>
</tr>
<tr>
<td><label for="assetTokenDecimalPlaces">Token's decimals</label></td>
<td><label for="assetTokenDecimalPlaces">Token Decimals</label></td>
<td><input id="assetTokenDecimalPlaces" name="assetTokenDecimalPlaces" class="wInput" type="text" ng-model="ctrl.asset.decimalPlaces"/></td>
</tr>
<tr>
<td><label for="assetReissuable">Re-issuable asset</label></td>
<td><label for="assetReissuable">Re-issuable</label></td>
<td><input id="assetReissuable" name="assetReissuable" type="checkbox" class="wInput" ng-model="ctrl.asset.reissuable"/></td>
</tr>
<tr>
<tr class="noSelect">
<td>Fee</td>
<td>{{::ctrl.asset.fee.formatAmount(true)}} WAVES</td>
</tr>
Expand Down

0 comments on commit 6eff1fa

Please sign in to comment.