Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/js/components/notifications.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ var Notifications = React.createClass({
if (notificationsEmpty) {
notifications = (
<div>
<h2>There are no notifications for you.</h2>
<h3>All clean!</h3>
<h2>Awesome! <span className='what'>&nbsp;</span></h2>
<h3>No new notifications.</h3>
<img className='img-responsive emoji' src='images/all-read.png' />
</div>
);
Expand Down
43 changes: 43 additions & 0 deletions src/less/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,49 @@ input {
}
}

&.all-read {
@-webkit-keyframes typing {
0% {
width: 100%;
}

20% {
width: 100%;
}

100% {
width: 0;
}
}

h2 {
.FontOpenSansSemibold();
font-style: italic;
position: relative;
margin: 10px auto;
}

h3 {
.FontOpenSansLight();
position: relative;
margin: 5px auto;
}

h2, h3 {
}

h2 .what {
position:absolute;
top:0;
right:0;
width:0;
background: @ThemePrimary;

box-sizing: border-box;
-webkit-animation: typing 1.5s steps(50, end);
}
}

.fork {
padding: 10px 0;
font-size: 18px;
Expand Down