css transitions were too slow, sped up

This commit is contained in:
Kris Aubuchon 2013-10-21 00:45:19 -04:00
parent 94b5b24d88
commit d4db161133
2 changed files with 7 additions and 7 deletions

View File

@ -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;

View File

@ -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;
}