Merge pull request #539 from andreynering/notifications-step-2

Notifications - Step 2
This commit is contained in:
Andrey Nering 2017-01-05 11:53:01 -02:00 committed by GitHub
commit 79d527195d
10 changed files with 233 additions and 6 deletions

View file

@ -2704,6 +2704,24 @@ footer .ui.language .menu {
.user.followers .follow .ui.button {
padding: 8px 15px;
}
.user.notification .octicon {
float: left;
font-size: 2em;
}
.user.notification .content {
float: left;
margin-left: 7px;
}
.user.notification .octicon-issue-opened,
.user.notification .octicon-git-pull-request {
color: #21ba45;
}
.user.notification .octicon-issue-closed {
color: #d01919;
}
.user.notification .octicon-git-merge {
color: #a333c8;
}
.dashboard {
padding-top: 15px;
padding-bottom: 80px;

View file

@ -74,4 +74,25 @@
}
}
}
&.notification {
.octicon {
float: left;
font-size: 2em;
}
.content {
float: left;
margin-left: 7px;
}
.octicon-issue-opened, .octicon-git-pull-request {
color: #21ba45;
}
.octicon-issue-closed {
color: #d01919;
}
.octicon-git-merge {
color: #a333c8;
}
}
}