about summary refs log tree commit diff
path: root/app/assets/stylesheets
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-08-31 22:58:10 +0200
committerEugen Rochko <eugen@zeonfederated.com>2016-08-31 22:58:10 +0200
commitdbae8062f4ff6dcad98c90f6654b27111806013a (patch)
tree68b423ac1d0c52b601dfac6838e26ce049323f57 /app/assets/stylesheets
parent1e0e17ba85deebd6763ed9414f3cc2e2a23e1dbd (diff)
Replies in the compose form
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/components.scss63
1 files changed, 62 insertions, 1 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss
index b63ec7154..11f4cb49f 100644
--- a/app/assets/stylesheets/components.scss
+++ b/app/assets/stylesheets/components.scss
@@ -1,4 +1,38 @@
-.status__content {
+.button {
+  background-color: #2b90d9;
+
+  &:hover {
+    background-color: #489fde;
+  }
+
+  &:disabled {
+    background-color: #9baec8;
+  }
+}
+
+.icon-button {
+  color: #616b86;
+  cursor: pointer;
+
+  &:hover {
+    color: #717b98;
+  }
+
+  &.disabled {
+    color: #535b72;
+    cursor: default;
+  }
+}
+
+.compose-drawer__textarea {
+  background: #fff;
+
+  &:disabled {
+    background: #d9e1e8;
+  }
+}
+
+.status__content, .reply-indicator__content {
   font-size: 15px;
   line-height: 20px;
   white-space: pre-wrap;
@@ -24,3 +58,30 @@
     }
   }
 }
+
+.reply-indicator__content {
+  color: #282c37;
+  font-size: 14px;
+
+  a {
+    color: #535b72;
+  }
+}
+
+.status__display-name, .status__relative-time {
+  text-decoration: none;
+}
+
+.status__display-name, .reply-indicator__display-name {
+  &:hover {
+    strong {
+      text-decoration: underline;
+    }
+  }
+}
+
+.status__relative-time {
+  &:hover {
+    text-decoration: underline;
+  }
+}