Skip to content

Commit

Permalink
- fix styles of table for portfolio
Browse files Browse the repository at this point in the history
- fix show icons for listing
  • Loading branch information
serdrdoor committed Mar 11, 2020
1 parent 9d21d50 commit 9f61124
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 17 deletions.
22 changes: 11 additions & 11 deletions app/assets/coins-logo/coins.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
require("file-loader?name=coins-logo/[name].[ext].png!./NoLogo.png");
require("file-loader?name=coins-logo/[name].[ext].png!./gram.png");
require("file-loader?name=coins-logo/[name].[ext].png!./xmr.png");
require("file-loader?name=coins-logo/[name].[ext].png!./waves.png");
require("file-loader?name=coins-logo/[name].[ext].png!./tlos.png");
require("file-loader?name=coins-logo/[name].[ext].png!./trx.png");
require("file-loader?name=coins-logo/[name].[ext].png!./bip.png");
require("file-loader?name=coins-logo/[name].[ext].png!./neo.png");
require("file-loader?name=coins-logo/[name].[ext].png!./ltc.png");
require("file-loader?name=coins-logo/[name].[ext].png!./doge.png");
require("file-loader?name=coins-logo/[name].[ext].png!./dash.png");
require("file-loader?name=coins-logo/[name].png!./NoLogo.png");
require("file-loader?name=coins-logo/[name].png!./gram.png");
require("file-loader?name=coins-logo/[name].png!./xmr.png");
require("file-loader?name=coins-logo/[name].png!./waves.png");
require("file-loader?name=coins-logo/[name].png!./tlos.png");
require("file-loader?name=coins-logo/[name].png!./trx.png");
require("file-loader?name=coins-logo/[name].png!./bip.png");
require("file-loader?name=coins-logo/[name].png!./neo.png");
require("file-loader?name=coins-logo/[name].png!./ltc.png");
require("file-loader?name=coins-logo/[name].png!./doge.png");
require("file-loader?name=coins-logo/[name].png!./dash.png");
2 changes: 1 addition & 1 deletion app/assets/stylesheets/components/_exchange.scss
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ form.order-form {

//For Account fixes

body .ant-table table thead.ant-table-thead > tr > th {
body .portfolio-st .ant-table table thead.ant-table-thead > tr > th {
white-space: nowrap;
padding: 6px 6px;
}
Expand Down
7 changes: 5 additions & 2 deletions app/components/Account/AccountOverview.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ class AccountOverview extends React.Component {
let balanceObject = ChainStore.getObject(a);
if (
balanceObject &&
(!balanceObject.get("balance") && !orders[index])
!balanceObject.get("balance") && !orders[index]
) {
return false;
} else {
Expand Down Expand Up @@ -357,7 +357,10 @@ class AccountOverview extends React.Component {
const hiddenSubText = "\u00a0";

return (
<div className="grid-content app-tables no-padding" ref="appTables">
<div
className="grid-content app-tables portfolio-st no-padding"
ref="appTables"
>
<div className="content-block small-12">
<div className="tabs-container generic-bordered-box">
<Tabs
Expand Down
4 changes: 2 additions & 2 deletions app/components/Listing/ListingPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class ListingPage extends React.Component {
>
{/* DONATE PROGRESS*/}
<Tab title="listing.donate_progress">
<label className="horizontal" tabIndex={1}>
<label className="horizontal" tabIndex={0}>
<div
className="grid-container"
style={{padding: "2rem 8px"}}
Expand All @@ -104,7 +104,7 @@ class ListingPage extends React.Component {
<Tab title="listing.add_coin">
<label
className="horizontal"
tabIndex={2}
tabIndex={1}
/>

<div className="grid-container help-content-layout">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"repository": {
"type": "git",
"url": "git://github.com/bitshares/bitshares-ui"
"url": "git://github.com/blckchnd/rudex-ui"
},
"main": "build/electron/index.js",
"scripts": {
Expand Down

0 comments on commit 9f61124

Please sign in to comment.