Skip to content

Commit

Permalink
[FIX status-im#262] fix UI filtering/sorting issues (Windows)
Browse files Browse the repository at this point in the history
  • Loading branch information
ihor-lev committed Feb 22, 2018
1 parent 03abdd0 commit c2f469a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 9 deletions.
8 changes: 3 additions & 5 deletions src/cljs/commiteth/bounties.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,7 @@
[:div.item-counts-label-and-sorting-container
[:div.item-counts-label
[:span (str "Showing " left "-" right " of " total-count)]]
(when-not (util/os-windows?)
[bounties-sort-view])])
[bounties-sort-view]])
(display-data-page bounty-page-data bounty-item container-element)]))

(defn bounties-page []
Expand All @@ -227,7 +226,6 @@
[:div.ui.container.open-bounties-container
{:ref #(reset! container-element %1)}
[:div.open-bounties-header "Bounties"]
(when-not (util/os-windows?)
[:div.open-bounties-filter-and-sort
[bounty-filters-view]])
[:div.open-bounties-filter-and-sort
[bounty-filters-view]]
[bounties-list @bounty-page-data container-element]]))))
7 changes: 3 additions & 4 deletions src/less/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ label[for="input-hidden"] {
line-height: 1.5;
z-index: 999;
max-height: 300px;
overflow: scroll;
overflow: auto;

.open-bounties-filter-element-tooltip-value-input-container {
display: flex;
Expand Down Expand Up @@ -722,9 +722,8 @@ label[for="input-hidden"] {
.icon-forward-white-box {
width: 24px;
height: 24px;
display: flex;
justify-content: center;
align-content: center;
padding: 4px;
text-align: center;
}
}

Expand Down

0 comments on commit c2f469a

Please sign in to comment.