rubycritic-simplecov 4.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (115) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +290 -0
  3. data/CONTRIBUTING.md +93 -0
  4. data/Gemfile +6 -0
  5. data/LICENSE.txt +22 -0
  6. data/README.md +259 -0
  7. data/ROADMAP.md +56 -0
  8. data/Rakefile +28 -0
  9. data/bin/rubycritic +10 -0
  10. data/lib/rubycritic/analysers/attributes.rb +29 -0
  11. data/lib/rubycritic/analysers/churn.rb +30 -0
  12. data/lib/rubycritic/analysers/complexity.rb +30 -0
  13. data/lib/rubycritic/analysers/coverage.rb +118 -0
  14. data/lib/rubycritic/analysers/helpers/ast_node.rb +76 -0
  15. data/lib/rubycritic/analysers/helpers/flay.rb +13 -0
  16. data/lib/rubycritic/analysers/helpers/flog.rb +17 -0
  17. data/lib/rubycritic/analysers/helpers/methods_counter.rb +25 -0
  18. data/lib/rubycritic/analysers/helpers/modules_locator.rb +42 -0
  19. data/lib/rubycritic/analysers/helpers/parser.rb +14 -0
  20. data/lib/rubycritic/analysers/helpers/reek.rb +11 -0
  21. data/lib/rubycritic/analysers/smells/flay.rb +79 -0
  22. data/lib/rubycritic/analysers/smells/flog.rb +69 -0
  23. data/lib/rubycritic/analysers/smells/reek.rb +53 -0
  24. data/lib/rubycritic/analysers_runner.rb +41 -0
  25. data/lib/rubycritic/analysis_summary.rb +40 -0
  26. data/lib/rubycritic/browser.rb +19 -0
  27. data/lib/rubycritic/cli/application.rb +34 -0
  28. data/lib/rubycritic/cli/options/argv.rb +137 -0
  29. data/lib/rubycritic/cli/options/file.rb +100 -0
  30. data/lib/rubycritic/cli/options.rb +33 -0
  31. data/lib/rubycritic/colorize.rb +17 -0
  32. data/lib/rubycritic/command_factory.rb +25 -0
  33. data/lib/rubycritic/commands/base.rb +18 -0
  34. data/lib/rubycritic/commands/ci.rb +14 -0
  35. data/lib/rubycritic/commands/compare.rb +106 -0
  36. data/lib/rubycritic/commands/default.rb +38 -0
  37. data/lib/rubycritic/commands/help.rb +18 -0
  38. data/lib/rubycritic/commands/status_reporter.rb +45 -0
  39. data/lib/rubycritic/commands/utils/build_number_file.rb +37 -0
  40. data/lib/rubycritic/commands/version.rb +16 -0
  41. data/lib/rubycritic/configuration.rb +69 -0
  42. data/lib/rubycritic/core/analysed_module.rb +93 -0
  43. data/lib/rubycritic/core/analysed_modules_collection.rb +95 -0
  44. data/lib/rubycritic/core/location.rb +47 -0
  45. data/lib/rubycritic/core/rating.rb +30 -0
  46. data/lib/rubycritic/core/smell.rb +84 -0
  47. data/lib/rubycritic/generators/console_report.rb +20 -0
  48. data/lib/rubycritic/generators/html/assets/fonts/FontAwesome.otf +0 -0
  49. data/lib/rubycritic/generators/html/assets/fonts/Roboto-Medium.ttf +0 -0
  50. data/lib/rubycritic/generators/html/assets/fonts/Roboto-Regular.ttf +0 -0
  51. data/lib/rubycritic/generators/html/assets/fonts/fontawesome-webfont.eot +0 -0
  52. data/lib/rubycritic/generators/html/assets/fonts/fontawesome-webfont.svg +2671 -0
  53. data/lib/rubycritic/generators/html/assets/fonts/fontawesome-webfont.ttf +0 -0
  54. data/lib/rubycritic/generators/html/assets/fonts/fontawesome-webfont.woff +0 -0
  55. data/lib/rubycritic/generators/html/assets/fonts/fontawesome-webfont.woff2 +0 -0
  56. data/lib/rubycritic/generators/html/assets/fonts/glyphicons-halflings-regular.eot +0 -0
  57. data/lib/rubycritic/generators/html/assets/fonts/glyphicons-halflings-regular.svg +288 -0
  58. data/lib/rubycritic/generators/html/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
  59. data/lib/rubycritic/generators/html/assets/fonts/glyphicons-halflings-regular.woff +0 -0
  60. data/lib/rubycritic/generators/html/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
  61. data/lib/rubycritic/generators/html/assets/images/logo.png +0 -0
  62. data/lib/rubycritic/generators/html/assets/javascripts/application.js +281 -0
  63. data/lib/rubycritic/generators/html/assets/javascripts/bootstrap.min.js +7 -0
  64. data/lib/rubycritic/generators/html/assets/javascripts/highcharts.src-4.0.1.js +17672 -0
  65. data/lib/rubycritic/generators/html/assets/javascripts/jquery.filtertable.min.js +13 -0
  66. data/lib/rubycritic/generators/html/assets/javascripts/jquery.min.js +4 -0
  67. data/lib/rubycritic/generators/html/assets/javascripts/jquery.scrollTo.min.js +7 -0
  68. data/lib/rubycritic/generators/html/assets/javascripts/jquery.tablesorter.js +1031 -0
  69. data/lib/rubycritic/generators/html/assets/javascripts/jquery.tablesorter.min.js +4 -0
  70. data/lib/rubycritic/generators/html/assets/javascripts/jquery.timeago.js +231 -0
  71. data/lib/rubycritic/generators/html/assets/javascripts/prettify.js +46 -0
  72. data/lib/rubycritic/generators/html/assets/stylesheets/application.css +570 -0
  73. data/lib/rubycritic/generators/html/assets/stylesheets/bootstrap.min.css +6 -0
  74. data/lib/rubycritic/generators/html/assets/stylesheets/font-awesome.min.css +4 -0
  75. data/lib/rubycritic/generators/html/assets/stylesheets/prettify.css +1 -0
  76. data/lib/rubycritic/generators/html/assets/stylesheets/prettify.custom_theme.css +69 -0
  77. data/lib/rubycritic/generators/html/base.rb +54 -0
  78. data/lib/rubycritic/generators/html/code_file.rb +51 -0
  79. data/lib/rubycritic/generators/html/code_index.rb +33 -0
  80. data/lib/rubycritic/generators/html/line.rb +37 -0
  81. data/lib/rubycritic/generators/html/overview.rb +38 -0
  82. data/lib/rubycritic/generators/html/simple_cov_index.rb +44 -0
  83. data/lib/rubycritic/generators/html/smells_index.rb +45 -0
  84. data/lib/rubycritic/generators/html/templates/code_file.html.erb +61 -0
  85. data/lib/rubycritic/generators/html/templates/code_index.html.erb +55 -0
  86. data/lib/rubycritic/generators/html/templates/layouts/application.html.erb +66 -0
  87. data/lib/rubycritic/generators/html/templates/line.html.erb +1 -0
  88. data/lib/rubycritic/generators/html/templates/overview.html.erb +68 -0
  89. data/lib/rubycritic/generators/html/templates/simple_cov_index.html.erb +44 -0
  90. data/lib/rubycritic/generators/html/templates/smells_index.html.erb +47 -0
  91. data/lib/rubycritic/generators/html/templates/smelly_line.html.erb +23 -0
  92. data/lib/rubycritic/generators/html/turbulence.rb +17 -0
  93. data/lib/rubycritic/generators/html/view_helpers.rb +58 -0
  94. data/lib/rubycritic/generators/html_report.rb +77 -0
  95. data/lib/rubycritic/generators/json/simple.rb +43 -0
  96. data/lib/rubycritic/generators/json_report.rb +26 -0
  97. data/lib/rubycritic/generators/lint_report.rb +30 -0
  98. data/lib/rubycritic/generators/text/lint.rb +41 -0
  99. data/lib/rubycritic/generators/text/list.rb +45 -0
  100. data/lib/rubycritic/generators/text/templates/lint.erb +3 -0
  101. data/lib/rubycritic/generators/text/templates/list.erb +12 -0
  102. data/lib/rubycritic/rake_task.rb +71 -0
  103. data/lib/rubycritic/reporter.rb +39 -0
  104. data/lib/rubycritic/revision_comparator.rb +45 -0
  105. data/lib/rubycritic/serializer.rb +32 -0
  106. data/lib/rubycritic/smells_status_setter.rb +18 -0
  107. data/lib/rubycritic/source_control_systems/base.rb +41 -0
  108. data/lib/rubycritic/source_control_systems/double.rb +19 -0
  109. data/lib/rubycritic/source_control_systems/git.rb +95 -0
  110. data/lib/rubycritic/source_control_systems/mercurial.rb +29 -0
  111. data/lib/rubycritic/source_control_systems/perforce.rb +116 -0
  112. data/lib/rubycritic/source_locator.rb +52 -0
  113. data/lib/rubycritic/version.rb +5 -0
  114. data/lib/rubycritic.rb +6 -0
  115. metadata +528 -0
