summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-12-15 14:56:40 -0500
committerhmhealey <harrisonmhealey@gmail.com>2015-12-16 09:53:39 -0500
commit872f001fbbebe93ae7fc4b92a6d17a378e0d50d5 (patch)
tree82acbe344f925e956978e7001b7f6e19e264f71e /web/sass-files/sass
parent34e0ac00e81f5e8912e341e4fece3b38dbb6cf76 (diff)
downloadchat-872f001fbbebe93ae7fc4b92a6d17a378e0d50d5.tar.gz
chat-872f001fbbebe93ae7fc4b92a6d17a378e0d50d5.tar.bz2
chat-872f001fbbebe93ae7fc4b92a6d17a378e0d50d5.zip
Added floating post timestamp
Diffstat (limited to 'web/sass-files/sass')
-rw-r--r--web/sass-files/sass/partials/_post.scss32
-rw-r--r--web/sass-files/sass/partials/_responsive.scss5
2 files changed, 33 insertions, 4 deletions
diff --git a/web/sass-files/sass/partials/_post.scss b/web/sass-files/sass/partials/_post.scss
index fbebb4e98..4e5968254 100644
--- a/web/sass-files/sass/partials/_post.scss
+++ b/web/sass-files/sass/partials/_post.scss
@@ -211,6 +211,10 @@ body.ios {
overflow-y: hidden;
height: 100%;
+ .inactive {
+ display: none;
+ }
+
.post-list-holder-by-time {
background: #fff;
overflow-y: scroll;
@@ -222,9 +226,6 @@ body.ios {
&::-webkit-scrollbar {
width: 0px !important;
}
- &.inactive {
- display: none;
- }
&.active {
display: inline;
}
@@ -247,6 +248,31 @@ body.ios {
}
}
+.post-list__timestamp {
+ position: absolute;
+ top: 8px;
+ left: 50%;
+ z-index: 50;
+ width: 120px;
+ text-align: center;
+ background: $primary-color;
+ color: #fff;
+ @include border-radius(3px);
+ font-size: 12px;
+ line-height: 25px;
+ margin-left: -60px;
+ -webkit-font-smoothing: initial;
+ @include single-transition(all, 0.3s, ease, 1.0s);
+ @include translateY(-45px);
+ @include opacity(0);
+
+ &.scrolling {
+ @include single-transition(all, 0.3s, ease);
+ @include translateY(0);
+ @include opacity(0.8);
+ }
+}
+
.post-create__container {
form {
width: 100%;
diff --git a/web/sass-files/sass/partials/_responsive.scss b/web/sass-files/sass/partials/_responsive.scss
index 2aa130fa9..c493c6aeb 100644
--- a/web/sass-files/sass/partials/_responsive.scss
+++ b/web/sass-files/sass/partials/_responsive.scss
@@ -241,6 +241,9 @@
}
}
}
+ .post-list__timestamp {
+ display: block;
+ }
.signup-team__container {
padding: 30px 0;
margin-bottom: 30px;
@@ -795,4 +798,4 @@
font-size: 2em;
}
}
-} \ No newline at end of file
+}