about summary refs log tree commit diff
path: root/app/assets/stylesheets/stream_entries.scss
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-03-06 12:34:39 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-03-06 12:34:39 +0100
commitaab330eb2d39711e19753e89ba7ff67521929cf0 (patch)
treea652e2dc7f3bbd67264f45bb9c7c010e149c03c8 /app/assets/stylesheets/stream_entries.scss
parentab80ebdeecf9410c5b43dde333b2e036e1198e24 (diff)
Adjusting design of public pages, optimizing account page queries
Diffstat (limited to 'app/assets/stylesheets/stream_entries.scss')
-rw-r--r--app/assets/stylesheets/stream_entries.scss32
1 files changed, 18 insertions, 14 deletions
diff --git a/app/assets/stylesheets/stream_entries.scss b/app/assets/stylesheets/stream_entries.scss
index 5fc6e66cd..ce5c7f4ba 100644
--- a/app/assets/stylesheets/stream_entries.scss
+++ b/app/assets/stylesheets/stream_entries.scss
@@ -9,34 +9,38 @@
     border-left: 2px solid #fff;
 
     &.entry-reblog {
-      border-left: 2px solid $tertiary-color;
-
-      .content {
-        a {
-          color: $tertiary-color;
-        }
-      }
+      border-left-color: #2b90d9;
     }
 
     &.entry-predecessor, &.entry-successor {
-
-      .content {
-        a {
-
-        }
-      }
+      background: #d9e1e8;
+      border-left-color: #d9e1e8;
     }
 
     &.entry-follow, &.entry-favourite {
       .content {
         padding-top: 10px;
         padding-bottom: 10px;
+
+        strong {
+          font-weight: 500;
+        }
       }
     }
 
     &:last-child {
       border-bottom: 0;
-      border-radius: 0 0 4px 0;
+      border-radius: 0 0 4px 4px;
+    }
+  }
+
+  &.activity-stream-headless {
+    .entry:first-child {
+      border-radius: 4px 4px 0 0;
+
+      &:last-child {
+        border-radius: 4px;
+      }
     }
   }