about summary refs log tree commit diff
path: root/app/assets/stylesheets
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-02-18 02:37:59 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-02-18 02:37:59 +0100
commit9e99b8c068b11ec2d0f3b5d560cae0166c247342 (patch)
tree35de1962d5a024642dda432c747da6be7215ce8d /app/assets/stylesheets
parent1d5dfda3d45409f95b68d9e577f455309033da5f (diff)
Fix #642 - Add "empty column" text to home/notifications
Diffstat (limited to 'app/assets/stylesheets')
-rw-r--r--app/assets/stylesheets/components.scss19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/assets/stylesheets/components.scss b/app/assets/stylesheets/components.scss
index 912405a9f..bc56891f3 100644
--- a/app/assets/stylesheets/components.scss
+++ b/app/assets/stylesheets/components.scss
@@ -1182,3 +1182,22 @@ button.active i.fa-retweet {
     background: rgba($color8, 0.1);
   }
 }
+
+.empty-column-indicator {
+  color: lighten($color1, 20%);
+  text-align: center;
+  padding: 20px;
+  padding-top: 100px;
+  font-size: 15px;
+  font-weight: 400;
+  cursor: default;
+
+  a {
+    color: $color4;
+    text-decoration: none;
+
+    &:hover {
+      text-decoration: underline;
+    }
+  }
+}