fortitude 0.9.1-java → 0.9.2-java

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 (113) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +1 -1
  3. data/.travis.yml +28 -22
  4. data/CHANGES.md +50 -0
  5. data/CONTRIBUTORS.md +1 -0
  6. data/doc/.gitignore +18 -0
  7. data/doc/Gemfile +21 -0
  8. data/doc/config.rb +92 -0
  9. data/doc/source/images/background.png +0 -0
  10. data/doc/source/images/middleman.png +0 -0
  11. data/doc/source/images/why/icon_button.png +0 -0
  12. data/doc/source/images/why/icon_button@2x.png +0 -0
  13. data/doc/source/images/why/modal_dialog@2x.png +0 -0
  14. data/doc/source/index.html.pcss +96 -0
  15. data/doc/source/index.html.rb +66 -0
  16. data/doc/source/javascripts/all.js +1 -0
  17. data/doc/source/javascripts/highlight.pack.js +1 -0
  18. data/doc/source/layouts/layout.rb +55 -0
  19. data/doc/source/portable/fortitude-bootstrap.rb +53 -0
  20. data/doc/source/shared/base.pcss +62 -0
  21. data/doc/source/shared/base.rb +30 -0
  22. data/doc/source/shared/common.rb +55 -0
  23. data/doc/source/shared/standard_page.rb +40 -0
  24. data/doc/source/stylesheets/_shared_prefix.scss +25 -0
  25. data/doc/source/stylesheets/all.css.scss +7 -0
  26. data/doc/source/stylesheets/basics.css.scss +20 -0
  27. data/doc/source/stylesheets/bootstrap_importer.css.scss +1 -0
  28. data/doc/source/stylesheets/highlight/arta.css +140 -0
  29. data/doc/source/stylesheets/highlight/ascetic.css +52 -0
  30. data/doc/source/stylesheets/highlight/atelier-dune.dark.css +95 -0
  31. data/doc/source/stylesheets/highlight/atelier-dune.light.css +95 -0
  32. data/doc/source/stylesheets/highlight/atelier-forest.dark.css +95 -0
  33. data/doc/source/stylesheets/highlight/atelier-forest.light.css +95 -0
  34. data/doc/source/stylesheets/highlight/atelier-heath.dark.css +95 -0
  35. data/doc/source/stylesheets/highlight/atelier-heath.light.css +95 -0
  36. data/doc/source/stylesheets/highlight/atelier-lakeside.dark.css +95 -0
  37. data/doc/source/stylesheets/highlight/atelier-lakeside.light.css +95 -0
  38. data/doc/source/stylesheets/highlight/atelier-seaside.dark.css +95 -0
  39. data/doc/source/stylesheets/highlight/atelier-seaside.light.css +95 -0
  40. data/doc/source/stylesheets/highlight/brown_paper.css +104 -0
  41. data/doc/source/stylesheets/highlight/brown_papersq.png +0 -0
  42. data/doc/source/stylesheets/highlight/codepen-embed.css +108 -0
  43. data/doc/source/stylesheets/highlight/color-brewer.css +168 -0
  44. data/doc/source/stylesheets/highlight/dark.css +104 -0
  45. data/doc/source/stylesheets/highlight/default.css +152 -0
  46. data/doc/source/stylesheets/highlight/docco.css +135 -0
  47. data/doc/source/stylesheets/highlight/far.css +111 -0
  48. data/doc/source/stylesheets/highlight/foundation.css +136 -0
  49. data/doc/source/stylesheets/highlight/github.css +124 -0
  50. data/doc/source/stylesheets/highlight/googlecode.css +147 -0
  51. data/doc/source/stylesheets/highlight/hybrid.css +170 -0
  52. data/doc/source/stylesheets/highlight/idea.css +125 -0
  53. data/doc/source/stylesheets/highlight/ir_black.css +109 -0
  54. data/doc/source/stylesheets/highlight/kimbie.dark.css +96 -0
  55. data/doc/source/stylesheets/highlight/kimbie.light.css +96 -0
  56. data/doc/source/stylesheets/highlight/magula.css +121 -0
  57. data/doc/source/stylesheets/highlight/mono-blue.css +69 -0
  58. data/doc/source/stylesheets/highlight/monokai.css +127 -0
  59. data/doc/source/stylesheets/highlight/monokai_sublime.css +154 -0
  60. data/doc/source/stylesheets/highlight/obsidian.css +153 -0
  61. data/doc/source/stylesheets/highlight/paraiso.dark.css +95 -0
  62. data/doc/source/stylesheets/highlight/paraiso.light.css +95 -0
  63. data/doc/source/stylesheets/highlight/pojoaque.css +107 -0
  64. data/doc/source/stylesheets/highlight/pojoaque.jpg +0 -0
  65. data/doc/source/stylesheets/highlight/railscasts.css +187 -0
  66. data/doc/source/stylesheets/highlight/rainbow.css +108 -0
  67. data/doc/source/stylesheets/highlight/school_book.css +112 -0
  68. data/doc/source/stylesheets/highlight/school_book.png +0 -0
  69. data/doc/source/stylesheets/highlight/solarized_dark.css +108 -0
  70. data/doc/source/stylesheets/highlight/solarized_light.css +108 -0
  71. data/doc/source/stylesheets/highlight/sunburst.css +164 -0
  72. data/doc/source/stylesheets/highlight/tomorrow-night-blue.css +95 -0
  73. data/doc/source/stylesheets/highlight/tomorrow-night-bright.css +94 -0
  74. data/doc/source/stylesheets/highlight/tomorrow-night-eighties.css +94 -0
  75. data/doc/source/stylesheets/highlight/tomorrow-night.css +95 -0
  76. data/doc/source/stylesheets/highlight/tomorrow.css +92 -0
  77. data/doc/source/stylesheets/highlight/vs.css +93 -0
  78. data/doc/source/stylesheets/highlight/xcode.css +158 -0
  79. data/doc/source/stylesheets/highlight/zenburn.css +118 -0
  80. data/doc/source/why/a_larger_view.html.rb +774 -0
  81. data/doc/source/why/a_simple_helper.html.rb +332 -0
  82. data/doc/source/why/building_a_rich_modal_dialog.html.rb +156 -0
  83. data/doc/source/why/commonality_and_inheritance.html.rb +564 -0
  84. data/doc/source/why/example_list.rb +60 -0
  85. data/doc/source/why/example_page.rb +116 -0
  86. data/doc/source/why/index.html.rb +86 -0
  87. data/doc/source/why/other_benefits.html.rb +110 -0
  88. data/fortitude.gemspec +6 -1
  89. data/lib/fortitude/doctypes/html4_tags_strict.rb +1 -0
  90. data/lib/fortitude/doctypes/html5.rb +1 -0
  91. data/lib/fortitude/method_templates/tag_method_template.rb.smpl +27 -14
  92. data/lib/fortitude/rails/helpers.rb +2 -2
  93. data/lib/fortitude/rendering_context.rb +10 -1
  94. data/lib/fortitude/tags/tag.rb +3 -2
  95. data/lib/fortitude/tags/tag_support.rb +8 -3
  96. data/lib/fortitude/tilt/fortitude_template.rb +6 -2
  97. data/lib/fortitude/version.rb +1 -1
  98. data/lib/fortitude/widget.rb +2 -0
  99. data/lib/fortitude/widget/convenience.rb +30 -0
  100. data/lib/fortitude/widget/files.rb +22 -11
  101. data/lib/fortitude/widget/needs.rb +5 -3
  102. data/spec/helpers/system_helpers.rb +1 -0
  103. data/spec/rails/development_mode_system_spec.rb +0 -1
  104. data/spec/rails/rendering_system_spec.rb +20 -1
  105. data/spec/rails/templates/rendering_system_spec/app/controllers/rendering_system_spec_controller.rb +13 -0
  106. data/spec/rails/templates/rendering_system_spec/app/views/rendering_system_spec/render_hash_subclass.rb +18 -0
  107. data/spec/rails/templates/rendering_system_spec/lib/my_hash.rb +5 -0
  108. data/spec/system/convenience_methods_system_spec.rb +166 -0
  109. data/spec/system/formatting_system_spec.rb +25 -1
  110. data/spec/system/tag_rendering_system_spec.rb +73 -0
  111. data/spec/system/tilt_system_spec.rb +31 -0
  112. data/spec/system/widget_class_from_spec.rb +20 -4
  113. metadata +91 -4
