Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Side by Side Diff: lib/src/prism/themes/prism-tomorrow.css

Issue 1418513006: update elements and fix some bugs (Closed) Base URL: git@github.com:dart-lang/polymer_elements.git@master
Patch Set: code review updates Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « lib/src/prism/themes/prism-okaidia.css ('k') | lib/src/prism/themes/prism-twilight.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « lib/src/prism/themes/prism-okaidia.css ('k') | lib/src/prism/themes/prism-twilight.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698