Skip to content

Commit

Permalink
fix dropdown padding
Browse files Browse the repository at this point in the history
  • Loading branch information
SachaG committed Mar 27, 2015
1 parent 304491f commit 3f323cd
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template name="notificationItem">
<li class="notification-item {{#if read}}read{{/if}}">
<li class="dropdown-item notification-item {{#if read}}read{{/if}}">
<span class="notification-timestamp">{{timeAgo timestamp}}</span>
<div class="notification-html">
{{{notificationHTML}}}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<template name="notificationsMarkAsRead">
<li><a href="#" class="button mark-as-read btn btn-primary">{{_ "mark_as_read"}}</a></li>
<li class="dropdown-item"><a href="#" class="button mark-as-read btn btn-primary">{{_ "mark_as_read"}}</a></li>
</template>
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@
a.button{
color: white;
}
ul{
.dropdown-contents{
background:white;
padding:1px 10px;
padding: 10px;
min-width:180px;
border-radius: 3px;
box-shadow: 0 1px 3px black(0.35);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
.notification-item{
margin-bottom: 10px;
}

.notifications-menu.dropdown-accordion{
.dropdown-contents{
max-height: 0px;
Expand Down

0 comments on commit 3f323cd

Please sign in to comment.