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

Side by Side Diff: lib/src/prism/themes/prism-okaidia.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-funky.css ('k') | lib/src/prism/themes/prism-tomorrow.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 * okaidia theme for JavaScript, CSS and HTML 2 * okaidia theme for JavaScript, CSS and HTML
3 * Loosely based on Monokai textmate theme by http://www.monokai.nl/ 3 * Loosely based on Monokai textmate theme by http://www.monokai.nl/
4 * @author ocodia 4 * @author ocodia
5 */ 5 */
6 6
7 code[class*="language-"], 7 code[class*="language-"],
8 pre[class*="language-"] { 8 pre[class*="language-"] {
9 color: #f8f8f2; 9 color: #f8f8f2;
10 text-shadow: 0 1px rgba(0, 0, 0, 0.3); 10 text-shadow: 0 1px rgba(0, 0, 0, 0.3);
11 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace; 11 font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
12 direction: ltr; 12 direction: ltr;
13 text-align: left; 13 text-align: left;
14 white-space: pre; 14 white-space: pre;
15 word-spacing: normal; 15 word-spacing: normal;
16 word-break: normal; 16 word-break: normal;
17 word-wrap: normal;
17 line-height: 1.5; 18 line-height: 1.5;
18 19
19 -moz-tab-size: 4; 20 -moz-tab-size: 4;
20 -o-tab-size: 4; 21 -o-tab-size: 4;
21 tab-size: 4; 22 tab-size: 4;
22 23
23 -webkit-hyphens: none; 24 -webkit-hyphens: none;
24 -moz-hyphens: none; 25 -moz-hyphens: none;
25 -ms-hyphens: none; 26 -ms-hyphens: none;
26 hyphens: none; 27 hyphens: none;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 .token.bold { 111 .token.bold {
111 font-weight: bold; 112 font-weight: bold;
112 } 113 }
113 .token.italic { 114 .token.italic {
114 font-style: italic; 115 font-style: italic;
115 } 116 }
116 117
117 .token.entity { 118 .token.entity {
118 cursor: help; 119 cursor: help;
119 } 120 }
OLDNEW
« no previous file with comments | « lib/src/prism/themes/prism-funky.css ('k') | lib/src/prism/themes/prism-tomorrow.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698