fix dashboard avatars and filter padding
This commit is contained in:
parent
c38a64bc2f
commit
e350f7bb04
|
@ -24,7 +24,6 @@
|
|||
|
||||
@import "app/animation/tractor";
|
||||
|
||||
@import "app/modules/section";
|
||||
@import "app/modules/loader";
|
||||
@import "app/modules/tiles";
|
||||
@import "app/modules/buttons";
|
||||
|
|
|
@ -168,6 +168,7 @@
|
|||
padding: 0.3em 0.5em
|
||||
color: $white
|
||||
text-decoration: none
|
||||
line-height: 1
|
||||
.icon-trigger path,
|
||||
.icon-eye path
|
||||
fill: $white
|
||||
|
@ -192,6 +193,7 @@
|
|||
padding: 0.3em .5em 0.4em
|
||||
text-decoration: none
|
||||
color: $grey-dark
|
||||
line-height: 1.4
|
||||
&:hover
|
||||
color: $white
|
||||
background-color: $teal-dark
|
||||
|
|
|
@ -22,6 +22,11 @@
|
|||
margin: auto
|
||||
max-width: 1024px
|
||||
|
||||
.dashboard-filter
|
||||
padding: 0 $column-gutter/2
|
||||
@media #{$medium-up}
|
||||
padding: 0
|
||||
|
||||
.dashboard-active
|
||||
padding: 0
|
||||
margin: 3rem 0 5rem
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
.section
|
||||
font-size: $font-size-normal
|
||||
|
||||
.section--white
|
||||
background-color: $white
|
||||
|
||||
.section--maxheight
|
||||
height: 3.3em
|
|
@ -5,7 +5,7 @@
|
|||
{{else}}
|
||||
<a href="" title="">
|
||||
{{#if selected }}
|
||||
<img src="https://placehold.it/30x30" alt="">
|
||||
<img src="{{selected.avatar_url}}" alt="{{org.login}}">
|
||||
{{#if selected.name}}
|
||||
{{selected.name}}
|
||||
{{else}}
|
||||
|
@ -19,11 +19,11 @@
|
|||
</div>
|
||||
<ul class="filter-dropdown">
|
||||
{{#if selected }}
|
||||
<li><a href="#" title="" {{action 'select'}}>All organizations</a></li>
|
||||
<li><a title="" {{action 'select'}}>All organizations</a></li>
|
||||
{{/if}}
|
||||
{{#each org in orgs}}
|
||||
<li>
|
||||
<a href="#" title="" {{action 'select' org}}><img src="https://placehold.it/30x30" alt="">
|
||||
<a title="" {{action 'select' org}}><img src="{{org.avatar_url}}" alt="">
|
||||
{{#if org.name }}
|
||||
{{org.name}}
|
||||
{{else}}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<div id="filters" class="section section--white section--maxheight">
|
||||
<div id="filters" class="dashboard-filter">
|
||||
<div class="row">
|
||||
{{orgs-filter orgs=orgs selected=selectedOrg action="selectOrg"}}
|
||||
<div class="float-right">
|
||||
|
|
Loading…
Reference in New Issue
Block a user