1099.7.25
by William Grant
Sort the CSS more sanely. |
1 |
/* Test suites */
|
2 |
||
3 |
.test_suites { |
|
4 |
padding: 0; |
|
5 |
}
|
|
6 |
||
7 |
.test_suites > li { |
|
8 |
margin: 0.5em 0; |
|
9 |
border: 2px solid #888; |
|
10 |
}
|
|
11 |
||
12 |
.test_suites > li > h3 { |
|
13 |
padding: 0.2em; |
|
14 |
margin: 0; |
|
15 |
background: #e6e6e6; |
|
16 |
}
|
|
17 |
||
1099.7.30
by William Grant
Show the new suite item with somewhat faded colours. |
18 |
.test_suites > li.new { |
19 |
border: 2px solid #bbbbbb; |
|
20 |
}
|
|
21 |
||
22 |
.test_suites > li.new > h3 { |
|
23 |
background: #eeeeee; |
|
24 |
}
|
|
25 |
||
1099.1.213
by Nick Chadwick
Modifief exercise view, so that exercises can now be viewed in an |
26 |
.testsuite { |
27 |
display: none; |
|
1099.7.19
by William Grant
Box in the contents of suites. |
28 |
width: 80%; |
29 |
margin: 0.5em; |
|
1099.1.213
by Nick Chadwick
Modifief exercise view, so that exercises can now be viewed in an |
30 |
}
|
31 |
||
1099.7.23
by William Grant
Tweak test suite and case padding and margins again. |
32 |
.testsuite > h4 { |
33 |
margin: 1em 0 0.2em 0; |
|
34 |
}
|
|
35 |
||
1099.7.25
by William Grant
Sort the CSS more sanely. |
36 |
|
37 |
/* Test cases */
|
|
38 |
||
1099.7.21
by William Grant
Clean up test case and suite padding. |
39 |
.test_cases > ul { |
1099.7.35
by William Grant
Unindent test cases, and remove the Test Cases heading. |
40 |
padding: 0; |
1099.7.21
by William Grant
Clean up test case and suite padding. |
41 |
}
|
42 |
||
1099.7.17
by William Grant
Hide test cases by default, and style them so they appear in boxes. |
43 |
.test_cases > ul > li { |
1099.7.35
by William Grant
Unindent test cases, and remove the Test Cases heading. |
44 |
margin: 0.5em 0; |
1099.7.17
by William Grant
Hide test cases by default, and style them so they appear in boxes. |
45 |
border: 1px solid #aaa; |
46 |
}
|
|
47 |
||
48 |
.test_cases > ul > li > h5 { |
|
49 |
padding: 0.2em; |
|
50 |
margin: 0; |
|
51 |
background: #e8e8e8; |
|
52 |
}
|
|
53 |
||
1099.7.18
by William Grant
Align the test case delete button nicely. |
54 |
.test_cases > ul > li > h5 img{ |
55 |
vertical-align: top; |
|
56 |
}
|
|
57 |
||
1099.7.31
by William Grant
Also fade new test cases. |
58 |
.test_cases > ul > li.new { |
59 |
border: 1px solid #bbbbbb; |
|
60 |
}
|
|
61 |
||
62 |
.test_cases > ul > li.new > h5 { |
|
63 |
background: #eeeeee; |
|
64 |
}
|
|
65 |
||
66 |
||
1099.1.213
by Nick Chadwick
Modifief exercise view, so that exercises can now be viewed in an |
67 |
.test_case { |
1099.7.17
by William Grant
Hide test cases by default, and style them so they appear in boxes. |
68 |
display: none; |
1099.7.21
by William Grant
Clean up test case and suite padding. |
69 |
margin: 0.5em; |
1099.1.213
by Nick Chadwick
Modifief exercise view, so that exercises can now be viewed in an |
70 |
}
|
71 |
||
1099.1.212
by Nick Chadwick
Added a new page to display exercises. This will then be modified to |
72 |
|
1099.7.26
by William Grant
Reclass the test case part container, unhide it, and fix padding. |
73 |
/* Test case parts */
|
1099.7.27
by William Grant
Turn variable lists into real <ul>s rather than <br>-separated <span>s. |
74 |
.test_case_parts, .test_variables > ul { |
1099.7.26
by William Grant
Reclass the test case part container, unhide it, and fix padding. |
75 |
padding: 0em 0 0 0.5em; |
76 |
}
|
|
77 |
||
78 |
||
1099.1.212
by Nick Chadwick
Added a new page to display exercises. This will then be modified to |
79 |
.textinput { |
80 |
width: 350px; |
|
81 |
}
|
|
1099.1.214
by Nick Chadwick
The skeleton for editing an exercise has now been created. The next |
82 |
|
1099.1.217
by Nick Chadwick
working on making the exercise editor complete |
83 |
.add_variable { |
84 |
display: none; |
|
85 |
}
|
|
86 |
||
1099.1.221
by Nick Chadwick
added in extra parts to the exercise edit view. Now almost all |
87 |
.add_new_part { |
88 |
display: none; |
|
89 |
}
|
|
1099.6.2
by Nick Chadwick
Added a listing of all exercises |
90 |
|
91 |
.exercise_names div { |
|
92 |
float: left; |
|
93 |
text-align: left; |
|
94 |
width: 250px; |
|
95 |
}
|
|
1099.1.231
by Nick Chadwick
Slightly modified the display of the list in the exercises view. |
96 |
|
97 |
li { |
|
98 |
list-style: none; |
|
99 |
}
|