Skip to content

Commit 16528de

Browse files
committed
refactor: polywrap-uri-resolvers
1 parent febebb3 commit 16528de

File tree

140 files changed

+2685
-970
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+2685
-970
lines changed
Lines changed: 186 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,186 @@
1+
body {
2+
font-family: Helvetica, Arial, sans-serif;
3+
font-size: 12px;
4+
/* do not increase min-width as some may use split screens */
5+
min-width: 800px;
6+
color: #999;
7+
}
8+
9+
h1 {
10+
font-size: 24px;
11+
color: black;
12+
}
13+
14+
h2 {
15+
font-size: 16px;
16+
color: black;
17+
}
18+
19+
p {
20+
color: black;
21+
}
22+
23+
a {
24+
color: #999;
25+
}
26+
27+
table {
28+
border-collapse: collapse;
29+
}
30+
31+
/******************************
32+
* SUMMARY INFORMATION
33+
******************************/
34+
#environment td {
35+
padding: 5px;
36+
border: 1px solid #E6E6E6;
37+
}
38+
#environment tr:nth-child(odd) {
39+
background-color: #f6f6f6;
40+
}
41+
42+
/******************************
43+
* TEST RESULT COLORS
44+
******************************/
45+
span.passed,
46+
.passed .col-result {
47+
color: green;
48+
}
49+
50+
span.skipped,
51+
span.xfailed,
52+
span.rerun,
53+
.skipped .col-result,
54+
.xfailed .col-result,
55+
.rerun .col-result {
56+
color: orange;
57+
}
58+
59+
span.error,
60+
span.failed,
61+
span.xpassed,
62+
.error .col-result,
63+
.failed .col-result,
64+
.xpassed .col-result {
65+
color: red;
66+
}
67+
68+
/******************************
69+
* RESULTS TABLE
70+
*
71+
* 1. Table Layout
72+
* 2. Extra
73+
* 3. Sorting items
74+
*
75+
******************************/
76+
/*------------------
77+
* 1. Table Layout
78+
*------------------*/
79+
#results-table {
80+
border: 1px solid #e6e6e6;
81+
color: #999;
82+
font-size: 12px;
83+
width: 100%;
84+
}
85+
#results-table th,
86+
#results-table td {
87+
padding: 5px;
88+
border: 1px solid #E6E6E6;
89+
text-align: left;
90+
}
91+
#results-table th {
92+
font-weight: bold;
93+
}
94+
95+
/*------------------
96+
* 2. Extra
97+
*------------------*/
98+
.log {
99+
background-color: #e6e6e6;
100+
border: 1px solid #e6e6e6;
101+
color: black;
102+
display: block;
103+
font-family: "Courier New", Courier, monospace;
104+
height: 230px;
105+
overflow-y: scroll;
106+
padding: 5px;
107+
white-space: pre-wrap;
108+
}
109+
.log:only-child {
110+
height: inherit;
111+
}
112+
113+
div.image {
114+
border: 1px solid #e6e6e6;
115+
float: right;
116+
height: 240px;
117+
margin-left: 5px;
118+
overflow: hidden;
119+
width: 320px;
120+
}
121+
div.image img {
122+
width: 320px;
123+
}
124+
125+
div.video {
126+
border: 1px solid #e6e6e6;
127+
float: right;
128+
height: 240px;
129+
margin-left: 5px;
130+
overflow: hidden;
131+
width: 320px;
132+
}
133+
div.video video {
134+
overflow: hidden;
135+
width: 320px;
136+
height: 240px;
137+
}
138+
139+
.collapsed {
140+
display: none;
141+
}
142+
143+
.expander::after {
144+
content: " (show details)";
145+
color: #BBB;
146+
font-style: italic;
147+
cursor: pointer;
148+
}
149+
150+
.collapser::after {
151+
content: " (hide details)";
152+
color: #BBB;
153+
font-style: italic;
154+
cursor: pointer;
155+
}
156+
157+
/*------------------
158+
* 3. Sorting items
159+
*------------------*/
160+
.sortable {
161+
cursor: pointer;
162+
}
163+
164+
.sort-icon {
165+
font-size: 0px;
166+
float: left;
167+
margin-right: 5px;
168+
margin-top: 5px;
169+
/*triangle*/
170+
width: 0;
171+
height: 0;
172+
border-left: 8px solid transparent;
173+
border-right: 8px solid transparent;
174+
}
175+
.inactive .sort-icon {
176+
/*finish triangle*/
177+
border-top: 8px solid #E6E6E6;
178+
}
179+
.asc.active .sort-icon {
180+
/*finish triangle*/
181+
border-bottom: 8px solid #999;
182+
}
183+
.desc.active .sort-icon {
184+
/*finish triangle*/
185+
border-top: 8px solid #999;
186+
}

0 commit comments

Comments
 (0)