mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -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 {
|
.gutter {
|
||||||
.reply-new {
|
.reply-new {
|
||||||
opacity:0;
|
opacity:0;
|
||||||
transition: linear 1s;
|
transition: linear 0.15s;
|
||||||
-webkit-transition: linear 1s;
|
-webkit-transition: linear 0.15s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -51,8 +51,8 @@ html {background-color: #fff;}
|
||||||
section.post-menu-area {
|
section.post-menu-area {
|
||||||
.discourse-no-touch & {
|
.discourse-no-touch & {
|
||||||
opacity: 0.2;
|
opacity: 0.2;
|
||||||
transition: linear 1s;
|
transition: linear 0.15s;
|
||||||
-webkit-transition: linear 1s;
|
-webkit-transition: linear 0.15s;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -130,7 +130,7 @@ nav.post-controls {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
margin-left: 1px;
|
margin-left: 1px;
|
||||||
transition: all linear .1s;
|
transition: all linear 0.15s;
|
||||||
outline: none; //removes the pesky square button highlight from some browsers
|
outline: none; //removes the pesky square button highlight from some browsers
|
||||||
&:hover {
|
&:hover {
|
||||||
background: #eee;
|
background: #eee;
|
||||||
|
|
|
@ -61,8 +61,8 @@ i {
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
padding: 2px 4px;
|
padding: 2px 4px;
|
||||||
border-radius: 20px;
|
border-radius: 20px;
|
||||||
transition: linear 1s;
|
transition: linear 0.15s;
|
||||||
-webkit-transition: linear 1s;
|
-webkit-transition: linear 0.15s;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue