From 3cf9498732385f71c3bb064dd0019dd768af02dc Mon Sep 17 00:00:00 2001 From: Victor Baranov Date: Fri, 24 May 2019 13:01:02 +0300 Subject: [PATCH 01/14] Use PORT env variable in dev config --- apps/block_scout_web/config/dev.exs | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/apps/block_scout_web/config/dev.exs b/apps/block_scout_web/config/dev.exs index ae05490a86..27ce5aff40 100644 --- a/apps/block_scout_web/config/dev.exs +++ b/apps/block_scout_web/config/dev.exs @@ -6,10 +6,18 @@ use Mix.Config # The watchers configuration can be used to run external # watchers to your application. For example, we use it # with webpack to recompile .js and .css sources. + +port = + case System.get_env("PORT") && Integer.parse(System.get_env("PORT")) do + {port, _} -> port + :error -> nil + nil -> nil + end + config :block_scout_web, BlockScoutWeb.Endpoint, - http: [port: 4000], + http: [port: port || 4000], https: [ - port: 4001, + port: (port && port + 1) || 4001, cipher_suite: :strong, certfile: System.get_env("CERTFILE") || "priv/cert/selfsigned.pem", keyfile: System.get_env("KEYFILE") || "priv/cert/selfsigned_key.pem" From 0271775cd15a1b00aab618347fcf0d1a9f69602b Mon Sep 17 00:00:00 2001 From: Victor Baranov Date: Fri, 24 May 2019 13:02:52 +0300 Subject: [PATCH 02/14] Add CHANGELOG entry --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4edae41dad..051d6db16d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -47,6 +47,7 @@ - [#1975](https://github.com/poanetwork/blockscout/pull/1975) - add log index to transaction view - [#1988](https://github.com/poanetwork/blockscout/pull/1988) - Fix wrong parity tasks names in Circle CI - [#2000](https://github.com/poanetwork/blockscout/pull/2000) - docker/Makefile: always set a container name +- [#2018](https://github.com/poanetwork/blockscout/pull/2018) - Use PORT env variable in dev config ## 1.3.14-beta From f2eb171dc4d32998cb6752135a28d08987af90c1 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Fri, 24 May 2019 12:18:52 -0300 Subject: [PATCH 03/14] (fix) Missing tx hashes --- .../css/components/_token_tile_view_more.scss | 78 +++++++------------ .../templates/transaction/_tile.html.eex | 4 +- 2 files changed, 31 insertions(+), 51 deletions(-) diff --git a/apps/block_scout_web/assets/css/components/_token_tile_view_more.scss b/apps/block_scout_web/assets/css/components/_token_tile_view_more.scss index 435dc3e235..41cfc89a5a 100644 --- a/apps/block_scout_web/assets/css/components/_token_tile_view_more.scss +++ b/apps/block_scout_web/assets/css/components/_token_tile_view_more.scss @@ -1,65 +1,47 @@ .token-tile-view-more { - line-height: 0.5; + align-items: center; + display: flex; + justify-content: space-between; + line-height: 1.2; + padding-top: 10px; text-align: center; - &:hover, - :focus { + a { text-decoration: none; } -} - -.token-tile-view-more span { - display: inline-block; - position: relative; -} -.token-tile-view-more span:before, -.token-tile-view-more span:after { - content: ""; - position: absolute; - height: 5px; - border-bottom: 1px solid $border-color; - border-top: 1px solid $border-color; - top: 0; - width: 43%; -} - -.token-tile-view-more span:before { - right: 55%; - margin-right: 0.9375rem; -} + &:before, + &:after { + border-bottom: 1px solid $border-color; + border-top: 1px solid $border-color; + content: ""; + height: 4px; + flex-grow: 1; -.token-tile-view-more span:after { - left: 55%; - margin-left: 0.9375rem; -} + @include media-breakpoint-down(md) { + } -@include media-breakpoint-down(md) { - .token-tile-view-more span:before, - .token-tile-view-more span:after { - width: 40%; + @include media-breakpoint-down(sm) { + } } - .token-tile-view-more span:before { - right: 58%; - } + &:before { + margin-right: 10px; - .token-tile-view-more span:after { - left: 58%; - } -} + @include media-breakpoint-down(md) { + } -@include media-breakpoint-down(sm) { - .token-tile-view-more span:before, - .token-tile-view-more span:after { - width: 28%; + @include media-breakpoint-down(sm) { + } } - .token-tile-view-more span:before { - right: 66%; - } + &:after { + margin-left: 10px; + + @include media-breakpoint-down(md) { + } - .token-tile-view-more span:after { - left: 66%; + @include media-breakpoint-down(sm) { + } } } diff --git a/apps/block_scout_web/lib/block_scout_web/templates/transaction/_tile.html.eex b/apps/block_scout_web/lib/block_scout_web/templates/transaction/_tile.html.eex index 9ff19a9e5d..e8d52b25f4 100644 --- a/apps/block_scout_web/lib/block_scout_web/templates/transaction/_tile.html.eex +++ b/apps/block_scout_web/lib/block_scout_web/templates/transaction/_tile.html.eex @@ -50,11 +50,9 @@ <%= if Enum.any?(remaining_token_transfers) do %> -
- +
<%= link gettext("View More Transfers"), to: "#transaction-#{@transaction.hash}", "data-toggle": "collapse", "data-selector": "token-transfer-open", "data-test": "token_transfers_expansion" %> <%= link gettext("View Less Transfers"), class: "d-none", to: "#transaction-#{@transaction.hash}", "data-toggle": "collapse", "data-selector": "token-transfer-close" %> -
<% end %> <% end %> From 991fb13225efd826ffb21aac775d8bc22cdb9201 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Fri, 24 May 2019 12:19:03 -0300 Subject: [PATCH 04/14] (update) language files --- apps/block_scout_web/priv/gettext/default.pot | 8 ++++---- .../priv/gettext/en/LC_MESSAGES/default.po | 9 +++++---- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/apps/block_scout_web/priv/gettext/default.pot b/apps/block_scout_web/priv/gettext/default.pot index 38261f6cac..9f3c9066cf 100644 --- a/apps/block_scout_web/priv/gettext/default.pot +++ b/apps/block_scout_web/priv/gettext/default.pot @@ -452,7 +452,7 @@ msgstr "" #, elixir-format #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:39 -#: lib/block_scout_web/templates/transaction/_tile.html.eex:76 +#: lib/block_scout_web/templates/transaction/_tile.html.eex:74 msgid "IN" msgstr "" @@ -597,7 +597,7 @@ msgstr "" #, elixir-format #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:37 -#: lib/block_scout_web/templates/transaction/_tile.html.eex:72 +#: lib/block_scout_web/templates/transaction/_tile.html.eex:70 msgid "OUT" msgstr "" @@ -980,12 +980,12 @@ msgid "View Contract" msgstr "" #, elixir-format -#: lib/block_scout_web/templates/transaction/_tile.html.eex:56 +#: lib/block_scout_web/templates/transaction/_tile.html.eex:55 msgid "View Less Transfers" msgstr "" #, elixir-format -#: lib/block_scout_web/templates/transaction/_tile.html.eex:55 +#: lib/block_scout_web/templates/transaction/_tile.html.eex:54 msgid "View More Transfers" msgstr "" diff --git a/apps/block_scout_web/priv/gettext/en/LC_MESSAGES/default.po b/apps/block_scout_web/priv/gettext/en/LC_MESSAGES/default.po index 62bbed2f37..6834f8af2d 100644 --- a/apps/block_scout_web/priv/gettext/en/LC_MESSAGES/default.po +++ b/apps/block_scout_web/priv/gettext/en/LC_MESSAGES/default.po @@ -452,7 +452,7 @@ msgstr "" #, elixir-format #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:39 -#: lib/block_scout_web/templates/transaction/_tile.html.eex:76 +#: lib/block_scout_web/templates/transaction/_tile.html.eex:74 msgid "IN" msgstr "" @@ -597,7 +597,7 @@ msgstr "" #, elixir-format #: lib/block_scout_web/templates/internal_transaction/_tile.html.eex:37 -#: lib/block_scout_web/templates/transaction/_tile.html.eex:72 +#: lib/block_scout_web/templates/transaction/_tile.html.eex:70 msgid "OUT" msgstr "" @@ -980,12 +980,12 @@ msgid "View Contract" msgstr "" #, elixir-format -#: lib/block_scout_web/templates/transaction/_tile.html.eex:56 +#: lib/block_scout_web/templates/transaction/_tile.html.eex:55 msgid "View Less Transfers" msgstr "" #, elixir-format -#: lib/block_scout_web/templates/transaction/_tile.html.eex:55 +#: lib/block_scout_web/templates/transaction/_tile.html.eex:54 msgid "View More Transfers" msgstr "" @@ -1107,6 +1107,7 @@ msgstr "" msgid "GraphQL" msgstr "" +#, elixir-format #: lib/block_scout_web/templates/pending_transaction/index.html.eex:32 msgid "Loading" msgstr "" From 932d11784c1bd0dfabbf463dd52eaa4543592854 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Fri, 24 May 2019 12:24:48 -0300 Subject: [PATCH 05/14] (update) changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4edae41dad..4423774a57 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ ### Fixes +- [#2019](https://github.com/poanetwork/blockscout/pull/2019) - Fixed the missing tx hashes. - [#1944](https://github.com/poanetwork/blockscout/pull/1944) - fixed styles for token's dropdown. - [#1926](https://github.com/poanetwork/blockscout/pull/1926) - status label alignment - [#1849](https://github.com/poanetwork/blockscout/pull/1849) - Improve chains menu From 5676c1462afeab41a931b4d4ca0839210e126f83 Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Fri, 24 May 2019 14:44:23 -0300 Subject: [PATCH 06/14] (fix) wrong tabs behavior --- apps/block_scout_web/assets/css/app.scss | 6 +++--- .../assets/js/lib/card_tabs.js | 19 ++++++++++++------- .../templates/address/_tabs.html.eex | 2 +- .../block_transaction/index.html.eex | 2 +- .../templates/tokens/overview/_tabs.html.eex | 2 +- .../templates/transaction/_tabs.html.eex | 2 +- 6 files changed, 19 insertions(+), 14 deletions(-) diff --git a/apps/block_scout_web/assets/css/app.scss b/apps/block_scout_web/assets/css/app.scss index 06510862b9..3838fd96c1 100644 --- a/apps/block_scout_web/assets/css/app.scss +++ b/apps/block_scout_web/assets/css/app.scss @@ -123,9 +123,9 @@ $fa-font-path: "~@fortawesome/fontawesome-free/webfonts"; @import "components/errors"; :export { - primary: $primary; - secondary: $secondary; + dashboardBannerChartAxisFontColor: $dashboard-banner-chart-axis-font-color; dashboardLineColorMarket: $dashboard-line-color-market; dashboardLineColorPrice: $dashboard-line-color-price; - dashboardBannerChartAxisFontColor: $dashboard-banner-chart-axis-font-color; + primary: $primary; + secondary: $secondary; } diff --git a/apps/block_scout_web/assets/js/lib/card_tabs.js b/apps/block_scout_web/assets/js/lib/card_tabs.js index eed0790dc7..49b82ad04f 100644 --- a/apps/block_scout_web/assets/js/lib/card_tabs.js +++ b/apps/block_scout_web/assets/js/lib/card_tabs.js @@ -1,21 +1,26 @@ import $ from 'jquery' $(function () { - const activeTabCard = $('.card-tab.active') + const tabCards = $('.js-card-tabs') + const activeTabCard = tabCards.find('.active') + const isMobileCardTabs = tabCards.children(':hidden').length + const isOnlyChild = !activeTabCard.siblings().length - if (!activeTabCard.siblings().length) { + if (isOnlyChild) { activeTabCard.addClass('noCaret') } activeTabCard.on('click', function (e) { e.preventDefault() - const siblings = $(this).siblings() + if (isMobileCardTabs) { + const siblings = $(this).siblings() - if (siblings.is(':hidden')) { - siblings.show() - } else { - siblings.hide() + if (siblings.is(':hidden')) { + siblings.show() + } else { + siblings.hide() + } } }) }) diff --git a/apps/block_scout_web/lib/block_scout_web/templates/address/_tabs.html.eex b/apps/block_scout_web/lib/block_scout_web/templates/address/_tabs.html.eex index 8ed8d4e028..0c2d339c38 100644 --- a/apps/block_scout_web/lib/block_scout_web/templates/address/_tabs.html.eex +++ b/apps/block_scout_web/lib/block_scout_web/templates/address/_tabs.html.eex @@ -1,4 +1,4 @@ -
+
<%= link( gettext("Transactions"), class: "card-tab #{tab_status("transactions", @conn.request_path)}", diff --git a/apps/block_scout_web/lib/block_scout_web/templates/block_transaction/index.html.eex b/apps/block_scout_web/lib/block_scout_web/templates/block_transaction/index.html.eex index add34c7b4d..eac466a3e5 100644 --- a/apps/block_scout_web/lib/block_scout_web/templates/block_transaction/index.html.eex +++ b/apps/block_scout_web/lib/block_scout_web/templates/block_transaction/index.html.eex @@ -4,7 +4,7 @@
-
+
<%= link( gettext("Transactions"), diff --git a/apps/block_scout_web/lib/block_scout_web/templates/tokens/overview/_tabs.html.eex b/apps/block_scout_web/lib/block_scout_web/templates/tokens/overview/_tabs.html.eex index 3a9e9ec11f..f22c913356 100644 --- a/apps/block_scout_web/lib/block_scout_web/templates/tokens/overview/_tabs.html.eex +++ b/apps/block_scout_web/lib/block_scout_web/templates/tokens/overview/_tabs.html.eex @@ -1,4 +1,4 @@ -
+
<%= link( gettext("Token Transfers"), class: "card-tab #{tab_status("token_transfers", @conn.request_path)}", diff --git a/apps/block_scout_web/lib/block_scout_web/templates/transaction/_tabs.html.eex b/apps/block_scout_web/lib/block_scout_web/templates/transaction/_tabs.html.eex index 67a5980f28..c857323fd3 100644 --- a/apps/block_scout_web/lib/block_scout_web/templates/transaction/_tabs.html.eex +++ b/apps/block_scout_web/lib/block_scout_web/templates/transaction/_tabs.html.eex @@ -1,4 +1,4 @@ -
+
<%= if @show_token_transfers do %> <%= link( gettext("Token Transfers"), From f5fcb811c379bdb1bef240530a7f9397c1fc8baa Mon Sep 17 00:00:00 2001 From: Gabriel Rodriguez Alsina Date: Fri, 24 May 2019 15:50:54 -0300 Subject: [PATCH 07/14] (update) changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4edae41dad..fbfd303e01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,6 +21,7 @@ ### Fixes +- [#2020](https://github.com/poanetwork/blockscout/pull/2020) - Fixed a bug triggered when a second click to a selected tab caused the other tabs to hide. - [#1944](https://github.com/poanetwork/blockscout/pull/1944) - fixed styles for token's dropdown. - [#1926](https://github.com/poanetwork/blockscout/pull/1926) - status label alignment - [#1849](https://github.com/poanetwork/blockscout/pull/1849) - Improve chains menu From 1479d3d0a6b562953b56415dbeb98896b35c791f Mon Sep 17 00:00:00 2001 From: maxgrapps <50101080+maxgrapps@users.noreply.github.com> Date: Mon, 27 May 2019 11:53:19 +0300 Subject: [PATCH 08/14] Update dai_logo.svg --- .../assets/static/images/dai_logo.svg | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/apps/block_scout_web/assets/static/images/dai_logo.svg b/apps/block_scout_web/assets/static/images/dai_logo.svg index 582cb97f2e..641245ab35 100644 --- a/apps/block_scout_web/assets/static/images/dai_logo.svg +++ b/apps/block_scout_web/assets/static/images/dai_logo.svg @@ -1 +1,12 @@ - + + + + + + + + + + + + From 339ed271c3f8dd74e78fb13153429d112d79c022 Mon Sep 17 00:00:00 2001 From: maxgrapps <50101080+maxgrapps@users.noreply.github.com> Date: Mon, 27 May 2019 11:53:48 +0300 Subject: [PATCH 09/14] Update _dai_variables.scss --- .../assets/css/theme/_dai_variables.scss | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/apps/block_scout_web/assets/css/theme/_dai_variables.scss b/apps/block_scout_web/assets/css/theme/_dai_variables.scss index 8746489faa..f512500737 100644 --- a/apps/block_scout_web/assets/css/theme/_dai_variables.scss +++ b/apps/block_scout_web/assets/css/theme/_dai_variables.scss @@ -1,14 +1,14 @@ // general -$primary: #2b2b2b; -$secondary: #ffb045; -$tertiary: #929292; +$primary: #17314f; +$secondary: #69b9d7; +$tertiary: #15bba6; $additional-font: #ffffff; // footer $footer-background-color: $primary; $footer-title-color: #fff; -$footer-text-color: #7e7e7e; -$footer-item-disc-color: $secondary; +$footer-text-color: $secondary; +$footer-item-disc-color: $tertiary; .footer-logo { filter: brightness(0) invert(1); } // dashboard @@ -24,7 +24,7 @@ $dashboard-banner-gradient-start: $primary; // gradient begin $dashboard-banner-gradient-end: lighten($primary, 5); // gradient end -$dashboard-banner-network-plain-container-background-color: #424242; // stats bg +$dashboard-banner-network-plain-container-background-color: #20446e; // stats bg // navigation @@ -35,14 +35,14 @@ $header-icon-color-hover: $secondary; // nav icon on hover // buttons $btn-line-bg: #fff; // button bg -$btn-line-color: #424242; // button border and font color && hover bg color -$btn-copy-color: #424242; // btn copy -$btn-qr-color: #424242; // btn qr-code +$btn-line-color: $primary; // button border and font color && hover bg color +$btn-copy-color: $primary; // btn copy +$btn-qr-color: $primary; // btn qr-code //links & tile -.tile a { color: #4b89fb !important; } // links color for badges +.tile a { color: $tertiary !important; } // links color for badges .tile-type-block { - border-left: 4px solid $secondary; + border-left: 4px solid $primary; } // tab active bg // card From 23db7749983008fb147f3cf1f522f573e95f3dd3 Mon Sep 17 00:00:00 2001 From: maxgrapps <50101080+maxgrapps@users.noreply.github.com> Date: Mon, 27 May 2019 11:55:52 +0300 Subject: [PATCH 10/14] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a5dfb22c18..6eef5f3baf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## Current ### Features +- [#2031](https://github.com/poanetwork/blockscout/pull/2031) - xDai theme colors issue - [#2005](https://github.com/poanetwork/blockscout/pull/2005) - added "block not found" and "tx not found pages" - [#1963](https://github.com/poanetwork/blockscout/pull/1963) - added rinkeby theme and rinkeby logo - [#1959](https://github.com/poanetwork/blockscout/pull/1959) - added goerli theme and goerli logo From ca9e5a7e6cc3e275ce5bc3d1e17834342bb03837 Mon Sep 17 00:00:00 2001 From: maxgrapps <50101080+maxgrapps@users.noreply.github.com> Date: Mon, 27 May 2019 12:01:52 +0300 Subject: [PATCH 11/14] Update _dai_variables.scss --- apps/block_scout_web/assets/css/theme/_dai_variables.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/block_scout_web/assets/css/theme/_dai_variables.scss b/apps/block_scout_web/assets/css/theme/_dai_variables.scss index f512500737..128bd4db9a 100644 --- a/apps/block_scout_web/assets/css/theme/_dai_variables.scss +++ b/apps/block_scout_web/assets/css/theme/_dai_variables.scss @@ -7,7 +7,7 @@ $additional-font: #ffffff; // footer $footer-background-color: $primary; $footer-title-color: #fff; -$footer-text-color: $secondary; +$footer-text-color: #909dab; $footer-item-disc-color: $tertiary; .footer-logo { filter: brightness(0) invert(1); } @@ -46,5 +46,5 @@ $btn-qr-color: $primary; // btn qr-code } // tab active bg // card -$card-background-1: $secondary; -$card-tab-active: $secondary; +$card-background-1: #1b395c; +$card-tab-active: $tertiary; From d304bcf7a6c09dfc1d74befffc90689a20bccf9f Mon Sep 17 00:00:00 2001 From: maxgrapps <50101080+maxgrapps@users.noreply.github.com> Date: Mon, 27 May 2019 12:29:40 +0300 Subject: [PATCH 12/14] Update _dropdown.scss --- apps/block_scout_web/assets/css/components/_dropdown.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/block_scout_web/assets/css/components/_dropdown.scss b/apps/block_scout_web/assets/css/components/_dropdown.scss index c8962c021d..c93231edbd 100644 --- a/apps/block_scout_web/assets/css/components/_dropdown.scss +++ b/apps/block_scout_web/assets/css/components/_dropdown.scss @@ -52,6 +52,10 @@ font-weight: 700; } } + + &.active { + background-color: $secondary; + } &.division { border-top: 1px solid $base-border-color; From 3ddea068afd2c7751678bc81f74e25954120461e Mon Sep 17 00:00:00 2001 From: maxgrapps <50101080+maxgrapps@users.noreply.github.com> Date: Mon, 27 May 2019 12:33:27 +0300 Subject: [PATCH 13/14] Update CHANGELOG.md --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55fdbe8b6d..42d621336a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## Current ### Features +- [#2033](https://github.com/poanetwork/blockscout/pull/2033) - Header nav. dropdown active element color issue, - [#1963](https://github.com/poanetwork/blockscout/pull/1963), [#1959](https://github.com/poanetwork/blockscout/pull/1959), [#1948](https://github.com/poanetwork/blockscout/pull/1948), [#1936](https://github.com/poanetwork/blockscout/pull/1936), [#1925](https://github.com/poanetwork/blockscout/pull/1925), [#1922](https://github.com/poanetwork/blockscout/pull/1922), [#1903](https://github.com/poanetwork/blockscout/pull/1903), [#1874](https://github.com/poanetwork/blockscout/pull/1874), [#1895](https://github.com/poanetwork/blockscout/pull/1895), [#2031](https://github.com/poanetwork/blockscout/pull/2031) - added new themes and logos for poa, eth, rinkeby, goerli, ropsten, kovan, sokol, xdai, etc, rsk - [#2010](https://github.com/poanetwork/blockscout/pull/2010) - added "block not found" and "tx not found pages" - [#1928](https://github.com/poanetwork/blockscout/pull/1928) - pagination styles were updated From 86be104debf5f79faf6ab5455b7189e273d97c0b Mon Sep 17 00:00:00 2001 From: maxgrapps <50101080+maxgrapps@users.noreply.github.com> Date: Mon, 27 May 2019 14:34:42 +0300 Subject: [PATCH 14/14] Update CHANGELOG.md --- CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42d621336a..b2b45e115a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,6 @@ ## Current ### Features -- [#2033](https://github.com/poanetwork/blockscout/pull/2033) - Header nav. dropdown active element color issue, - [#1963](https://github.com/poanetwork/blockscout/pull/1963), [#1959](https://github.com/poanetwork/blockscout/pull/1959), [#1948](https://github.com/poanetwork/blockscout/pull/1948), [#1936](https://github.com/poanetwork/blockscout/pull/1936), [#1925](https://github.com/poanetwork/blockscout/pull/1925), [#1922](https://github.com/poanetwork/blockscout/pull/1922), [#1903](https://github.com/poanetwork/blockscout/pull/1903), [#1874](https://github.com/poanetwork/blockscout/pull/1874), [#1895](https://github.com/poanetwork/blockscout/pull/1895), [#2031](https://github.com/poanetwork/blockscout/pull/2031) - added new themes and logos for poa, eth, rinkeby, goerli, ropsten, kovan, sokol, xdai, etc, rsk - [#2010](https://github.com/poanetwork/blockscout/pull/2010) - added "block not found" and "tx not found pages" - [#1928](https://github.com/poanetwork/blockscout/pull/1928) - pagination styles were updated @@ -21,7 +20,7 @@ - [#1807](https://github.com/poanetwork/blockscout/pull/1807) - New theming capabilites. ### Fixes - +- [#2033](https://github.com/poanetwork/blockscout/pull/2033) - Header nav. dropdown active element color issue - [#2019](https://github.com/poanetwork/blockscout/pull/2019) - Fixed the missing tx hashes. - [#2020](https://github.com/poanetwork/blockscout/pull/2020) - Fixed a bug triggered when a second click to a selected tab caused the other tabs to hide. - [#1944](https://github.com/poanetwork/blockscout/pull/1944) - fixed styles for token's dropdown.