Fix bufferlist CSS transform for WebKit
iOS, Safari, and the stock Android browser (up to 4.4) seem to need this
This commit is contained in:
parent
892563fb39
commit
3d76c1f785
1 changed files with 3 additions and 0 deletions
|
@ -573,15 +573,18 @@ img.emoji {
|
||||||
|
|
||||||
#sidebar[data-state=visible] {
|
#sidebar[data-state=visible] {
|
||||||
transform: translate(0,0);
|
transform: translate(0,0);
|
||||||
|
-webkit-transform: translate(0,0); /* Safari */
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar[data-state=hidden] {
|
#sidebar[data-state=hidden] {
|
||||||
transform: translate(-200px,0);
|
transform: translate(-200px,0);
|
||||||
|
-webkit-transform: translate(-200px,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.content[sidebar-state=visible] #bufferlines, .content[sidebar-state=visible] .footer {
|
.content[sidebar-state=visible] #bufferlines, .content[sidebar-state=visible] .footer {
|
||||||
margin-left: 0px;
|
margin-left: 0px;
|
||||||
transform: translate(200px,0);
|
transform: translate(200px,0);
|
||||||
|
-webkit-transform: translate(200px,0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#topbar .title {
|
#topbar .title {
|
||||||
|
|
Loading…
Reference in a new issue