force hardware acceleration for speedier typing on mobile webkit browsers
This commit is contained in:
parent
e3bf03636b
commit
ae1fd49954
1 changed files with 8 additions and 1 deletions
|
|
@ -32,7 +32,6 @@ body {
|
|||
max-width: 700px;
|
||||
}
|
||||
|
||||
|
||||
.stream_element,
|
||||
.comments {
|
||||
overflow: auto;
|
||||
|
|
@ -259,6 +258,9 @@ header {
|
|||
z-index: 10;
|
||||
top: 0;
|
||||
|
||||
/* force hardware acceleration on webkit browsers */
|
||||
-webkit-transform: translateZ(0);
|
||||
|
||||
border: {
|
||||
bottom: 1px solid #222;
|
||||
}
|
||||
|
|
@ -266,6 +268,11 @@ header {
|
|||
.right {
|
||||
float: right; } }
|
||||
|
||||
.stream_element {
|
||||
/* force hardware acceleration on webkit browsers */
|
||||
-webkit-transform: translateZ(0);
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
a,
|
||||
|
|
|
|||
Loading…
Reference in a new issue