summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
Diffstat (limited to 'public')
-rw-r--r--public/css/index.css9
-rw-r--r--public/less/_user.less24
2 files changed, 17 insertions, 16 deletions
diff --git a/public/css/index.css b/public/css/index.css
index c636d17d5f..1bb9e9fd40 100644
--- a/public/css/index.css
+++ b/public/css/index.css
@@ -2726,17 +2726,16 @@ footer .ui.language .menu {
.user.notification table tr {
cursor: pointer;
}
-.user.notification .octicon-issue-opened,
-.user.notification .octicon-git-pull-request {
+.user.notification .octicon.green {
color: #21ba45;
}
-.user.notification .octicon-issue-closed {
+.user.notification .octicon.red {
color: #d01919;
}
-.user.notification .octicon-git-merge {
+.user.notification .octicon.purple {
color: #a333c8;
}
-.user.notification .octicon-pin {
+.user.notification .octicon.blue {
color: #2185d0;
}
.dashboard {
diff --git a/public/less/_user.less b/public/less/_user.less
index d63b9b3de9..5411c1d062 100644
--- a/public/less/_user.less
+++ b/public/less/_user.less
@@ -99,17 +99,19 @@
}
}
- .octicon-issue-opened, .octicon-git-pull-request {
- color: #21ba45;
- }
- .octicon-issue-closed {
- color: #d01919;
- }
- .octicon-git-merge {
- color: #a333c8;
- }
- .octicon-pin {
- color: #2185d0;
+ .octicon {
+ &.green {
+ color: #21ba45;
+ }
+ &.red {
+ color: #d01919;
+ }
+ &.purple {
+ color: #a333c8;
+ }
+ &.blue {
+ color: #2185d0;
+ }
}
}
}