simplecov-html 0.12.2 → 0.12.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 521389c06ee24e47f7547ed6711ed500672dde0c9489802d77f0a626536bc7a3
4
- data.tar.gz: 209a5a8e7dad6f2840efb3d7c3c05ce13ef9a64ff05550016b22157f56aeade2
3
+ metadata.gz: 745085dce51b66af38d5df35c34eb2e7947a678de037c3820032b63886dedd5f
4
+ data.tar.gz: af5be87c3c116c58cd569af0a4586312cae003d5608a86a4834589f296918a92
5
5
  SHA512:
6
- metadata.gz: 7f9f0eb594a25f55bb3a5f16ecc9e46392a71c959754e36b976403943b81090f6e68bc125f4447ebc5ff9b253c52865e9e63678b03528f286ad48327b18429c3
7
- data.tar.gz: 962890a18f9615e03c8a4b3e06392a315a8c7194cad69b7a0a3a32a0a9760f7ebc640a418a8f12d76207883e480c8c22e748a96d44348a9484dd7bb1d04cda39
6
+ metadata.gz: 0b26420a8a6ce3d900653be4bfe2fa95178de27399502b2f2f862efe19ad3083d01d5e4435af81288fc73bf422451c11f10e133a34e27fdd7b3342baec58ba12
7
+ data.tar.gz: b51d0a535a43eacc69a791c8c6371f33b423e1df75735f9b8e3bb36eefed5de6d1d66af1e94a87cc2e2e383cd35a57e9e6896f7f58c37b67f4f6fe794a5db0d0
@@ -1 +1 @@
1
- ruby 2.6.5
1
+ ruby 2.7.1
@@ -7,7 +7,6 @@ bundler_args: --without benchmark --jobs=3 --retry=3
7
7
 
8
8
  matrix:
9
9
  include:
10
- - rvm: 2.4.9
11
10
  - rvm: 2.5.7
12
11
  - rvm: 2.6.5
13
12
  - rvm: 2.7.0
