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

Side by Side Diff: lib/src/prism/themes/prism-funky.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-dark.css ('k') | lib/src/prism/themes/prism-okaidia.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 Funky theme 2 * prism.js Funky theme
3 * Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-t he-gaps/ 3 * Based on “Polyfilling the gaps” talk slides http://lea.verou.me/polyfilling-t he-gaps/
4 * @author Lea Verou 4 * @author Lea Verou
5 */ 5 */
6 6
7 code[class*="language-"], 7 code[class*="language-"],
8 pre[class*="language-"] { 8 pre[class*="language-"] {
9 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; 9 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
10 direction: ltr; 10 direction: ltr;
11 text-align: left; 11 text-align: left;
12 white-space: pre; 12 white-space: pre;
13 word-spacing: normal; 13 word-spacing: normal;
14 word-break: normal; 14 word-break: normal;
15 word-wrap: normal;
15 line-height: 1.5; 16 line-height: 1.5;
16 17
17 -moz-tab-size: 4; 18 -moz-tab-size: 4;
18 -o-tab-size: 4; 19 -o-tab-size: 4;
19 tab-size: 4; 20 tab-size: 4;
20 21
21 -webkit-hyphens: none; 22 -webkit-hyphens: none;
22 -moz-hyphens: none; 23 -moz-hyphens: none;
23 -ms-hyphens: none; 24 -ms-hyphens: none;
24 hyphens: none; 25 hyphens: none;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 font-style: italic; 107 font-style: italic;
107 } 108 }
108 109
109 .token.entity { 110 .token.entity {
110 cursor: help; 111 cursor: help;
111 } 112 }
112 113
113 .token.deleted { 114 .token.deleted {
114 color: red; 115 color: red;
115 } 116 }
OLDNEW
« no previous file with comments | « lib/src/prism/themes/prism-dark.css ('k') | lib/src/prism/themes/prism-okaidia.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698