@@ -0,0 +1,95 @@
1
+ /* Base16 Atelier Heath Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/heath) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Heath Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #776977;
10
+ }
11
+
12
+ /* Atelier Heath Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #ca402b;
26
+ }
27
+
28
+ /* Atelier Heath Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #a65926;
37
+ }
38
+
39
+ /* Atelier Heath Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #bb8a35;
43
+ }
44
+
45
+ /* Atelier Heath Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #379a37;
53
+ }
54
+
55
+ /* Atelier Heath Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #159393;
58
+ }
59
+
60
+ /* Atelier Heath Light Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #516aec;
70
+ }
71
+
72
+ /* Atelier Heath Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #7b59c0;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ overflow-x: auto;
81
+ background: #f7f3f7;
82
+ color: #695d69;
83
+ padding: 0.5em;
84
+ -webkit-text-size-adjust: none;
85
+ }
86
+
87
+ .coffeescript .javascript,
88
+ .javascript .xml,
89
+ .tex .hljs-formula,
90
+ .xml .javascript,
91
+ .xml .vbscript,
92
+ .xml .css,
93
+ .xml .hljs-cdata {
94
+ opacity: 0.5;
95
+ }
@@ -0,0 +1,95 @@
1
+ /* Base16 Atelier Lakeside Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Lakeside Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #7195a8;
10
+ }
11
+
12
+ /* Atelier Lakeside Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #d22d72;
26
+ }
27
+
28
+ /* Atelier Lakeside Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #935c25;
37
+ }
38
+
39
+ /* Atelier Lakeside Dark Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #8a8a0f;
43
+ }
44
+
45
+ /* Atelier Lakeside Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #568c3b;
53
+ }
54
+
55
+ /* Atelier Lakeside Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #2d8f6f;
58
+ }
59
+
60
+ /* Atelier Lakeside Dark Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #257fad;
70
+ }
71
+
72
+ /* Atelier Lakeside Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #5d5db1;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ overflow-x: auto;
81
+ background: #1f292e;
82
+ color: #7ea2b4;
83
+ padding: 0.5em;
84
+ -webkit-text-size-adjust: none;
85
+ }
86
+
87
+ .coffeescript .javascript,
88
+ .javascript .xml,
89
+ .tex .hljs-formula,
90
+ .xml .javascript,
91
+ .xml .vbscript,
92
+ .xml .css,
93
+ .xml .hljs-cdata {
94
+ opacity: 0.5;
95
+ }
@@ -0,0 +1,95 @@
1
+ /* Base16 Atelier Lakeside Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/lakeside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Lakeside Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #5a7b8c;
10
+ }
11
+
12
+ /* Atelier Lakeside Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #d22d72;
26
+ }
27
+
28
+ /* Atelier Lakeside Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #935c25;
37
+ }
38
+
39
+ /* Atelier Lakeside Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #8a8a0f;
43
+ }
44
+
45
+ /* Atelier Lakeside Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #568c3b;
53
+ }
54
+
55
+ /* Atelier Lakeside Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #2d8f6f;
58
+ }
59
+
60
+ /* Atelier Lakeside Light Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #257fad;
70
+ }
71
+
72
+ /* Atelier Lakeside Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #5d5db1;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ overflow-x: auto;
81
+ background: #ebf8ff;
82
+ color: #516d7b;
83
+ padding: 0.5em;
84
+ -webkit-text-size-adjust: none;
85
+ }
86
+
87
+ .coffeescript .javascript,
88
+ .javascript .xml,
89
+ .tex .hljs-formula,
90
+ .xml .javascript,
91
+ .xml .vbscript,
92
+ .xml .css,
93
+ .xml .hljs-cdata {
94
+ opacity: 0.5;
95
+ }
@@ -0,0 +1,95 @@
1
+ /* Base16 Atelier Seaside Dark - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Seaside Dark Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #809980;
10
+ }
11
+
12
+ /* Atelier Seaside Dark Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #e6193c;
26
+ }
27
+
28
+ /* Atelier Seaside Dark Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #87711d;
37
+ }
38
+
39
+ /* Atelier Seaside Dark Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #c3c322;
43
+ }
44
+
45
+ /* Atelier Seaside Dark Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #29a329;
53
+ }
54
+
55
+ /* Atelier Seaside Dark Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #1999b3;
58
+ }
59
+
60
+ /* Atelier Seaside Dark Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #3d62f5;
70
+ }
71
+
72
+ /* Atelier Seaside Dark Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #ad2bee;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ overflow-x: auto;
81
+ background: #242924;
82
+ color: #8ca68c;
83
+ padding: 0.5em;
84
+ -webkit-text-size-adjust: none;
85
+ }
86
+
87
+ .coffeescript .javascript,
88
+ .javascript .xml,
89
+ .tex .hljs-formula,
90
+ .xml .javascript,
91
+ .xml .vbscript,
92
+ .xml .css,
93
+ .xml .hljs-cdata {
94
+ opacity: 0.5;
95
+ }
@@ -0,0 +1,95 @@
1
+ /* Base16 Atelier Seaside Light - Theme */
2
+ /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/seaside/) */
3
+ /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
4
+ /* https://github.com/jmblog/color-themes-for-highlightjs */
5
+
6
+ /* Atelier Seaside Light Comment */
7
+ .hljs-comment,
8
+ .hljs-title {
9
+ color: #687d68;
10
+ }
11
+
12
+ /* Atelier Seaside Light Red */
13
+ .hljs-variable,
14
+ .hljs-attribute,
15
+ .hljs-tag,
16
+ .hljs-regexp,
17
+ .ruby .hljs-constant,
18
+ .xml .hljs-tag .hljs-title,
19
+ .xml .hljs-pi,
20
+ .xml .hljs-doctype,
21
+ .html .hljs-doctype,
22
+ .css .hljs-id,
23
+ .css .hljs-class,
24
+ .css .hljs-pseudo {
25
+ color: #e6193c;
26
+ }
27
+
28
+ /* Atelier Seaside Light Orange */
29
+ .hljs-number,
30
+ .hljs-preprocessor,
31
+ .hljs-pragma,
32
+ .hljs-built_in,
33
+ .hljs-literal,
34
+ .hljs-params,
35
+ .hljs-constant {
36
+ color: #87711d;
37
+ }
38
+
39
+ /* Atelier Seaside Light Yellow */
40
+ .hljs-ruby .hljs-class .hljs-title,
41
+ .css .hljs-rules .hljs-attribute {
42
+ color: #c3c322;
43
+ }
44
+
45
+ /* Atelier Seaside Light Green */
46
+ .hljs-string,
47
+ .hljs-value,
48
+ .hljs-inheritance,
49
+ .hljs-header,
50
+ .ruby .hljs-symbol,
51
+ .xml .hljs-cdata {
52
+ color: #29a329;
53
+ }
54
+
55
+ /* Atelier Seaside Light Aqua */
56
+ .css .hljs-hexcolor {
57
+ color: #1999b3;
58
+ }
59
+
60
+ /* Atelier Seaside Light Blue */
61
+ .hljs-function,
62
+ .python .hljs-decorator,
63
+ .python .hljs-title,
64
+ .ruby .hljs-function .hljs-title,
65
+ .ruby .hljs-title .hljs-keyword,
66
+ .perl .hljs-sub,
67
+ .javascript .hljs-title,
68
+ .coffeescript .hljs-title {
69
+ color: #3d62f5;
70
+ }
71
+
72
+ /* Atelier Seaside Light Purple */
73
+ .hljs-keyword,
74
+ .javascript .hljs-function {
75
+ color: #ad2bee;
76
+ }
77
+
78
+ .hljs {
79
+ display: block;
80
+ overflow-x: auto;
81
+ background: #f0fff0;
82
+ color: #5e6e5e;
83
+ padding: 0.5em;
84
+ -webkit-text-size-adjust: none;
85
+ }
86
+
87
+ .coffeescript .javascript,
88
+ .javascript .xml,
89
+ .tex .hljs-formula,
90
+ .xml .javascript,
91
+ .xml .vbscript,
92
+ .xml .css,
93
+ .xml .hljs-cdata {
94
+ opacity: 0.5;
95
+ }