@@ -1,8 +1,14 @@
1
+ 0.12.3 (2020-09-23)
2
+ ==================
3
+
4
+ ## Bugfixes
5
+ * Relax ruby version requirement to work with Ruby 3.0 (next version, current `ruby-head`). Thanks [@byroot](https://github.com/byroot).
6
+
1
7
  0.12.2 (2020-02-27)
2
8
  ==================
3
9
 
4
10
  ## Bugfixes
5
- * Refreshing the page while a source file is open works again. Thanks [@HansBug](https://github.com/HansBug) for the report [#94](https://github.com/colszowka/simplecov-html/issues/94) and [@Tietew](https://github.com/Tietew) for the fix!
11
+ * Refreshing the page while a source file is open works again. Thanks [@HansBug](https://github.com/HansBug) for the report [#94](https://github.com/simplecov-ruby/simplecov-html/issues/94) and [@Tietew](https://github.com/Tietew) for the fix!
6
12
 
7
13
  0.12.1 (2020-02-23)
8
14
  ==================
@@ -65,11 +71,11 @@ Changes ruby support to 2.4+, adds branch coverage support. Meant to be used wit
65
71
 
66
72
  ## Bugfixes
67
73
 
68
- * Allow usage with frozen-string-literal-enabled. See [#56](https://github.com/colszowka/simplecov-html/pull/56) (thanks @pat)
74
+ * Allow usage with frozen-string-literal-enabled. See [#56](https://github.com/simplecov-ruby/simplecov-html/pull/56) (thanks @pat)
69
75
 
70
76
  0.10.1 (2017-05-17)
71
77
  ========
72
78
 
73
79
  ## Bugfixes
74
80
 
75
- * circumvent a regression that happens in the new JRuby 9.1.9.0 release. See [#53](https://github.com/colszowka/simplecov-html/pull/53) thanks @koic
81
+ * circumvent a regression that happens in the new JRuby 9.1.9.0 release. See [#53](https://github.com/simplecov-ruby/simplecov-html/pull/53) thanks @koic
data/Gemfile CHANGED
@@ -6,12 +6,9 @@ gemspec
6
6
 
7
7
  gem "rake", ">= 11"
8
8
 
9
- # Use local copy of simplecov in development when checked out, fetch from git otherwise
10
- if File.directory?(File.dirname(__FILE__) + "/../simplecov")
11
- gem "simplecov", :path => File.dirname(__FILE__) + "/../simplecov"
12
- else
13
- gem "simplecov", :github => "colszowka/simplecov"
14
- end
9
+ # Use local copy of simplecov in development if you want to
10
+ # gem "simplecov", :path => File.dirname(__FILE__) + "/../simplecov"
11
+ gem "simplecov", :github => "simplecov-ruby/simplecov"
15
12
 
16
13
  group :test do
17
14
  gem "minitest"
@@ -19,7 +16,6 @@ end
19
16
 
20
17
  group :development do
21
18
  gem "rubocop"
22
- gem "sass"
23
19
  # sprockets 4.0 requires ruby 2.5+
24
20
  gem "sprockets", "~> 3.7"
25
21
  gem "uglifier"
@@ -1,15 +1,16 @@
1
- PATH
2
- remote: .
3
- specs:
4
- simplecov-html (0.12.2)
5
-
6
- PATH
7
- remote: /home/tobi/github/simplecov
1
+ GIT
2
+ remote: https://github.com/simplecov-ruby/simplecov.git
3
+ revision: 80700ec9f9b5ae426c22d06f62620f7e7b71ff42
8
4
  specs:
9
5
  simplecov (0.18.5)
10
6
  docile (~> 1.1)
11
7
  simplecov-html (~> 0.11)
12
8
 
9
+ PATH
10
+ remote: .
11
+ specs:
12
+ simplecov-html (0.12.3)
13
+
13
14
  GEM
14
15
  remote: https://rubygems.org/
15
16
  specs:
@@ -17,18 +18,14 @@ GEM
17
18
  concurrent-ruby (1.1.5)
18
19
  docile (1.3.2)
19
20
  execjs (2.7.0)
20
- ffi (1.12.2)
21
21
  jaro_winkler (1.5.4)
22
22
  minitest (5.14.0)
23
23
  parallel (1.19.1)
24
24
  parser (2.7.0.2)
25
25
  ast (~> 2.4.0)
26
- rack (2.1.2)
26
+ rack (2.2.3)
27
27
  rainbow (3.0.0)
28
28
  rake (13.0.1)
29
- rb-fsevent (0.10.3)
30
- rb-inotify (0.10.1)
31
- ffi (~> 1.0)
32
29
  rubocop (0.79.0)
33
30
  jaro_winkler (~> 1.5.1)
34
31
  parallel (~> 1.10)
@@ -37,11 +34,6 @@ GEM
37
34
  ruby-progressbar (~> 1.7)
38
35
  unicode-display_width (>= 1.4.0, < 1.7)
39
36
  ruby-progressbar (1.10.1)
40
- sass (3.7.4)
41
- sass-listen (~> 4.0.0)
42
- sass-listen (4.0.0)
43
- rb-fsevent (~> 0.9, >= 0.9.4)
44
- rb-inotify (~> 0.9, >= 0.9.7)
45
37
  sprockets (3.7.2)
46
38
  concurrent-ruby (~> 1.0)
47
39
  rack (> 1, < 3)
@@ -57,7 +49,6 @@ DEPENDENCIES
57
49
  minitest
58
50
  rake (>= 11)
59
51
  rubocop
60
- sass
61
52
  simplecov!
62
53
  simplecov-html!
63
54
  sprockets (~> 3.7)
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  Default HTML formatter for SimpleCov
2
2
  ====================================
3
3
 
4
- ***Note: To learn more about SimpleCov, check out the main repo at https://github.com/colszowka/simplecov***
4
+ ***Note: To learn more about SimpleCov, check out the main repo at https://github.com/simplecov-ruby/simplecov***
5
5
 
6
6
  Generates a nice HTML report of your SimpleCov ruby code coverage results on Ruby 2.4+ using client-side Javascript
7
7
  quite extensively.
data/Rakefile CHANGED
@@ -3,7 +3,7 @@
3
3
  require "bundler"
4
4
  Bundler::GemHelper.install_tasks
5
5
 
6
- # See https://github.com/colszowka/simplecov/issues/171
6
+ # See https://github.com/simplecov-ruby/simplecov/issues/171
7
7
  desc "Set permissions on all files so they are compatible with both user-local and system-wide installs"
8
8
  task :fix_permissions do
9
9
  system 'bash -c "find . -type f -exec chmod 644 {} \; && find . -type d -exec chmod 755 {} \;"'
@@ -0,0 +1,316 @@
1
+ #loading {
2
+ position: fixed;
3
+ left: 40%;
4
+ top: 50%;
5
+ }
6
+
7
+ a {
8
+ color: #333;
9
+ text-decoration: none;
10
+ }
11
+ a:hover {
12
+ color: #000;
13
+ text-decoration: underline;
14
+ }
15
+
16
+ body {
17
+ font-family: "Lucida Grande", Helvetica, "Helvetica Neue", Arial, sans-serif;
18
+ padding: 12px;
19
+ background-color: #333;
20
+ }
21
+
22
+ h1, h2, h3, h4 {
23
+ color: #1C2324;
24
+ margin: 0;
25
+ padding: 0;
26
+ margin-bottom: 12px;
27
+ }
28
+
29
+ table {
30
+ width: 100%;
31
+ }
32
+
33
+ #content {
34
+ clear: left;
35
+ background-color: white;
36
+ border: 2px solid #ddd;
37
+ border-top: 8px solid #ddd;
38
+ padding: 18px;
39
+ -webkit-border-bottom-left-radius: 5px;
40
+ -webkit-border-bottom-right-radius: 5px;
41
+ -webkit-border-top-right-radius: 5px;
42
+ -moz-border-radius-bottomleft: 5px;
43
+ -moz-border-radius-bottomright: 5px;
44
+ -moz-border-radius-topright: 5px;
45
+ border-bottom-left-radius: 5px;
46
+ border-bottom-right-radius: 5px;
47
+ border-top-right-radius: 5px;
48
+ }
49
+
50
+ .dataTables_filter, .dataTables_info {
51
+ padding: 2px 6px;
52
+ }
53
+
54
+ abbr.timeago {
55
+ text-decoration: none;
56
+ border: none;
57
+ font-weight: bold;
58
+ }
59
+
60
+ .timestamp {
61
+ float: right;
62
+ color: #ddd;
63
+ }
64
+
65
+ .group_tabs {
66
+ list-style: none;
67
+ float: left;
68
+ margin: 0;
69
+ padding: 0;
70
+ }
71
+
72
+ .group_tabs li {
73
+ display: inline;
74
+ float: left;
75
+ }
76
+ .group_tabs li a {
77
+ font-family: Helvetica, Arial, sans-serif;
78
+ display: block;
79
+ float: left;
80
+ text-decoration: none;
81
+ padding: 4px 8px;
82
+ background-color: #aaa;
83
+ background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dddddd), to(#aaaaaa));
84
+ background: -moz-linear-gradient(#dddddd, #aaaaaa);
85
+ background: linear-gradient(#dddddd, #aaaaaa);
86
+ text-shadow: #e5e5e5 1px 1px 0px;
87
+ border-bottom: none;
88
+ color: #333;
89
+ font-weight: bold;
90
+ margin-right: 8px;
91
+ border-top: 1px solid #efefef;
92
+ -webkit-border-top-left-radius: 2px;
93
+ -webkit-border-top-right-radius: 2px;
94
+ -moz-border-radius-topleft: 2px;
95
+ -moz-border-radius-topright: 2px;
96
+ border-top-left-radius: 2px;
97
+ border-top-right-radius: 2px;
98
+ }
99
+ .group_tabs li a:hover {
100
+ background-color: #ccc;
101
+ background: -webkit-gradient(linear, 0 0, 0 bottom, from(#eeeeee), to(#aaaaaa));
102
+ background: -moz-linear-gradient(#eeeeee, #aaaaaa);
103
+ background: linear-gradient(#eeeeee, #aaaaaa);
104
+ }
105
+ .group_tabs li a:active {
106
+ padding-top: 5px;
107
+ padding-bottom: 3px;
108
+ }
109
+ .group_tabs li.active a {
110
+ color: black;
111
+ text-shadow: #fff 1px 1px 0px;
112
+ background-color: #ddd;
113
+ background: -webkit-gradient(linear, 0 0, 0 bottom, from(white), to(#dddddd));
114
+ background: -moz-linear-gradient(white, #dddddd);
115
+ background: linear-gradient(white, #dddddd);
116
+ }
117
+
118
+ .file_list {
119
+ margin-bottom: 18px;
120
+ }
121
+
122
+ .file_list--responsive {
123
+ overflow-x: auto;
124
+ overflow-y: hidden;
125
+ }
126
+
127
+ a.src_link {
128
+ background: url("./magnify.png") no-repeat left 50%;
129
+ padding-left: 18px;
130
+ }
131
+
132
+ tr, td {
133
+ margin: 0;
134
+ padding: 0;
135
+ }
136
+
137
+ th {
138
+ white-space: nowrap;
139
+ }
140
+ th.ui-state-default {
141
+ cursor: pointer;
142
+ }
143
+ th span.ui-icon {
144
+ float: left;
145
+ }
146
+
147
+ td {
148
+ padding: 4px 8px;
149
+ }
150
+ td.strong {
151
+ font-weight: bold;
152
+ }
153
+
154
+ .cell--number {
155
+ text-align: right;
156
+ }
157
+
158
+ .source_table h3, .source_table h4 {
159
+ padding: 0;
160
+ margin: 0;
161
+ margin-bottom: 4px;
162
+ }
163
+
164
+ .source_table .header {
165
+ padding: 10px;
166
+ }
167
+
168
+ .source_table pre {
169
+ margin: 0;
170
+ padding: 0;
171
+ white-space: normal;
172
+ color: #000;
173
+ font-family: "Monaco", "Inconsolata", "Consolas", monospace;
174
+ }
175
+
176
+ .source_table code {
177
+ color: #000;
178
+ font-family: "Monaco", "Inconsolata", "Consolas", monospace;
179
+ }
180
+
181
+ .source_table pre {
182
+ background-color: #333;
183
+ }
184
+
185
+ .source_table pre ol {
186
+ margin: 0px;
187
+ padding: 0px;
188
+ margin-left: 45px;
189
+ font-size: 12px;
190
+ color: white;
191
+ }
192
+
193
+ .source_table pre li {
194
+ margin: 0px;
195
+ padding: 2px 6px;
196
+ border-left: 5px solid white;
197
+ }
198
+
199
+ .source_table pre li code {
200
+ white-space: pre;
201
+ white-space: pre-wrap;
202
+ }
203
+
204
+ .source_table pre .hits {
205
+ float: right;
206
+ margin-left: 10px;
207
+ padding: 2px 4px;
208
+ background-color: #444;
209
+ background: -webkit-gradient(linear, 0 0, 0 bottom, from(#222222), to(#666666));
210
+ background: -moz-linear-gradient(#222222, #666666);
211
+ background: linear-gradient(#222222, #666666);
212
+ color: white;
213
+ font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
214
+ font-size: 10px;
215
+ font-weight: bold;
216
+ text-align: center;
217
+ border-radius: 6px;
218
+ }
219
+
220
+ #footer {
221
+ color: #ddd;
222
+ font-size: 12px;
223
+ font-weight: bold;
224
+ margin-top: 12px;
225
+ text-align: right;
226
+ }
227
+
228
+ #footer a {
229
+ color: #eee;
230
+ text-decoration: underline;
231
+ }
232
+
233
+ #footer a:hover {
234
+ color: #fff;
235
+ text-decoration: none;
236
+ }
237
+
238
+ .green {
239
+ color: #090;
240
+ }
241
+
242
+ .red {
243
+ color: #900;
244
+ }
245
+
246
+ .yellow {
247
+ color: #da0;
248
+ }
249
+
250
+ .blue {
251
+ color: blue;
252
+ }
253
+
254
+ thead th {
255
+ background: white;
256
+ }
257
+
258
+ .source_table .covered {
259
+ border-color: #090;
260
+ }
261
+
262
+ .source_table .missed {
263
+ border-color: #900;
264
+ }
265
+
266
+ .source_table .never {
267
+ border-color: black;
268
+ }
269
+
270
+ .source_table .skipped {
271
+ border-color: #fc0;
272
+ }
273
+
274
+ .source_table .missed-branch {
275
+ border-color: #bf0000;
276
+ }
277
+
278
+ .source_table .covered:nth-child(odd) {
279
+ background-color: #CDF2CD;
280
+ }
281
+
282
+ .source_table .covered:nth-child(even) {
283
+ background-color: #DBF2DB;
284
+ }
285
+
286
+ .source_table .missed:nth-child(odd) {
287
+ background-color: #F7C0C0;
288
+ }
289
+
290
+ .source_table .missed:nth-child(even) {
291
+ background-color: #F7CFCF;
292
+ }
293
+
294
+ .source_table .never:nth-child(odd) {
295
+ background-color: #efefef;
296
+ }
297
+
298
+ .source_table .never:nth-child(even) {
299
+ background-color: #f4f4f4;
300
+ }
301
+
302
+ .source_table .skipped:nth-child(odd) {
303
+ background-color: #FBF0C0;
304
+ }
305
+
306
+ .source_table .skipped:nth-child(even) {
307
+ background-color: #FBFfCf;
308
+ }
309
+
310
+ .source_table .missed-branch:nth-child(odd) {
311
+ background-color: #cc8e8e;
312
+ }
313
+
314
+ .source_table .missed-branch:nth-child(even) {
315
+ background-color: #cc6e6e;
316
+ }
@@ -3,7 +3,7 @@
3
3
  module SimpleCov
4
4
  module Formatter
5
5
  class HTMLFormatter
6
- VERSION = "0.12.2"
6
+ VERSION = "0.12.3"
7
7
  end
8
8
  end
9
9
  end
@@ -9,12 +9,12 @@ Gem::Specification.new do |gem|
9
9
  gem.platform = Gem::Platform::RUBY
10
10
  gem.authors = ["Christoph Olszowka"]
11
11
  gem.email = ["christoph at olszowka de"]
12
- gem.homepage = "https://github.com/colszowka/simplecov-html"
12
+ gem.homepage = "https://github.com/simplecov-ruby/simplecov-html"
13
13
  gem.description = %(Default HTML formatter for SimpleCov code coverage tool for ruby 2.4+)
14
14
  gem.summary = gem.description
15
15
  gem.license = "MIT"
16
16
 
17
- gem.required_ruby_version = "~> 2.4"
17
+ gem.required_ruby_version = ">= 2.4"
18
18
 
19
19
  gem.files = `git ls-files`.split("\n")
20
20
  gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
@@ -26,7 +26,7 @@
26
26
  </div>
27
27
 
28
28
  <div id="footer">
29
- Generated by <a href="https://github.com/colszowka/simplecov">simplecov</a> v<%= SimpleCov::VERSION %>
29
+ Generated by <a href="https://github.com/simplecov-ruby/simplecov">simplecov</a> v<%= SimpleCov::VERSION %>
30
30
  and simplecov-html v<%= SimpleCov::Formatter::HTMLFormatter::VERSION %><br/>
31
31
  using <%= result.command_name %>
32
32
  </div>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplecov-html
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.2
4
+ version: 0.12.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christoph Olszowka
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-02-27 00:00:00.000000000 Z
11
+ date: 2020-09-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Default HTML formatter for SimpleCov code coverage tool for ruby 2.4+
14
14
  email:
@@ -41,7 +41,7 @@ files:
41
41
  - assets/stylesheets/plugins/jquery-ui-1.8.4.custom.css
42
42
  - assets/stylesheets/plugins/jquery.colorbox.css
43
43
  - assets/stylesheets/reset.css
44
- - assets/stylesheets/screen.css.sass
44
+ - assets/stylesheets/screen.css
45
45
  - lib/simplecov-html.rb
46
46
  - lib/simplecov-html/version.rb
47
47
  - public/DataTables-1.10.20/images/sort_asc.png
@@ -80,7 +80,7 @@ files:
80
80
  - views/file_list.erb
81
81
  - views/layout.erb
82
82
  - views/source_file.erb
83
- homepage: https://github.com/colszowka/simplecov-html
83
+ homepage: https://github.com/simplecov-ruby/simplecov-html
84
84
  licenses:
85
85
  - MIT
86
86
  metadata: {}
@@ -90,7 +90,7 @@ require_paths:
90
90
  - lib
91
91
  required_ruby_version: !ruby/object:Gem::Requirement
92
92
  requirements:
93
- - - "~>"
93
+ - - ">="
94
94
  - !ruby/object:Gem::Version
95
95
  version: '2.4'
96
96
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  - !ruby/object:Gem::Version
100
100
  version: '0'
101
101
  requirements: []
102
- rubygems_version: 3.0.3
102
+ rubygems_version: 3.1.2
103
103
  signing_key:
104
104
  specification_version: 4
105
105
  summary: Default HTML formatter for SimpleCov code coverage tool for ruby 2.4+
@@ -1,242 +0,0 @@
1
- #loading
2
- position: fixed
3
- left: 40%
4
- top: 50%
5
-
6
- a
7
- color: #333
8
- text-decoration: none
9
- &:hover
10
- color: #000
11
- text-decoration: underline
12
-
13
- body
14
- font-family: "Lucida Grande", Helvetica, "Helvetica Neue", Arial, sans-serif
15
- padding: 12px
16
- background-color: #333
17
-
18
- h1, h2, h3, h4
19
- color: #1C2324
20
- margin: 0
21
- padding: 0
22
- margin-bottom: 12px
23
-
24
- table
25
- width: 100%
26
-
27
- #content
28
- clear: left
29
- background-color: white
30
- border: 2px solid #ddd
31
- border-top: 8px solid #ddd
32
- padding: 18px
33
- -webkit-border-bottom-left-radius: 5px
34
- -webkit-border-bottom-right-radius: 5px
35
- -webkit-border-top-right-radius: 5px
36
- -moz-border-radius-bottomleft: 5px
37
- -moz-border-radius-bottomright: 5px
38
- -moz-border-radius-topright: 5px
39
- border-bottom-left-radius: 5px
40
- border-bottom-right-radius: 5px
41
- border-top-right-radius: 5px
42
-
43
- .dataTables_filter, .dataTables_info
44
- padding: 2px 6px
45
-
46
- abbr.timeago
47
- text-decoration: none
48
- border: none
49
- font-weight: bold
50
-
51
- .timestamp
52
- float: right
53
- color: #ddd
54
-
55
- .group_tabs
56
- list-style: none
57
- float: left
58
- margin: 0
59
- padding: 0
60
- li
61
- display: inline
62
- float: left
63
- a
64
- font-family: Helvetica, Arial, sans-serif
65
- display: block
66
- float: left
67
- text-decoration: none
68
- padding: 4px 8px
69
- background-color: #aaa
70
- background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dddddd), to(#aaaaaa))
71
- background: -moz-linear-gradient(#dddddd, #aaaaaa)
72
- background: linear-gradient(#dddddd, #aaaaaa)
73
- text-shadow: #e5e5e5 1px 1px 0px
74
- border-bottom: none
75
- color: #333
76
- font-weight: bold
77
- margin-right: 8px
78
- border-top: 1px solid #efefef
79
- -webkit-border-top-left-radius: 2px
80
- -webkit-border-top-right-radius: 2px
81
- -moz-border-radius-topleft: 2px
82
- -moz-border-radius-topright: 2px
83
- border-top-left-radius: 2px
84
- border-top-right-radius: 2px
85
- &:hover
86
- background-color: #ccc
87
- background: -webkit-gradient(linear, 0 0, 0 bottom, from(#eeeeee), to(#aaaaaa))
88
- background: -moz-linear-gradient(#eeeeee, #aaaaaa)
89
- background: linear-gradient(#eeeeee, #aaaaaa)
90
- &:active
91
- padding-top: 5px
92
- padding-bottom: 3px
93
- &.active a
94
- color: black
95
- text-shadow: #fff 1px 1px 0px
96
- background-color: #ddd
97
- background: -webkit-gradient(linear, 0 0, 0 bottom, from(white), to(#dddddd))
98
- background: -moz-linear-gradient(white, #dddddd)
99
- background: linear-gradient(white, #dddddd)
100
-
101
- .file_list
102
- margin-bottom: 18px
103
-
104
- .file_list--responsive
105
- overflow-x: auto
106
- // not the nicest fix for the y scrollbar coming up, but workable :shrug:
107
- overflow-y: hidden
108
-
109
- a.src_link
110
- background: url('./magnify.png') no-repeat left 50%
111
- padding-left: 18px
112
-
113
- tr, td
114
- margin: 0
115
- padding: 0
116
-
117
- th
118
- white-space: nowrap
119
- &.ui-state-default
120
- cursor: pointer
121
- span.ui-icon
122
- float: left
123
-
124
- td
125
- padding: 4px 8px
126
- &.strong
127
- font-weight: bold
128
-
129
- .cell--number
130
- text-align: right
131
-
132
- .source_table
133
- h3, h4
134
- padding: 0
135
- margin: 0
136
- margin-bottom: 4px
137
- .header
138
- padding: 10px
139
- pre
140
- margin: 0
141
- padding: 0
142
- white-space: normal
143
- color: #000
144
- font-family: "Monaco", "Inconsolata", "Consolas", monospace
145
- code
146
- color: #000
147
- font-family: "Monaco", "Inconsolata", "Consolas", monospace
148
- pre
149
- background-color: #333
150
- ol
151
- margin: 0px
152
- padding: 0px
153
- margin-left: 45px
154
- font-size: 12px
155
- color: white
156
- li
157
- margin: 0px
158
- padding: 2px 6px
159
- border-left: 5px solid white
160
- code
161
- white-space: pre
162
- white-space: pre-wrap
163
- .hits
164
- float: right
165
- margin-left: 10px
166
- padding: 2px 4px
167
- background-color: #444
168
- background: -webkit-gradient(linear, 0 0, 0 bottom, from(#222222), to(#666666))
169
- background: -moz-linear-gradient(#222222, #666666)
170
- background: linear-gradient(#222222, #666666)
171
- color: white
172
- font-family: Helvetica, "Helvetica Neue", Arial, sans-serif
173
- font-size: 10px
174
- font-weight: bold
175
- text-align: center
176
- border-radius: 6px
177
-
178
- #footer
179
- color: #ddd
180
- font-size: 12px
181
- font-weight: bold
182
- margin-top: 12px
183
- text-align: right
184
- a
185
- color: #eee
186
- text-decoration: underline
187
- &:hover
188
- color: #fff
189
- text-decoration: none
190
-
191
- .green
192
- color: #090
193
-
194
- .red
195
- color: #900
196
-
197
- .yellow
198
- color: #da0
199
- .blue
200
- color: blue
201
-
202
- // Overriding the css reset
203
- thead
204
- th
205
- background: white
206
-
207
- .source_table
208
- .covered
209
- border-color: #090
210
- .missed
211
- border-color: #900
212
- .never
213
- border-color: black
214
- .skipped
215
- border-color: #fc0
216
- .missed-branch
217
- border-color: #bf0000
218
- .covered
219
- &:nth-child(odd)
220
- background-color: #CDF2CD
221
- &:nth-child(even)
222
- background-color: #DBF2DB
223
- .missed
224
- &:nth-child(odd)
225
- background-color: #F7C0C0
226
- &:nth-child(even)
227
- background-color: #F7CFCF
228
- .never
229
- &:nth-child(odd)
230
- background-color: #efefef
231
- &:nth-child(even)
232
- background-color: #f4f4f4
233
- .skipped
234
- &:nth-child(odd)
235
- background-color: #FBF0C0
236
- &:nth-child(even)
237
- background-color: #FBFfCf
238
- .missed-branch
239
- &:nth-child(odd)
240
- background-color: #cc8e8e
241
- &:nth-child(even)
242
- background-color: #cc6e6e