Merge pull request #105 from status-im/bug/fix-dropdown

[bug] fix dropdown menu
This commit is contained in:
Teemu Patja 2017-10-30 20:56:55 +02:00 committed by GitHub
commit 4bb20d35d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 6 deletions

View File

@ -37,8 +37,8 @@
(defn user-dropdown [user items]
(let [menu (if @user-dropdown-open?
[:div.ui.menu.transition.visible]
[:div.ui.menu.transition.hidden])
[:div.ui.menu.transition.visible]
[:div.ui.menu.transition.hidden])
avatar-url (:avatar_url user)]
[:div.ui.left.item.dropdown
{:on-click #(swap! user-dropdown-open? not)}
@ -185,9 +185,10 @@
show-top-hunters? #(contains? #{:bounties :activity} @current-page)]
(fn []
[:div.ui.pusher
[:div.vertical.commiteth-background.wide]
[page-header]
[:div.ui.vertical.segment
[:div.ui.container
[:div.ui.container.page
[:div.ui.grid.stackable
[:div {:class (str (if (show-top-hunters?) "ten" "sixteen")
" wide computer sixteen wide tablet column")}

View File

@ -45,12 +45,21 @@
.commiteth-header {
background-color: #57a7ed!important;
border-radius: 0em;
padding-top: 1.5em;
padding-bottom: 2.5em;
z-index: 1;
}
.commiteth-background {
background-color: #57a7ed!important;
width: 100%;
height: 150px;
position: absolute;
top: 0;
left: 0;
z-index: -2;
}
.status-logo {
width: 42px;
@ -173,8 +182,7 @@
border-radius: 8px;
border: none;
padding: .5em;
z-index: 999;
transform: translate(100%, -100%);
visibility: hidden;
.item>a {
color: #fff;
pointer: default;
@ -430,6 +438,10 @@
}
.ui.container.page {
z-index: -1;
position: relative;
}
.ui.cards>.card {
border: #e7e7e7 solid 0.1em;