From c2f469a06ff7bf5248755fd4d65e22e9b9f6e38d Mon Sep 17 00:00:00 2001 From: Ihor Kysylevych Date: Tue, 20 Feb 2018 21:06:55 +0200 Subject: [PATCH] [FIX #262] fix UI filtering/sorting issues (Windows) --- src/cljs/commiteth/bounties.cljs | 8 +++----- src/less/style.less | 7 +++---- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/src/cljs/commiteth/bounties.cljs b/src/cljs/commiteth/bounties.cljs index d4eaa8fb..1cb33122 100644 --- a/src/cljs/commiteth/bounties.cljs +++ b/src/cljs/commiteth/bounties.cljs @@ -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 [] @@ -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]])))) diff --git a/src/less/style.less b/src/less/style.less index bef51baf..4824ab5b 100644 --- a/src/less/style.less +++ b/src/less/style.less @@ -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; @@ -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; } }