Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | div { |
michael@0 | 2 | position: absolute; |
michael@0 | 3 | } |
michael@0 | 4 | #bad { |
michael@0 | 5 | left:220px; top:0px; |
michael@0 | 6 | z-index: 0; |
michael@0 | 7 | } |
michael@0 | 8 | #good { |
michael@0 | 9 | left:0px; top:0px; |
michael@0 | 10 | width:220px; height:220px; |
michael@0 | 11 | /* Core Animation alpha blending rounding differs |
michael@0 | 12 | from the Core Graphics blending, adjust with care */ |
michael@0 | 13 | background-color: rgba(0,255,0, 0.51); |
michael@0 | 14 | z-index: 0; |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | #topbar { |
michael@0 | 18 | left:0px; top:0px; |
michael@0 | 19 | width:220px; height:20px; |
michael@0 | 20 | background-color: rgb(0,0,0); |
michael@0 | 21 | z-index: 2; |
michael@0 | 22 | } |
michael@0 | 23 | #topbar { |
michael@0 | 24 | left:0px; top:0px; |
michael@0 | 25 | width:220px; height:20px; |
michael@0 | 26 | background-color: rgb(0,0,0); |
michael@0 | 27 | z-index: 2; |
michael@0 | 28 | } |
michael@0 | 29 | #leftbar { |
michael@0 | 30 | left:0px; top:0px; |
michael@0 | 31 | width:20px; height:220px; |
michael@0 | 32 | background-color: rgb(0,0,0); |
michael@0 | 33 | z-index: 2; |
michael@0 | 34 | } |
michael@0 | 35 | #rightbar { |
michael@0 | 36 | left:200px; top:0px; |
michael@0 | 37 | width:20px; height:220px; |
michael@0 | 38 | background-color: rgb(0,0,0); |
michael@0 | 39 | z-index: 2; |
michael@0 | 40 | } |
michael@0 | 41 | #bottombar { |
michael@0 | 42 | left:0px; top:200px; |
michael@0 | 43 | width:220px; height:20px; |
michael@0 | 44 | background-color: rgb(0,0,0); |
michael@0 | 45 | z-index: 2; |
michael@0 | 46 | } |
michael@0 | 47 | |
michael@0 | 48 | div#plugin { |
michael@0 | 49 | position: absolute; |
michael@0 | 50 | left:1px; top:1px; |
michael@0 | 51 | width:199px; height:199px; |
michael@0 | 52 | background-color: rgba(0,0,255, 0.2); |
michael@0 | 53 | z-index: 1; |
michael@0 | 54 | } |
michael@0 | 55 | |
michael@0 | 56 | embed#plugin { |
michael@0 | 57 | position: absolute; |
michael@0 | 58 | left:1px; top:1px; |
michael@0 | 59 | z-index: 1; |
michael@0 | 60 | } |
michael@0 | 61 |