Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patch 7 #119

Open
wants to merge 2 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"image": "mcr.microsoft.com/devcontainers/universal:2",
"features": {
}
}
82 changes: 40 additions & 42 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "stellarexplorer",
"description": "Ledger explorer for the Stellar network",
"version": "1.0.10",
"version": "1.1.0-beta",
"license": "Apache-2.0",
"author": "Chris Hatch",
"homepage": "https://steexp.com",
Expand All @@ -20,6 +20,7 @@
"node": "10.x.x"
},
"dependencies": {
"chart.js": "^2.7.3",
"fetch-ponyfill": "^4.1.0",
"node-localstorage": "^1.3.0",
"promise": "8.0.1",
Expand Down
35 changes: 22 additions & 13 deletions src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ body,
.navbar {
color: #96a2b4;
background-color: #3c4452 !important;
font-family: 'Noto Sans', 'Noto Sans CJK {SC, TC}', sans-serif;
font-family: "Noto Sans", "Noto Sans CJK {SC, TC}", sans-serif;
}

hr {
Expand Down Expand Up @@ -35,7 +35,7 @@ table {
}

.monospace {
font-family: 'Noto Sans Mono', monospace;
font-family: "Noto Sans Mono", monospace;
word-break: break-all;
}

Expand All @@ -61,7 +61,7 @@ table {
.modal-body img {
margin-top: 10px;
}
.modal-body input[type=text] {
.modal-body input[type="text"] {
width: 100%;
}
.modal-body input {
Expand Down Expand Up @@ -115,19 +115,19 @@ table {
overflow-wrap: break-word;
}

[id*='-table'] {
[id*="-table"] {
font-size: 14px !important;
}

[id*='-table'] thead {
[id*="-table"] thead {
color: #dce2ec;
}

[id*='-table'] tbody {
[id*="-table"] tbody {
color: #96a2b4;
}

[id*='-table'] > tbody > tr > td {
[id*="-table"] > tbody > tr > td {
padding-top: 10px;
padding-bottom: 10px;
border-top: 1px solid #4c5667;
Expand Down Expand Up @@ -363,7 +363,8 @@ ul.navbar-nav .divider-vertical {
outline: none;
}

.Network-Selector button:not(:first-child), .Network-Selector span:not(:first-child) {
.Network-Selector button:not(:first-child),
.Network-Selector span:not(:first-child) {
margin-left: 5px;
}

Expand Down Expand Up @@ -443,23 +444,23 @@ ul.navbar-nav .divider-vertical {
border: none;
}

div[id|='account-tabs-pane'] {
div[id|="account-tabs-pane"] {
padding: 15px;
}

a[id|='account-tabs-tab'] {
a[id|="account-tabs-tab"] {
color: #96a2b4;
}

a[id|='account-tabs-tab']:hover {
a[id|="account-tabs-tab"]:hover {
color: #01c0c8 !important;
background-color: #3c4452 !important;
border: 1px solid #3c4452;
border-bottom: 2px solid #01c0c8 !important;
border-color: #3c4452 !important;
}

a[id|='account-tabs-tab'][aria-selected='true'] {
a[id|="account-tabs-tab"][aria-selected="true"] {
color: #01c0c8 !important;
}

Expand Down Expand Up @@ -573,6 +574,14 @@ a:hover {
transition: all 0.18s ease-in-out;
}

.c3-axis-y .tick,
.c3-axis-x .tick,
.c3-axis-x-label,
.c3-axis-y-label,
.c3-legend-item text {
stroke: white !important;
}

/*
Mobile Rules
*/
Expand All @@ -591,7 +600,7 @@ Mobile Rules
table-layout: fixed;
}

[id*='-table'] {
[id*="-table"] {
font-size: 12px !important;
}

Expand Down
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ const Anchors = Loadable('Anchors')
const Assets = Loadable('Assets')
const Effects = Loadable('Effects')
const Exchanges = Loadable('Exchanges')
const Graphs = Loadable('Graphs')
const InflationPools = Loadable('InflationPools')
const Ledger = Loadable('Ledger')
const Ledgers = Loadable('Ledgers')
Expand Down Expand Up @@ -166,6 +167,7 @@ class App extends Component {
<Route path="/anchor/:id" component={Anchor} />
<Route path="/effects" component={Effects} />
<Route path="/exchanges" component={Exchanges} />
<Route path="/graphs" component={Graphs} />
<Route path="/ledgers" component={Ledgers} />
<Route path="/ledger/:id" component={Ledger} />
<Route path="/operations" component={Operations} />
Expand Down
Loading