| OLD | NEW |
| 1 /** | 1 /** |
| 2 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML | 2 * prism.js tomorrow night eighties for JavaScript, CoffeeScript, CSS and HTML |
| 3 * Based on https://github.com/chriskempson/tomorrow-theme | 3 * Based on https://github.com/chriskempson/tomorrow-theme |
| 4 * @author Rose Pritchard | 4 * @author Rose Pritchard |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 code[class*="language-"], | 7 code[class*="language-"], |
| 8 pre[class*="language-"] { | 8 pre[class*="language-"] { |
| 9 color: #ccc; | 9 color: #ccc; |
| 10 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; | 10 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; |
| 11 direction: ltr; | 11 direction: ltr; |
| 12 text-align: left; | 12 text-align: left; |
| 13 white-space: pre; | 13 white-space: pre; |
| 14 word-spacing: normal; | 14 word-spacing: normal; |
| 15 word-break: normal; | 15 word-break: normal; |
| 16 word-wrap: normal; |
| 16 line-height: 1.5; | 17 line-height: 1.5; |
| 17 | 18 |
| 18 -moz-tab-size: 4; | 19 -moz-tab-size: 4; |
| 19 -o-tab-size: 4; | 20 -o-tab-size: 4; |
| 20 tab-size: 4; | 21 tab-size: 4; |
| 21 | 22 |
| 22 -webkit-hyphens: none; | 23 -webkit-hyphens: none; |
| 23 -moz-hyphens: none; | 24 -moz-hyphens: none; |
| 24 -ms-hyphens: none; | 25 -ms-hyphens: none; |
| 25 hyphens: none; | 26 hyphens: none; |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 font-style: italic; | 111 font-style: italic; |
| 111 } | 112 } |
| 112 | 113 |
| 113 .token.entity { | 114 .token.entity { |
| 114 cursor: help; | 115 cursor: help; |
| 115 } | 116 } |
| 116 | 117 |
| 117 .token.inserted { | 118 .token.inserted { |
| 118 color: green; | 119 color: green; |
| 119 } | 120 } |
| OLD | NEW |