aboutsummaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/stream_entries.scss
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/stream_entries.scss')
-rw-r--r--app/assets/stylesheets/stream_entries.scss52
1 files changed, 45 insertions, 7 deletions
diff --git a/app/assets/stylesheets/stream_entries.scss b/app/assets/stylesheets/stream_entries.scss
index ce5c7f4ba..31bec6374 100644
--- a/app/assets/stylesheets/stream_entries.scss
+++ b/app/assets/stylesheets/stream_entries.scss
@@ -1,7 +1,6 @@
-
.activity-stream {
clear: both;
- box-shadow: 4px 3px 0 rgba(0, 0, 0, 0.1);
+ box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
.entry {
border-bottom: 1px solid #d9e1e8;
@@ -49,14 +48,14 @@
}
.avatar {
- width: 48px;
+ width: 56px;
padding: 15px;
img {
- width: 48px;
- height: 48px;
+ width: 56px;
+ height: 56px;
display: block;
- border-radius: 48px;
+ border-radius: 56px;
}
}
@@ -65,10 +64,39 @@
}
.header {
- margin-bottom: 5px;
+ margin-bottom: 10px;
padding: 15px;
padding-bottom: 0;
padding-left: 8px;
+ display: flex;
+
+ .header__left {
+ flex: 1;
+ }
+
+ .header__right {
+ .counter-btn {
+ color: #d9e1e8;
+ display: inline-block;
+ padding: 0 10px;
+ cursor: default;
+
+ .counter-number {
+ font-weight: 500;
+ display: inline-block;
+ margin-left: 3px;
+ font-size: 12px;
+ }
+
+ &.reblogged {
+ color: #2b90d9;
+ }
+
+ &.favourited {
+ color: #df405a;
+ }
+ }
+ }
.name {
text-decoration: none;
@@ -119,6 +147,16 @@
&:hover {
text-decoration: underline;
}
+
+ &.mention {
+ &:hover {
+ text-decoration: none;
+
+ span {
+ text-decoration: underline;
+ }
+ }
+ }
}
}