diff --git a/app/assets/stylesheets/layout.scss b/app/assets/stylesheets/layout.scss
index 2a78d3cc7..0be3d4eea 100644
--- a/app/assets/stylesheets/layout.scss
+++ b/app/assets/stylesheets/layout.scss
@@ -20,6 +20,7 @@
// 18. Comments
// 19. Flags
// 20. Accesibility
+// 21. Activity
//
// 01. Variables
@@ -2015,3 +2016,58 @@ table {
clip: rect(0, 0, 0, 0);
border: 0;
}
+
+// 21. Activity
+// - - - - - - - - - - - - - - - - - - - - - - - - -
+
+.activity {
+ margin-bottom: rem-calc(48);
+ margin-top: rem-calc(24);
+
+ .sub-nav {
+ background: none;
+ border-bottom: 1px solid $border;
+ border-radius: 0;
+ padding-bottom: 0;
+
+ dd.active {
+ background: none;
+ border-bottom: 2px solid $brand;
+ border-radius: 0;
+ color: $brand;
+ }
+ }
+
+ table {
+ border: 0;
+
+ td {
+ padding-left: rem-calc(36);
+ position: relative;
+
+ &:before {
+ color: $brand;
+ font-family: "icons" !important;
+ font-size: rem-calc(24);
+ left: 4px;
+ position: absolute;
+
+ }
+ }
+
+ &.activity-comments td:before {
+ content: "e";
+ top: 18px;
+ }
+
+ &.activity-debates td:before {
+ content: "i";
+ top: 14px;
+ }
+
+ &.activity-proposals td:before {
+ content: "h";
+ top: 18px;
+ }
+ }
+}
diff --git a/app/assets/stylesheets/participation.scss b/app/assets/stylesheets/participation.scss
index 583b614b3..1415ef33d 100644
--- a/app/assets/stylesheets/participation.scss
+++ b/app/assets/stylesheets/participation.scss
@@ -416,8 +416,15 @@
}
.author {
- color: $text;
font-weight: bold;
+
+ a {
+ color: $link !important;
+
+ &:hover {
+ color: $link-hover !important;
+ }
+ }
}
aside {
diff --git a/app/views/users/_activity_page.html.erb b/app/views/users/_activity_page.html.erb
index 0b39ad241..296f7e5c2 100644
--- a/app/views/users/_activity_page.html.erb
+++ b/app/views/users/_activity_page.html.erb
@@ -1,4 +1,3 @@
<%= render "proposals" if @proposals.present? %>
<%= render "debates" if @debates.present? %>
<%= render "comments" if @comments.present? %>
-
diff --git a/app/views/users/_comments.html.erb b/app/views/users/_comments.html.erb
index 1340fdb7e..2a8c9d66b 100644
--- a/app/views/users/_comments.html.erb
+++ b/app/views/users/_comments.html.erb
@@ -1,11 +1,8 @@
-