Fix some css vector/monobook issues:
authorDaniel Friesen <pub-github@nadir-seen-fire.com>
Sun, 12 Aug 2012 08:02:12 +0000 (01:02 -0700)
committerDaniel Friesen <pub-github@nadir-seen-fire.com>
Sun, 12 Aug 2012 08:02:12 +0000 (01:02 -0700)
- Add the missing -moz- prefixed version of box-shadow for js message
- Fix the incorrect order of transition properties
- While we're at it cleanup properties that don't have a space after them

Change-Id: I23859af09eb55e2d25c324594f9b69aa486e649a

skins/monobook/main.css
skins/vector/screen.css

index 0566e98..5c7ad82 100644 (file)
@@ -840,7 +840,7 @@ div#searchTargetHide {
 }
 
 #powersearch p {
-       margin-top:0px;
+       margin-top: 0px;
 }
 
 div.multipageimagenavbox {
@@ -924,6 +924,7 @@ div#mw-js-message {
        top: 1em;
        width: 20em;
        z-index: 10000;
+       -moz-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.125);
        -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.125);
        box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.125);
 }
index e74bd96..3417b8f 100644 (file)
@@ -149,7 +149,7 @@ div.vectorTabs ul li {
        background-image: url(images/tab-normal-fade.png);
        background-position: bottom left;
        background-repeat: repeat-x;
-       white-space:nowrap;
+       white-space: nowrap;
 }
 /* IGNORED BY IE6 */
 div.vectorTabs ul > li {
@@ -797,6 +797,7 @@ div#mw-js-message {
        z-index: 10000;
        border: solid 1px #a7d7f9;
        border-radius: 0.75em;
+       -moz-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.125);
        -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.125);
        box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.125);
 }
@@ -848,9 +849,9 @@ div#bodyContent {
 }
 div.vectorTabs ul {
        /* @embed */
-       background-image:url(images/tab-break.png);
-       background-position:right bottom;
-       background-repeat:no-repeat;
+       background-image: url(images/tab-break.png);
+       background-position: right bottom;
+       background-repeat: no-repeat;
 }
 
 /* Tooltips are outside of the normal body code, so this helps make the size of the text sensible */
@@ -862,39 +863,39 @@ div.vectorTabs ul {
 
 body.vector-animateLayout div#content,
 body.vector-animateLayout div#footer {
-       transition: margin-left 250ms, padding 250ms;
        -moz-transition: margin-left 250ms, padding 250ms;
        -webkit-transition: margin-left 250ms, padding 250ms;
        -o-transition: margin-left 250ms, padding 250ms;
+       transition: margin-left 250ms, padding 250ms;
 }
 body.vector-animateLayout #p-logo,
 body.vector-animateLayout #left-navigation {
-       transition: left 250ms;
        -moz-transition: left 250ms;
        -webkit-transition: left 250ms;
        -o-transition: left 250ms;
+       transition: left 250ms;
 }
 body.vector-animateLayout #mw-panel {
-       transition: padding-left 250ms;
        -moz-transition: padding-left 250ms;
        -webkit-transition: padding-left 250ms;
        -o-transition: padding-left 250ms;
+       transition: padding-left 250ms;
 }
 body.vector-animateLayout #p-search {
-       transition: margin-right 250ms;
        -moz-transition: margin-right 250ms;
        -webkit-transition: margin-right 250ms;
        -o-transition: margin-right 250ms;
+       transition: margin-right 250ms;
 }
 body.vector-animateLayout #p-personal {
-       transition: right 250ms;
        -moz-transition: right 250ms;
        -webkit-transition: right 250ms;
        -o-transition: right 250ms;
+       transition: right 250ms;
 }
 body.vector-animateLayout #mw-head-base {
-       transition: margin-left 250ms;
        -moz-transition: margin-left 250ms;
        -webkit-transition: margin-left 250ms;
        -o-transition: margin-left 250ms;
+       transition: margin-left 250ms;
 }