mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
css transitions were too slow, sped up
This commit is contained in:
parent
94b5b24d88
commit
d4db161133
2 changed files with 7 additions and 7 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue