source: sandbox/jabberit_messenger/trophy_expresso/strophejs/tests/testsuite.css @ 2397

Revision 2397, 2.1 KB checked in by alexandrecorreia, 14 years ago (diff)

Ticket #986 - Importacao do modulo trophy integrado ao expresso.

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