mirror of
https://github.com/jimeh/modern_bubbling.git
synced 2026-02-19 03:46:39 +00:00
fixed safari 4 bugs properly, and message hover issue
This commit is contained in:
@@ -299,6 +299,7 @@
|
||||
document.body.style.height = windowHeight + "px"; /* Safari 4 background fix */
|
||||
} else {
|
||||
contentElement.style.position = 'static';
|
||||
document.body.style.height = ""; /* Safari 4 background fix */
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -26,16 +26,14 @@
|
||||
body {
|
||||
/* font property used for development only */
|
||||
/* font: 11px helvetica;*/
|
||||
background: #fff url(images/bg.jpg) repeat-x left bottom;
|
||||
background: #fff url("images/bg.jpg") repeat-x left bottom;
|
||||
color: #303030;
|
||||
margin: 0;
|
||||
z-index: -3;
|
||||
}
|
||||
|
||||
#Chat {
|
||||
padding: 5px 10px 12px 10px;
|
||||
overflow: hidden;
|
||||
z-index: -2;
|
||||
}
|
||||
|
||||
.emoticon {
|
||||
@@ -47,7 +45,7 @@ body {
|
||||
|
||||
.history {
|
||||
opacity: 0.4;
|
||||
-webkit-transition: opacity 1s linear;
|
||||
-webkit-transition: opacity 0.5s linear;
|
||||
}
|
||||
|
||||
.history:hover {
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
.message {
|
||||
position: relative;
|
||||
min-height: 42px;
|
||||
z-index: 0;
|
||||
}
|
||||
.message .body {
|
||||
padding: 9px 20px 22px 20px;
|
||||
|
||||
@@ -299,6 +299,7 @@
|
||||
document.body.style.height = windowHeight + "px"; /* Safari 4 background fix */
|
||||
} else {
|
||||
contentElement.style.position = 'static';
|
||||
document.body.style.height = ""; /* Safari 4 background fix */
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -26,16 +26,14 @@
|
||||
body {
|
||||
/* font property used for development only */
|
||||
/* font: 11px helvetica;*/
|
||||
background: #fff url(images/bg.jpg) repeat-x left bottom;
|
||||
background: #fff url("images/bg.jpg") repeat-x left bottom;
|
||||
color: #303030;
|
||||
margin: 0;
|
||||
z-index: -3;
|
||||
}
|
||||
|
||||
#Chat {
|
||||
padding: 5px 10px 12px 10px;
|
||||
overflow: hidden;
|
||||
z-index: -2;
|
||||
}
|
||||
|
||||
.emoticon {
|
||||
@@ -47,7 +45,7 @@ body {
|
||||
|
||||
.history {
|
||||
opacity: 0.4;
|
||||
-webkit-transition: opacity 1s linear;
|
||||
-webkit-transition: opacity 0.5s linear;
|
||||
}
|
||||
|
||||
.history:hover {
|
||||
|
||||
@@ -3,7 +3,6 @@
|
||||
.message {
|
||||
position: relative;
|
||||
min-height: 42px;
|
||||
z-index: 0;
|
||||
}
|
||||
.message .body {
|
||||
padding: 9px 20px 22px 20px;
|
||||
|
||||
Reference in New Issue
Block a user