From d4db161133d2f1cade3c690370e490c2c7b8bbac Mon Sep 17 00:00:00 2001 From: Kris Aubuchon Date: Mon, 21 Oct 2013 00:45:19 -0400 Subject: [PATCH] css transitions were too slow, sped up --- app/assets/stylesheets/desktop/topic-post.scss | 10 +++++----- app/assets/stylesheets/desktop/topic.scss | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/app/assets/stylesheets/desktop/topic-post.scss b/app/assets/stylesheets/desktop/topic-post.scss index 3150b8fdf..ed960fc73 100644 --- a/app/assets/stylesheets/desktop/topic-post.scss +++ b/app/assets/stylesheets/desktop/topic-post.scss @@ -42,8 +42,8 @@ html {background-color: #fff;} .gutter { .reply-new { opacity:0; - transition: linear 1s; - -webkit-transition: linear 1s; + transition: linear 0.15s; + -webkit-transition: linear 0.15s; } } @@ -51,8 +51,8 @@ html {background-color: #fff;} section.post-menu-area { .discourse-no-touch & { opacity: 0.2; - transition: linear 1s; - -webkit-transition: linear 1s; + transition: linear 0.15s; + -webkit-transition: linear 0.15s; } } @@ -130,7 +130,7 @@ nav.post-controls { background: transparent; border: none; margin-left: 1px; - transition: all linear .1s; + transition: all linear 0.15s; outline: none; //removes the pesky square button highlight from some browsers &:hover { background: #eee; diff --git a/app/assets/stylesheets/desktop/topic.scss b/app/assets/stylesheets/desktop/topic.scss index 262a2fa6d..cbee3ef6f 100644 --- a/app/assets/stylesheets/desktop/topic.scss +++ b/app/assets/stylesheets/desktop/topic.scss @@ -61,8 +61,8 @@ i { border: 1px solid #ddd; padding: 2px 4px; border-radius: 20px; - transition: linear 1s; - -webkit-transition: linear 1s; + transition: linear 0.15s; + -webkit-transition: linear 0.15s; }