From 6069abe5fdf49cbd9a80c9df0c136587fc8601b5 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Fri, 30 Dec 2016 16:49:54 -0200 Subject: Notifications - Step 2 --- public/css/index.css | 18 ++++++++++++++++++ public/less/_user.less | 21 +++++++++++++++++++++ 2 files changed, 39 insertions(+) (limited to 'public') diff --git a/public/css/index.css b/public/css/index.css index d64c71ca2a..a8d616cc05 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -2694,6 +2694,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: green; +} +.user.notification .octicon-issue-closed { + color: red; +} +.user.notification .octicon-git-merge { + color: purple; +} .dashboard { padding-top: 15px; padding-bottom: 80px; diff --git a/public/less/_user.less b/public/less/_user.less index 3e37011cfb..d7acc4639e 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -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: green; + } + .octicon-issue-closed { + color: red; + } + .octicon-git-merge { + color: purple; + } + } } -- cgit v1.2.3 From f59672a18db930477269f783746d8ce057827e65 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Mon, 2 Jan 2017 16:40:50 -0200 Subject: More fine graned colors --- public/css/index.css | 6 +++--- public/less/_user.less | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'public') diff --git a/public/css/index.css b/public/css/index.css index a8d616cc05..54e7323432 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -2704,13 +2704,13 @@ footer .ui.language .menu { } .user.notification .octicon-issue-opened, .user.notification .octicon-git-pull-request { - color: green; + color: #21ba45; } .user.notification .octicon-issue-closed { - color: red; + color: #d01919; } .user.notification .octicon-git-merge { - color: purple; + color: #a333c8; } .dashboard { padding-top: 15px; diff --git a/public/less/_user.less b/public/less/_user.less index d7acc4639e..b446351bd4 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -86,13 +86,13 @@ } .octicon-issue-opened, .octicon-git-pull-request { - color: green; + color: #21ba45; } .octicon-issue-closed { - color: red; + color: #d01919; } .octicon-git-merge { - color: purple; + color: #a333c8; } } } -- cgit v1.2.3