@@ -0,0 +1,570 @@
1
+ /* Font Faces */
2
+ @font-face {
3
+ font-family: 'RobotoMedium';
4
+ src: url('../fonts/Roboto-Medium.ttf') format('truetype');
5
+ }
6
+ @font-face {
7
+ font-family: 'RobotoRegular';
8
+ src: url('../fonts/Roboto-Regular.ttf') format('truetype');
9
+ }
10
+
11
+ /*Helpers*/
12
+ .marginTop20 { margin-top:20px; }
13
+ /*End of Helpers*/
14
+ /*Layout Styles*/
15
+ body { overflow-x: hidden; }
16
+
17
+ header {
18
+ max-height: 85px;
19
+ background: #fff!important;
20
+ border:none!important;
21
+ padding: 10px 20px;
22
+ box-shadow: 0 1px 10px rgba(0,0,0,.15);
23
+ }
24
+
25
+ /* Toggle Styles */
26
+
27
+ #wrapper {
28
+ padding-left: 0;
29
+ -webkit-transition: all 0.5s ease;
30
+ -moz-transition: all 0.5s ease;
31
+ -o-transition: all 0.5s ease;
32
+ transition: all 0.5s ease;
33
+ margin-top: 60px;
34
+ }
35
+
36
+ #wrapper.toggled {
37
+ padding-left: 120px;
38
+ }
39
+
40
+ #sidebar-wrapper {
41
+ z-index: 1000;
42
+ position: fixed;
43
+ left: 120px;
44
+ width: 0;
45
+ height: 100%;
46
+ margin-left: -120px;
47
+ overflow-y: auto;
48
+ background: #fff;
49
+ -webkit-transition: all 0.5s ease;
50
+ -moz-transition: all 0.5s ease;
51
+ -o-transition: all 0.5s ease;
52
+ transition: all 0.5s ease;
53
+ font-family: "RobotoMedium";
54
+ font-weight: normal;
55
+ font-size: 16px;
56
+ }
57
+ #page-content-wrapper {
58
+ font-family: "RobotoRegular"
59
+ }
60
+ #wrapper.toggled #sidebar-wrapper {
61
+ width: 120px;
62
+ }
63
+
64
+ #page-content-wrapper {
65
+ width: 100%;
66
+ position: absolute;
67
+ background:#f3f3f3;
68
+ /*height:100vh;*/
69
+ }
70
+ .Summary_Wrapper_Main { min-height:inherit!important; }
71
+ .Page_Title { background:#9B111D; padding: 10px 50px; }
72
+ .Page_Title h3 { margin: 10px 0px;color: #fff; }
73
+ .Page_Title h3 small { color: #fff;}
74
+ .Content_Wrapper {
75
+ padding: 25px;
76
+ display: inline-block;
77
+ width: 100%;
78
+ font-size: 17px;
79
+ }
80
+
81
+ .Graph_Cards {
82
+ padding:20px;
83
+ background:#fff;
84
+ border-radius:10px;
85
+ box-shadow: 0 1px 1px rgba(0,0,0,.15);
86
+ margin-bottom:20px;
87
+ /*min-height:330px;*/
88
+ }
89
+ .Graph_Cards img {margin-top:30px;}
90
+ .Graph_Cards h4 {color:#A4A4A4;}
91
+ .Summary_Wrapper {display:inline-block;width:100%;}
92
+ .Summary_Title {padding-left:0;}
93
+ .Summary_Title h3 {padding:10px;position:relative;color:#fff;}
94
+ .Summary_Title h3:after {
95
+ content: "";
96
+ width: 0;
97
+ height: 0;
98
+ border-top: 0px solid transparent;
99
+ border-bottom: 46px solid transparent;
100
+ border-left: 30px solid #fff;
101
+ position: absolute;
102
+ right: -30px;
103
+ top: 0;
104
+ }
105
+ .Green_DR h3 {background:#00A900;}
106
+ .Green_DR h3:after{border-left-color:#00a900}
107
+ .Green_DR .list-inline h4 {color:#00A900;}
108
+ .Green_Light h3 {background:#7FCB00;}
109
+ .Green_Light h3:after{border-left-color:#7FCB00}
110
+ .Green_Light .list-inline h4 {color:#7FCB00;}
111
+ .Yellow_Color h3 {background:#FFED00;}
112
+ .Yellow_Color h3:after{border-left-color:#FFED00}
113
+ .Yellow_Color .list-inline h4 {color:#FFED00;}
114
+ .Orange_Color h3 {background:#F77700;}
115
+ .Orange_Color h3:after{border-left-color:#F77700}
116
+ .Orange_Color .list-inline h4 {color:#F77700;}
117
+ .Red_Color h3 {background:#ED0000;}
118
+ .Red_Color h3:after{border-left-color:#ED0000}
119
+ .Red_Color .list-inline h4 {color:#ED0000;}
120
+ .Maroon_Color h3 {background:#B31F27;}
121
+ .Maroon_Color h3:after{border-left-color:#B31F27}
122
+ .Maroon_Color .list-inline h4 {color:#B31F27;}
123
+
124
+ .Summary_Content .list-inline {
125
+ text-align:center;
126
+ margin-top:10px;
127
+ padding-right:0;
128
+ }
129
+ .Summary_Content .list-inline span {color:#A4A4A4}
130
+ #wrapper.toggled #page-content-wrapper {
131
+ position: absolute;
132
+ margin-right: -250px;
133
+ }
134
+
135
+ /* Sidebar Styles */
136
+
137
+ .sidebar-nav {
138
+ position: absolute;
139
+ top: 0;
140
+ width: 120px;
141
+ text-align:center;
142
+ margin: 0;
143
+ padding: 0;
144
+ list-style: none;
145
+ }
146
+
147
+ .sidebar-nav li {
148
+ display:block;text-align:center;
149
+ line-height: 40px;
150
+ }
151
+
152
+ .sidebar-nav li a {
153
+ display: block;
154
+ text-decoration: none;
155
+ color: #969696;padding:10px;
156
+ }
157
+ .sidebar-nav li a.active {
158
+ border-left: 5px solid #9b111d;
159
+ color: #9b111d;
160
+ }
161
+ .sidebar-nav li a.active {
162
+ border-left: 2px solid #9b111d;
163
+ color: #9b111d;
164
+ }
165
+ .sidebar-nav li a:hover {
166
+ text-decoration: none;
167
+ color: #fff;
168
+ background: rgba(255,255,255,0.2);
169
+ }
170
+
171
+ .sidebar-nav li a:active,
172
+ .sidebar-nav li a:focus {
173
+ text-decoration: none;
174
+ }
175
+
176
+ .sidebar-nav > .sidebar-brand {
177
+ height: 65px;
178
+ font-size: 18px;
179
+ line-height: 60px;
180
+ }
181
+
182
+ .sidebar-nav > .sidebar-brand a {
183
+ color: #999999;
184
+ }
185
+
186
+ .sidebar-nav > .sidebar-brand a:hover {
187
+ color: #fff;
188
+ background: none;
189
+ }
190
+
191
+ .sidebar-nav .fa {
192
+ font-size: 24px;
193
+ }
194
+
195
+ @media(min-width:768px) {
196
+ #wrapper {
197
+ padding-left: 120px;
198
+ }
199
+
200
+ #wrapper.toggled {
201
+ padding-left: 0;
202
+ }
203
+
204
+ #sidebar-wrapper {
205
+ width: 120px;
206
+ }
207
+
208
+ #wrapper.toggled #sidebar-wrapper {
209
+ width: 0;
210
+ }
211
+
212
+ #page-content-wrapper {
213
+ padding:0px;
214
+ position: relative;
215
+ }
216
+
217
+ #wrapper.toggled #page-content-wrapper {
218
+ position: relative;
219
+ margin-right: 0;
220
+ }
221
+ }
222
+ .sidebar-nav li a:hover {color:#9B111D;}
223
+ .sidebar-nav li a i,.sidebar-nav li a img {font-size:18px;display:block;margin:0 auto;}
224
+ /*End of Layout Stlyes*/
225
+
226
+ .fadeIn {-webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
227
+ -moz-animation: fadein 2s; /* Firefox < 16 */
228
+ -ms-animation: fadein 2s; /* Internet Explorer */
229
+ -o-animation: fadein 2s; /* Opera < 12.1 */
230
+ animation: fadein 2s;}
231
+ .fadeIn-2 {-webkit-animation: fadein 2.5s; /* Safari, Chrome and Opera > 12.1 */
232
+ -moz-animation: fadein 2.5s; /* Firefox < 16 */
233
+ -ms-animation: fadein 2.5s; /* Internet Explorer */
234
+ -o-animation: fadein 2.5s; /* Opera < 12.1 */
235
+ animation: fadein 2.5s;}
236
+ .fadeIn-3 {-webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */
237
+ -moz-animation: fadein 3s; /* Firefox < 16 */
238
+ -ms-animation: fadein 3s; /* Internet Explorer */
239
+ -o-animation: fadein 3s; /* Opera < 12.1 */
240
+ animation: fadein 3s;}
241
+ @keyframes fadein {
242
+ from { opacity: 0; }
243
+ to { opacity: 1; }
244
+ }
245
+
246
+ /* Firefox < 16 */
247
+ @-moz-keyframes fadein {
248
+ from { opacity: 0; }
249
+ to { opacity: 1; }
250
+ }
251
+ @-webkit-keyframes fadein {
252
+ from { opacity: 0; }
253
+ to { opacity: 1; }
254
+ }
255
+
256
+ /* Internet Explorer */
257
+ @-ms-keyframes fadein {
258
+ from { opacity: 0; }
259
+ to { opacity: 1; }
260
+ }
261
+
262
+ /* Opera < 12.1 */
263
+ @-o-keyframes fadein {
264
+ from { opacity: 0; }
265
+ to { opacity: 1; }
266
+ }
267
+ /* SMELLS */
268
+ .table > tbody > tr > td {
269
+ vertical-align: middle;
270
+ }
271
+ .table > thead > tr th:nth-child(2) {
272
+ padding-left: 20px;
273
+ }
274
+
275
+ /*TH*/
276
+ .table th {
277
+ color: #4e4d4d;
278
+ font-weight: bold;
279
+ }
280
+ .table.code th:nth-child(1) {
281
+ text-align: center;
282
+ }
283
+ .table.code th:nth-child(2) {
284
+ text-align: left;
285
+ }
286
+ .table.code th {
287
+ text-align: right;
288
+ }
289
+
290
+ /*TD*/
291
+ .table td {
292
+ color: #777575;
293
+ }
294
+ .table.code td:nth-child(1) {
295
+ text-align: center;
296
+ }
297
+ .table.code td:nth-child(2) {
298
+ text-align: left;
299
+ }
300
+ .table.code td {
301
+ text-align: right;
302
+ }
303
+
304
+ .status, .rating {
305
+ width: 40px;
306
+ height: 40px;
307
+ border-radius: 50%;
308
+ line-height: 40px;
309
+ font-size: 11px;
310
+ text-align: center;
311
+ color: #fff;
312
+ display: inline-block;
313
+ cursor: pointer;
314
+ }
315
+
316
+ .rating.big {
317
+ width: 40px;
318
+ height: 40px;
319
+ line-height: 40px;
320
+ font-size: 25px;
321
+ }
322
+
323
+ .status.new { background: #00aa00; }
324
+ .status.old { background: #cccccc; }
325
+
326
+ .rating { font-size: 25px; }
327
+ .rating.a { background: #00aa00; }
328
+ .rating.b { background: #80cc00; }
329
+ .rating.c { background: #ffed00; }
330
+
331
+ .rating.d { background: #f77700; }
332
+ .rating.e { background: #ed0000; }
333
+ .rating.f { background: #b32028; }
334
+
335
+ .code-top-detail {
336
+ border-bottom: 1px solid #000;
337
+ }
338
+
339
+ .right-to-left li { float: right; }
340
+ .right-to-left>li.active>a {
341
+ color: #9B111D;
342
+ background: none;
343
+ border-bottom: 2px solid #9B111D;
344
+ border-radius: 0;
345
+ }
346
+ .right-to-left>li.active>a:hover {
347
+ background: none;
348
+ color: #9B111D;
349
+ }
350
+ .right-to-left>li>a {
351
+ color: #a4a4a4;
352
+ padding: 10px 20px 20px;
353
+ border-bottom: 2px solid #f3f3f3;
354
+ }
355
+
356
+ .critic-num {
357
+ width: 1%;
358
+ min-width: 50px;
359
+ padding-right: 10px;
360
+ padding-left: 10px;
361
+ font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
362
+ font-size: 12px;
363
+ line-height: 20px;
364
+ color: rgba(0,0,0,0.3);
365
+ text-align: right;
366
+ white-space: nowrap;
367
+ vertical-align: top;
368
+ cursor: pointer;
369
+ -webkit-user-select: none;
370
+ -moz-user-select: none;
371
+ -ms-user-select: none;
372
+ user-select: none;
373
+ border: solid #eee;
374
+ border-width: 0 1px 0 0;
375
+ }
376
+ .critic-code-inner {
377
+ overflow: visible;
378
+ font-family: Consolas, "Liberation Mono", Menlo, Courier, monospace;
379
+ font-size: 12px;
380
+ color: #333;
381
+ word-wrap: normal;
382
+ white-space: pre;
383
+ }
384
+ .critic-code {
385
+ position: relative;
386
+ padding-right: 10px;
387
+ padding-left: 10px;
388
+ line-height: 20px;
389
+ vertical-align: top;
390
+ }
391
+ .critic-num::before {
392
+ content: attr(data-line-number);
393
+ }
394
+
395
+ .old td {
396
+ background-color: #f0dbdb;
397
+ }
398
+ .old td:first-child, .red {
399
+ background-color: #feb9b9;
400
+ }
401
+
402
+ .line-code td {
403
+ background-color: #efefef;
404
+ }
405
+
406
+ .grey {
407
+ background-color: #ebebeb;
408
+ }
409
+ .green {
410
+ background-color: green;
411
+ }
412
+ .success {
413
+ background-color: #a3d39c;
414
+ color: #598527;
415
+ }
416
+ .success b {
417
+ color: #197b30;
418
+ }
419
+
420
+ ol.errors {
421
+ list-style: none;
422
+ padding-left: 0px;
423
+ }
424
+ .errors {
425
+ background-position: 10px 25px;
426
+ background-repeat: no-repeat;
427
+ margin-bottom: 5px;
428
+ color: #8b8b8b;
429
+ font-size: 14px;
430
+ }
431
+ .errors b {
432
+ font-size: 16px;
433
+ font-weight: 400;
434
+ }
435
+ .rc-position {
436
+ position: absolute;
437
+ right: 15px;
438
+ top: 15px;
439
+ }
440
+
441
+ .index-table .centered-cell {
442
+ text-align: center;
443
+ }
444
+
445
+ .circle {
446
+ display: block;
447
+ border-radius: 50%;
448
+ width: 50px;
449
+ height: 50px;
450
+ }
451
+
452
+ .circled-text {
453
+ text-align: center;
454
+ color: white;
455
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
456
+ font-weight: bold;
457
+ -webkit-user-select: none;
458
+ -moz-user-select: none;
459
+ -ms-user-select: none;
460
+ user-select: none;
461
+ cursor: default;
462
+ line-height: 50px;
463
+ font-size: 32px;
464
+ }
465
+
466
+ .smells-index-table .circled-text {
467
+ font-size: 15px;
468
+ float: left;
469
+ }
470
+
471
+ .status-old {
472
+ background-color: #FFDC00;
473
+ }
474
+
475
+ .status-new {
476
+ background-color: #FF4136;
477
+ }
478
+
479
+ .committed-at {
480
+ float: right;
481
+ color: #fff;
482
+ margin-top: 11px;
483
+ }
484
+
485
+ .smells {
486
+ position: relative;
487
+ white-space: normal;
488
+ }
489
+ .smells .heading { background-color: #F8AE60; }
490
+ .smells .description { background-color: #FBE5BE; }
491
+ .smells .fa-warning { color: #f57e00; }
492
+ .smells span { margin-left: 20px; }
493
+ .smells a { color: white; }
494
+ .smells a:hover { color: #337ab7; }
495
+
496
+ .table-header {
497
+ cursor: pointer;
498
+ }
499
+ .table-header-asc:after {
500
+ content: '\00A0\2191';
501
+ }
502
+ .table-header-desc:after {
503
+ content: '\00A0\2193';
504
+ }
505
+ .container-fluid {
506
+ padding-left: 0px;
507
+ padding-right: 0px;
508
+ }
509
+
510
+ span.metric {
511
+ font-size: 20px;
512
+ }
513
+
514
+ .sortable-table th {
515
+ cursor: pointer;
516
+ }
517
+
518
+ .obtained-score {
519
+ font-size: 1.5em;
520
+ }
521
+
522
+ .total-score {
523
+ font-size: 1em;
524
+ }
525
+
526
+ .logo {
527
+ font-size: 24px;
528
+ color: black;
529
+ font-weight: bold;
530
+ display: inline-block;
531
+ margin-left: 20px;
532
+ }
533
+
534
+
535
+ .filter-table {
536
+ text-align: right;
537
+ }
538
+
539
+ .filter-table input {
540
+ width: 200px;
541
+ display: inline;
542
+ height: 34px;
543
+ padding: 6px 12px;
544
+ font-size: 14px;
545
+ line-height: 1.42857143;
546
+ color: #555;
547
+ background-color: #fff;
548
+ background-image: none;
549
+ border: 1px solid #ccc;
550
+ border-radius: 4px;
551
+ }
552
+
553
+ .branch{
554
+ font-size: 15px;
555
+ color: #9b111d;
556
+ font-weight: bold;
557
+ display: inline-block;
558
+ padding: 13px;
559
+ }
560
+
561
+ .green-color {
562
+ color: #00A900;
563
+ }
564
+ .red-color {
565
+ color: #ED0000;
566
+ }
567
+ .empty-span{
568
+ height: 17px;
569
+ width: 17px;
570
+ }