diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/css/index.css | 18 | ||||
-rw-r--r-- | public/less/_user.less | 21 |
2 files changed, 39 insertions, 0 deletions
diff --git a/public/css/index.css b/public/css/index.css index 2d86e812e3..f5581c3eaf 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -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; diff --git a/public/less/_user.less b/public/less/_user.less index 3e37011cfb..b446351bd4 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: #21ba45; + } + .octicon-issue-closed { + color: #d01919; + } + .octicon-git-merge { + color: #a333c8; + } + } } |