diff --git a/app/assets/stylesheets/debates.scss b/app/assets/stylesheets/debates.scss
index 2da1dd9eb..939373e57 100644
--- a/app/assets/stylesheets/debates.scss
+++ b/app/assets/stylesheets/debates.scss
@@ -497,7 +497,7 @@
font-weight: bold;
span {
- font-size: rem-calc(14);
+ font-size: rem-calc(18);
font-weight: normal;
opacity: .8;
}
@@ -546,11 +546,11 @@
margin-top: rem-calc(6);
padding: rem-calc(6) rem-calc(12);
- &.official {
+ &.is-official {
background: $comment-official;
}
- &.author {
+ &.is-author {
background: $comment-author;
}
}
diff --git a/app/assets/stylesheets/participacion.scss b/app/assets/stylesheets/participacion.scss
index 32b1d9264..81e6a2481 100644
--- a/app/assets/stylesheets/participacion.scss
+++ b/app/assets/stylesheets/participacion.scss
@@ -631,8 +631,12 @@ img.initialjs-avatar {
color: white;
}
-.author-debate {
- background: $author-debate;
+.is-author {
+ background: $author;
+}
+
+.is-association {
+ background: $association;
}
.level-1 {
diff --git a/app/assets/stylesheets/variables.scss b/app/assets/stylesheets/variables.scss
index 5948a51ff..95fad743c 100644
--- a/app/assets/stylesheets/variables.scss
+++ b/app/assets/stylesheets/variables.scss
@@ -72,7 +72,8 @@ $level-3: #43AC6A;
$level-4: #43AC6A;
$level-5: #F08A24;
-$author-debate: $debates;
+$author: #008CCF;
+$association: #222222;
$comment-author: rgba(45,144,248,.15);
$comment-official: rgba(255,241,204,1);
diff --git a/app/views/comments/_comment.html.erb b/app/views/comments/_comment.html.erb
index a1b135117..9ea5cc930 100644
--- a/app/views/comments/_comment.html.erb
+++ b/app/views/comments/_comment.html.erb
@@ -16,18 +16,23 @@
Cargo oficial
+
+ •
+
+ Puesto en la asociación
+
•
-
+
<%= t("debates.comment.author") %>
-
+
-
+
diff --git a/app/views/comments/_form.html.erb b/app/views/comments/_form.html.erb
index d7fcb5cdd..5e34a9f84 100644
--- a/app/views/comments/_form.html.erb
+++ b/app/views/comments/_form.html.erb
@@ -1,6 +1,6 @@