Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/site/app/webroot/css/tests.css
blob: 1a272a80c1359341529adb243340b77d3c5a75aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
body {
	font-family: Verdana;
	font-size: 12px;
}
div.groupdivider {
    border-bottom: 1px solid black;
    margin-top: 5px;
    height: 20px;
}

div.groupdivider div.header {
    font-weight: bold;
    font-size: 14px;
    float: left;
    width: 49%;
}
div.groupdivider div.victim {
    float: right;
    width: 49%;
    text-align: right;
}

div.pass {
	background: #CCFFCC;
}
span.pass {
	color: green;
	font-weight: bold;
}

div.fail {
	background: #FFCCCC;
}
span.fail {
	color: red;
	font-weight: bold;
}

a:link {
	color: black;
}
a:visited {
	color: gray;
}
a:active {
	color: black;
}
a:hover {
	text-decoration: none;
}

.menu {
    border-bottom: 1px solid black;
}
.name {
    font-size: 14px;
    font-weight: bold;
    color: navy;
}
.title {
    font-size: 20px;
    font-weight: bold;
}
.getit {
    font-size: 8px;
}
.items {
      float: right;
      font-weight: bold;
}
.items a:link {
    text-decoration: none;
}
.items a:visited {
    color: black;
    text-decoration: none;
}
.items a:active {
    color: black;
    text-decoration: none;
}
.items a:hover {
    color: gray;
    text-decoration: none;
}
.items .svn {
    color: navy;
}

.testlist li {
    list-style: none;
   	margin-left: 0;
	text-indent: -1em;
}
.testlist li.directory:before {
	content: "\00BB \0020";
}
.testlist li.file:before {
	content: "\203A \0000";
	margin-right: 2px;
}

.testlist li.directory a:link {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.testlist li.directory a:visited {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

div.autocomplete {
    position:absolute;
    width:250px;
    background-color:white;
    border:1px solid #888;
    margin:0px;
    padding:0px;
}
div.autocomplete ul {
    list-style-type:none;
    margin:0px;
    padding:0px;
}
div.autocomplete ul li.selected { background-color: #ffb;}
div.autocomplete ul li {
    list-style-type:none;
    display:block;
    margin:0;
    padding:2px;
    height:16px;
    cursor:pointer;
    text-align: left;
}