display notification in dev hub on the header (bug 863472)

This commit is contained in:
Jen Fong-Adwent 2013-04-23 18:01:35 -04:00
Родитель a2c14ae7e7
Коммит 8c8a7a1b30
2 изменённых файлов: 12 добавлений и 0 удалений

Просмотреть файл

@ -21,6 +21,14 @@ faded-border() {
}
}
.landing .notification-box {
cursor: pointer;
position: fixed;
top: 0;
width: 930px;
z-index: 300;
}
#landing-page {
color: $medium-gray;
font-size: 14px;

Просмотреть файл

@ -87,4 +87,8 @@
self.parent().toggleClass('active');
});
$('.notification-box').on('click', function() {
$(this).addClass('hidden');
});
})();