[ticket/218] Make sure clock doesn't cause trembling blocks in left column

B3P-218
This commit is contained in:
Marc Alexander
2014-03-17 16:16:18 +01:00
parent e7c32ec1f0
commit 3e06ac9fe2

View File

@@ -133,8 +133,8 @@ span.portal-corners-top-inner, span.portal-corners-bottom-inner{
/* RTL language fixes */ /* RTL language fixes */
.rtl .portal-navigation ul li a{ .rtl .portal-navigation ul li a{
background-image: url("./images/portal/arrowbullet_rtl.gif"); background-image: url("./images/portal/arrowbullet_rtl.gif");
background-position: center right; /*custom bullet list image*/ background-position: center right; /* custom bullet list image */
padding-right: 19px; /*link text is indented 19px*/ padding-right: 19px; /* link text is indented 19px */
} }
/* Portal clock /* Portal clock
@@ -143,6 +143,8 @@ span.portal-corners-top-inner, span.portal-corners-bottom-inner{
text-align: center; text-align: center;
min-height: 5em; min-height: 5em;
margin: 0 10%; margin: 0 10%;
/* set a fixed height to get rid of the trembling clock in IE9 */
height: 50px;
} }
.portal-clock { .portal-clock {
@@ -304,3 +306,9 @@ span.portal-corners-top-inner, span.portal-corners-bottom-inner{
display: inline-block; display: inline-block;
margin: 21px 0 0 0; margin: 21px 0 0 0;
} }
@media all\0 {
.portal-clock-back-hours-down, .portal-clock-front-hours-down {
margin-left: -1px;
}
}