| 1 |
body, div, h1 { font-family: 'trebuchet ms', verdana, arial; margin: 0; padding: 0 } |
| 2 |
body {font-size: 10pt; } |
| 3 |
h1 { padding: 15px; font-size: large; background-color: #06b; color: white; } |
| 4 |
h1 a { color: white; } |
| 5 |
h2 { padding: 10px; background-color: #eee; color: black; margin: 0; font-size: small; font-weight: normal } |
| 6 |
|
| 7 |
.pass { color: green; } |
| 8 |
.fail { color: red; } |
| 9 |
p.result { margin-left: 1em; } |
| 10 |
|
| 11 |
#banner { height: 2em; border-bottom: 1px solid white; } |
| 12 |
h2.pass { background-color: green; } |
| 13 |
h2.fail { background-color: red; } |
| 14 |
|
| 15 |
div.testrunner-toolbar { background: #eee; border-top: 1px solid black; padding: 10px; } |
| 16 |
|
| 17 |
ol#tests > li > strong { cursor:pointer; } |
| 18 |
|
| 19 |
div#fx-tests h4 { |
| 20 |
background: red; |
| 21 |
} |
| 22 |
|
| 23 |
div#fx-tests h4.pass { |
| 24 |
background: green; |
| 25 |
} |
| 26 |
|
| 27 |
div#fx-tests div.box { |
| 28 |
background: red url(data/cow.jpg) no-repeat; |
| 29 |
overflow: hidden; |
| 30 |
border: 2px solid #000; |
| 31 |
} |
| 32 |
|
| 33 |
div#fx-tests div.overflow { |
| 34 |
overflow: visible; |
| 35 |
} |
| 36 |
|
| 37 |
div.inline { |
| 38 |
display: inline; |
| 39 |
} |
| 40 |
|
| 41 |
div.autoheight { |
| 42 |
height: auto; |
| 43 |
} |
| 44 |
|
| 45 |
div.autowidth { |
| 46 |
width: auto; |
| 47 |
} |
| 48 |
|
| 49 |
div.autoopacity { |
| 50 |
opacity: auto; |
| 51 |
} |
| 52 |
|
| 53 |
div.largewidth { |
| 54 |
width: 100px; |
| 55 |
} |
| 56 |
|
| 57 |
div.largeheight { |
| 58 |
height: 100px; |
| 59 |
} |
| 60 |
|
| 61 |
div.largeopacity { |
| 62 |
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100); |
| 63 |
} |
| 64 |
|
| 65 |
div.medwidth { |
| 66 |
width: 50px; |
| 67 |
} |
| 68 |
|
| 69 |
div.medheight { |
| 70 |
height: 50px; |
| 71 |
} |
| 72 |
|
| 73 |
div.medopacity { |
| 74 |
opacity: 0.5; |
| 75 |
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50); |
| 76 |
} |
| 77 |
|
| 78 |
div.nowidth { |
| 79 |
width: 0px; |
| 80 |
} |
| 81 |
|
| 82 |
div.noheight { |
| 83 |
height: 0px; |
| 84 |
} |
| 85 |
|
| 86 |
div.noopacity { |
| 87 |
opacity: 0; |
| 88 |
filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0); |
| 89 |
} |
| 90 |
|
| 91 |
div.hidden { |
| 92 |
display: none; |
| 93 |
} |
| 94 |
|
| 95 |
div#fx-tests div.widewidth { |
| 96 |
background-repeat: repeat-x; |
| 97 |
} |
| 98 |
|
| 99 |
div#fx-tests div.wideheight { |
| 100 |
background-repeat: repeat-y; |
| 101 |
} |
| 102 |
|
| 103 |
div#fx-tests div.widewidth.wideheight { |
| 104 |
background-repeat: repeat; |
| 105 |
} |
| 106 |
|
| 107 |
div#fx-tests div.noback { |
| 108 |
background-image: none; |
| 109 |
} |
| 110 |
|
| 111 |
div.chain, div.chain div { width: 100px; height: 20px; position: relative; float: left; } |
| 112 |
div.chain div { position: absolute; top: 0px; left: 0px; } |
| 113 |
|
| 114 |
div.chain.test { background: red; } |
| 115 |
div.chain.test div { background: green; } |
| 116 |
|
| 117 |
div.chain.out { background: green; } |
| 118 |
div.chain.out div { background: red; display: none; } |
| 119 |
|
| 120 |
div#show-tests * { display: none; } |
| 121 |
|